Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | CI: ZIPs don't have an underscore in the filename. | Dominik Picheta | 2016-10-16 | 1 | -2/+2 |
| | |||||
* | Improve niminst zip error message and fix CI build. | Dominik Picheta | 2016-10-16 | 2 | -5/+6 |
| | |||||
* | Merge branch 'devel' of github.com:nim-lang/Nim into devel | Dominik Picheta | 2016-10-16 | 2 | -14/+14 |
|\ | |||||
| * | Merge pull request #4900 from cheatfate/asyncerronly | Dominik Picheta | 2016-10-16 | 2 | -14/+14 |
| |\ | | | | | | | asyncdispatch: Fix handle of error only events. | ||||
| | * | Fix handle of error only events. | cheatfate | 2016-10-16 | 2 | -14/+14 |
| |/ | |||||
* / | Fixes `niminst zip` not creating output dir & cleans related code. | Dominik Picheta | 2016-10-16 | 1 | -18/+19 |
|/ | |||||
* | fixes a simple .borrow bug | Andreas Rumpf | 2016-10-14 | 1 | -1/+1 |
| | |||||
* | Merge pull request #4896 from hcorion/add-mingw | Andreas Rumpf | 2016-10-14 | 1 | -0/+3 |
|\ | | | | | Add Mingw build support for build.sh | ||||
| * | Add Mingw build support for build.sh | Zion Nimchuk | 2016-10-13 | 1 | -0/+3 |
|/ | |||||
* | Merge pull request #4015 from arnetheduck/initallocator-fix | Andreas Rumpf | 2016-10-13 | 2 | -3/+10 |
|\ | | | | | fix initAllocator not being called when defined(nogc) and not defined… | ||||
| * | run gctest for gc:none | Jacek Sieka | 2016-10-12 | 1 | -0/+7 |
| | | |||||
| * | Merge remote-tracking branch 'origin/devel' into initallocator-fix | Jacek Sieka | 2016-10-12 | 255 | -4053/+7549 |
| |\ | |||||
| * | | one more fix condition | Jacek Sieka | 2016-09-03 | 1 | -3/+3 |
| | | | |||||
| * | | simplify initallocator conditions | Jacek Sieka | 2016-08-25 | 1 | -2/+2 |
| | | | |||||
| * | | Merge remote-tracking branch 'origin/devel' into initallocator-fix | Jacek Sieka | 2016-08-25 | 434 | -6324/+22373 |
| |\ \ | |||||
| * | | | no allocator init for nimscript | Jacek Sieka | 2016-08-25 | 1 | -0/+1 |
| | | | | |||||
| * | | | fix initAllocator not being called when defined(nogc) and not defined(useMalloc) | Jacek Sieka | 2016-03-30 | 1 | -2/+6 |
| | | | | | | | | | | | | | | | | | | | | else bottom is not properly initialized - running with sysAssert catches this issue nicely | ||||
* | | | | Merge pull request #4894 from hakanderyal/gc-stack-fix | Andreas Rumpf | 2016-10-13 | 1 | -0/+7 |
|\ \ \ \ | | | | | | | | | | | Gc stack fix | ||||
| * | | | | add exported memory size getter functions for MemRegion objects | Hakan Deryal | 2016-10-13 | 1 | -0/+6 |
| | | | | | |||||
| * | | | | fixes memory region not updating when passed to withRegion template. | Hakan Deryal | 2016-10-13 | 1 | -0/+1 |
|/ / / / | |||||
* | | | | Merge pull request #4890 from jdbernard/fix-times-initinterval | Dominik Picheta | 2016-10-13 | 2 | -9/+16 |
|\ \ \ \ | | | | | | | | | | | Bugfix for times.initInterval (issue #4889) | ||||
| * | | | | Bugfix for times.initInterval (issue #4889) | Jonathan Bernard | 2016-10-12 | 2 | -9/+16 |
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `initInterval` had logic to calculate and carry overflowed fields (65 seconds turns into 5 seconds and carries 1 minute). However, we were not including that carried value when we recalculate the carry over for the next period of time.So if you had, for example, 3600 seconds, we carried 60 minutes into the minutes calculation, but when we calculated how much we should carry into the hours value we only considered what the user originally supplied for the minutes field, and forgot to include those 60 carried minute. So, for example, with the previous implementation this was true: `seconds(60 * 60 * 24) == seconds(0)` Or, as failing tests: ```nimrod import times assert seconds(60 * 60 * 24) != seconds(0) assert seconds(60 * 60 * 24) == days(1) ``` | ||||
* | | | | Merge pull request #4887 from alphashuro/patch-2 | Dominik Picheta | 2016-10-12 | 1 | -0/+14 |
|\ \ \ \ | |_|_|/ |/| | | | Add example for posting json content | ||||
| * | | | Add example for posting json content | Alpha Shuro | 2016-10-12 | 1 | -0/+14 |
|/ / / | | | | | | | i struggled to figure out how to post json content with nim's http client. this is a fundamental capability in many web apps, we don't always need to send data as multipart form data (e.g. when communicating via json apis) so frankly i'm surprised it isn't part of the "post" and "postContent" procs | ||||
* | | | koch: finish is now its own command | Andreas Rumpf | 2016-10-11 | 3 | -155/+164 |
| | | | |||||
* | | | CI: Store build/*.zip artifacts. | Dominik Picheta | 2016-10-10 | 1 | -0/+1 |
| | | | |||||
* | | | Merge pull request #4828 from jfhg/unify_waitpid_handling | Andreas Rumpf | 2016-10-09 | 3 | -32/+57 |
|\ \ \ | | | | | | | | | Unify waitpid handling | ||||
| * | | | rename tfalse.nim to tafalse.nim | Johannes Hofmann | 2016-09-30 | 3 | -7/+8 |
| | | | | |||||
| * | | | add testcase for exit code handling | Johannes Hofmann | 2016-09-30 | 2 | -0/+20 |
| | | | | |||||
| * | | | convert exitStatus to exit code | Johannes Hofmann | 2016-09-30 | 1 | -3/+3 |
| | | | | |||||
| * | | | Merge branch 'devel' into unify_waitpid_handling | Johannes Hofmann | 2016-09-30 | 42 | -834/+989 |
| |\ \ \ | |||||
| * | | | | another attempt at properly declaring the status variable | Johannes Hofmann | 2016-09-25 | 1 | -1/+3 |
| | | | | | |||||
| * | | | | make status variable local | Johannes Hofmann | 2016-09-25 | 1 | -2/+1 |
| | | | | | |||||
| * | | | | Merge branch 'devel' into unify_waitpid_handling | Johannes Hofmann | 2016-09-24 | 14 | -54/+425 |
| |\ \ \ \ | |||||
| * | | | | | rename exitCode to exitStatus | Johannes Hofmann | 2016-09-24 | 1 | -18/+18 |
| | | | | | | |||||
| * | | | | | generally update exitCode only after successful completion of waitpid() | Johannes Hofmann | 2016-09-22 | 1 | -23/+26 |
| | | | | | | |||||
* | | | | | | zip files for Windows | Araq | 2016-10-09 | 4 | -40/+31 |
| | | | | | | |||||
* | | | | | | better error checking for install_tools.nims script | Andreas Rumpf | 2016-10-09 | 1 | -8/+11 |
| | | | | | | |||||
* | | | | | | added registry.nim to the stdlib | Araq | 2016-10-09 | 1 | -0/+11 |
| | | | | | | |||||
* | | | | | | koch supports the finish command for smooth installations on Windows | Araq | 2016-10-09 | 3 | -74/+224 |
| | | | | | | |||||
* | | | | | | document 'nim e' mode | Araq | 2016-10-08 | 1 | -0/+1 |
| | | | | | | |||||
* | | | | | | remove outdated warning about the Nimble installation process | Araq | 2016-10-08 | 1 | -6/+0 |
| | | | | | | |||||
* | | | | | | develop version is 0.15.1 | Araq | 2016-10-08 | 3 | -3/+3 |
| | | | | | | |||||
* | | | | | | install_tools is not for building by source | Araq | 2016-10-08 | 1 | -7/+0 |
| | | | | | | |||||
* | | | | | | fixes #4845 | Araq | 2016-10-08 | 1 | -1/+3 |
| | | | | | | |||||
* | | | | | | failed attempt to fix a 'void' inference bug | Araq | 2016-10-08 | 1 | -1/+6 |
| | | | | | | |||||
* | | | | | | fixes #4844 | Araq | 2016-10-08 | 1 | -1/+5 |
| | | | | | | |||||
* | | | | | | Updated sponsors CSV files. | Dominik Picheta | 2016-10-06 | 2 | -37/+41 |
| | | | | | | |||||
* | | | | | | Merge pull request #4848 from flyx/fix-debugdlopen | Andreas Rumpf | 2016-10-06 | 1 | -1/+4 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | Fixed compilation error with -d:nimDebugDlOpen | ||||
| * | | | | | | Display hint for -d:nimDebugDlOpen on load failure | Felix Krause | 2016-10-03 | 1 | -0/+2 |
| | | | | | | |