d02903b7d0
add // comments to code highlighting
2020-06-17 09:20:15 -07:00
88043a7cb9
Change wren to wren_cli ( #765 )
2020-06-17 07:57:03 -07:00
7983082b71
Support positive sign in scientific notation ( #706 )
...
* Support positive sign in scientific notation
* Add exponent with positive sign to docs
2020-06-13 21:37:30 -07:00
9fb6d02b5c
main branch reference fixes
2020-06-12 10:11:49 -07:00
e45a9d0382
removed localhost ( #758 )
2020-06-09 17:03:36 -07:00
b694b2231c
docs; fix blog template missing links and wrong paths
2020-06-06 10:32:44 -07:00
8341f61cdb
docs; nitpicks
2020-06-05 20:11:32 -07:00
d69d7e482d
Added description of to the Num class docs ( #726 )
2020-06-05 15:08:52 -07:00
7b56dce4f0
Fix example C code ( #745 )
2020-06-05 15:08:25 -07:00
d585a080e8
Merge pull request #751 from wren-lang/0.3.0-refactor
...
0.3.0 refactor
2020-06-05 14:57:20 -07:00
51ef6ff5fa
docs; fix missing blog link and arrangement in small mode
...
thanks Brian Slesinsky
2019-10-02 23:41:39 -07:00
faff0d6ca4
blog; formatting
2019-09-30 23:03:45 -07:00
8ce631e80e
blog; add 0.2.0/0.3.0 post
2019-09-30 22:48:04 -07:00
265bcc6780
Cleaned up some documentation typos. -mw
2019-09-30 09:02:55 -05:00
7eac8e6a37
docs; encapsulation legibility fixes
2019-09-18 01:43:34 -07:00
fa2a3d9576
Clarify modulus documentation for sign
...
closes #695
2019-09-17 22:27:47 -07:00
0e67667010
Update Encapsulation documentation to be clearer
...
fixes #691
2019-09-17 22:18:55 -07:00
451098db05
docs: Fixed broken link to overview about maps
...
Closes #672
2019-04-09 17:44:15 +02:00
fe3aa60601
Update note about path to visual studio solution.
2019-03-24 21:36:21 +01:00
a437e804ba
Added String.fromByte with docs and unit test
2019-02-27 08:10:54 -05:00
9347c5c61a
Update Call to WrenInterpret in Docs
...
Fixes #599 by updating the arguments to WrenInterpret to match the new
API.
2019-02-12 06:54:58 +00:00
6ac829947a
blog; fix twitter link to munificentbob (thanks @noelfb)
2019-02-07 20:40:44 -08:00
25a1431fa7
docs; add some links to blog post
2019-02-07 13:07:21 -08:00
27a08151e7
blog; clarify weird grammar (sponge)
2019-02-05 19:39:38 -08:00
57a1d809d8
docs; replace wren repo URL to point to organization
2019-02-05 18:41:31 -08:00
7cc7c715c9
docs; list; add + operator documentation
2019-02-05 18:18:38 -08:00
21024bfa13
docs; formatting and tidying
...
- quick clean up pass on layout and colors for clarity/legibility
- added logo to the sidebar
- fix various css things like a full height page when content is shorter, so the footer doesn't creep away from the bottom
- start using em instead of px for consistency across devices
2019-02-05 18:18:24 -08:00
2d449cd4c9
docs; add blog section with simple rss
...
- rss is hand written right now
- see the hello wren blog post for reasoning
2019-02-05 18:15:29 -08:00
d01905ef80
Fix broken link for error handling
2018-12-19 12:39:52 -08:00
f23c82071a
Don't allow calling the root fiber.
...
The VM used to not detect this case. It meant you could get into a
situation where another fiber's caller had completed. Then, when it
tried to resume that fiber, the VM would crash because there was nothing
to resume to.
This is part of thinking through all the cases around re-entrancy. Added
some notes for that too.
2018-07-21 10:02:29 -07:00
fe7e56d508
Merge branch 'rfc-0001-smarter-imports'
2018-07-16 07:03:00 -07:00
b2b2b8a4e7
Add note.
2018-07-16 07:02:53 -07:00
7a42a20b98
Merge branch 'master' into smarter-imports
...
# Conflicts:
# src/module/io.c
# src/vm/wren_vm.c
2018-07-15 21:01:14 -07:00
c367fc3bfc
Get logical imports in "wren_modules" working.
...
There's a lot of changes here and surely some rough edges to iron out.
Also, I need to update the docs. But I want to get closer to landing
this so I can build on it.
2018-07-15 20:09:41 -07:00
09f4beff4a
Add trim methods on String:
...
- trim()
- trim(chars)
- trimEnd()
- trimEnd(chars)
- trimStart()
- trimStart(chars)
2018-07-15 10:48:56 -07:00
ef5f38b48f
Turn on auto-deploying docs.
...
Looks like it's working now. <crosses fingers>
2018-07-14 21:35:33 -07:00
52f08aec05
Install the custom pygments lexer using python3.
2018-07-14 11:44:53 -07:00
4c9209c1b2
Update file.markdown
...
minor fix to close() language
2018-06-03 23:06:40 -05:00
64f8bf7ae3
Merge pull request #524 from bjorn/master
...
Small documentation fixes
2018-04-25 21:09:48 -07:00
372cd3e197
Small documentation fixes
2018-04-06 10:34:12 +02:00
4442b37411
fixed typo, function declares data, body uses file
2018-04-05 23:02:30 +02:00
7487eeab49
Merge pull request #515 from kjk/patch-1
...
fix bindForeignMethod() example
2018-03-26 07:52:26 -07:00
e1f105fd8e
Merge pull request #484 from feiss/patch-1
...
parameter missing in errorFn
2018-03-22 10:31:01 -07:00
bcc31e63a2
add() method is bound as static but bindForeignMethod responds to non-static
2018-03-20 17:13:28 -07:00
f866ee7003
Vendor GYP and libuv into the repo.
...
Instead of dynamically downloading these as needed during a build, this
checks in those two dependencies directly into the Wren repo. That's a
little lame because users of Wren who aren't building the CLI don't
actually need them, but they aren't too big, so it's not a huge deal.
It makes builds (particularly on Travis) more reliable, because they
don't have to pull down additional content over the network.
2018-03-14 07:27:29 -07:00
d1a772e820
parameter missing in errorFn
2017-11-14 16:56:16 +01:00
7b326d804b
Merge pull request #475 from KyleCharters/master
...
Correct method examples in Range docs
2017-10-31 16:24:58 -07:00
b45cab28d1
Fix embedding path in getting started.
2017-10-31 21:47:51 +01:00
9f79dfcdac
Proposal for smarter imports.
2017-10-31 07:49:40 -07:00
1be76bb478
Correct method examples in Range docs
2017-10-23 13:48:43 -04:00