Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix handle of error only events. | cheatfate | 2016-10-16 | 2 | -14/+14 |
| | |||||
* | Merge pull request #4015 from arnetheduck/initallocator-fix | Andreas Rumpf | 2016-10-13 | 1 | -3/+3 |
|\ | | | | | fix initAllocator not being called when defined(nogc) and not defined… | ||||
| * | Merge remote-tracking branch 'origin/devel' into initallocator-fix | Jacek Sieka | 2016-10-12 | 69 | -2132/+2898 |
| |\ | |||||
| * | | 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 | 109 | -2177/+11466 |
| |\ \ | |||||
| * | | | 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 | ||||
* | | | | 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 |
| | | | | |||||
* | | | | Bugfix for times.initInterval (issue #4889) | Jonathan Bernard | 2016-10-12 | 1 | -8/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `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) ``` | ||||
* | | | | 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 | ||||
* | | | Merge pull request #4828 from jfhg/unify_waitpid_handling | Andreas Rumpf | 2016-10-09 | 1 | -32/+36 |
|\ \ \ | | | | | | | | | Unify waitpid handling | ||||
| * | | | 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 | 18 | -691/+664 |
| |\ \ \ | |||||
| * | | | | 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 | 11 | -50/+136 |
| |\ \ \ \ | |||||
| * | | | | | 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 |
| | | | | | | |||||
* | | | | | | 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 | 1 | -0/+66 |
| | | | | | | |||||
* | | | | | | develop version is 0.15.1 | Araq | 2016-10-08 | 2 | -2/+2 |
| | | | | | | |||||
* | | | | | | fixes #4844 | Araq | 2016-10-08 | 1 | -1/+5 |
| | | | | | | |||||
* | | | | | | 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 |
| | | | | | | | |||||
| * | | | | | | Fixed compilation error with -d:nimDebugDlOpen | Felix Krause | 2016-10-03 | 1 | -1/+2 |
| | | | | | | | |||||
* | | | | | | | Merge pull request #4857 from yglukhov/gcv2-threads | Andreas Rumpf | 2016-10-06 | 2 | -4/+10 |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | Make gc v2 compile with --threads:on | ||||
| * | | | | | | | Make gc v2 compile with --threads:on | Yuriy Glukhov | 2016-10-05 | 2 | -4/+10 |
| | | | | | | | | |||||
* | | | | | | | | Merge pull request #4853 from GaveUp/devel | Andreas Rumpf | 2016-10-06 | 1 | -2/+0 |
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | | Revert change to osalloc.nim from commit 8d7a45f. | ||||
| * | | | | | | | Revert change to osalloc.nim from commit 8d7a45f. | GaveUp | 2016-10-04 | 1 | -2/+0 |
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change caused MAP_ANONYMOUS to have an incorrect value when compiling for mipsel. Fixes #4852. | ||||
* / / / / / / | call initAllocator in foreign thread | Jez Kabanov | 2016-10-05 | 1 | -0/+1 |
|/ / / / / / | |||||
* | | | | | | Fixes pesky hint in asyncfutures. | Dominik Picheta | 2016-10-01 | 1 | -0/+2 |
| | | | | | | |||||
* | | | | | | version changed to 0.15.0 | Araq | 2016-10-01 | 2 | -3/+3 |
| | | | | | | |||||
* | | | | | | made test green for 32bit system | Araq | 2016-09-30 | 1 | -12/+14 |
| | | | | | | |||||
* | | | | | | made test green for 32bit system | Araq | 2016-09-30 | 1 | -1/+1 |
| |_|/ / / |/| | | | | |||||
* | | | | | Add few JSON examples | Federico Ceratto | 2016-09-29 | 1 | -0/+2 |
| | | | | | |||||
* | | | | | Merge pull request #4833 from FedericoCeratto/patch-15 | Andreas Rumpf | 2016-09-29 | 1 | -0/+3 |
|\ \ \ \ \ | | | | | | | | | | | | | Add description to arch.nim | ||||
| * | | | | | Add description to arch.nim | Federico Ceratto | 2016-09-28 | 1 | -0/+3 |
| | | | | | | |||||
* | | | | | | Fix upcoming to pass tpolltimeouts.nim test | cheatfate | 2016-09-29 | 1 | -31/+32 |
| | | | | | | |||||
* | | | | | | EIO is called IOError now | Araq | 2016-09-28 | 1 | -1/+1 |
|/ / / / / | |||||
* | | | | | made async compile again | Andreas Rumpf | 2016-09-26 | 3 | -2/+2 |
| | | | | | |||||
* | | | | | revert brainless changes | Andreas Rumpf | 2016-09-26 | 1 | -2/+2 |
| | | | | | |||||
* | | | | | make travis green | Andreas Rumpf | 2016-09-26 | 1 | -2/+2 |
| | | | | | |||||
* | | | | | make linenoise compile in some /tmp directory | Andreas Rumpf | 2016-09-26 | 2 | -2/+5 |
| | | | | | |||||
* | | | | | docgen fixes for basic3d | Andreas Rumpf | 2016-09-26 | 1 | -4/+2 |
| | | | | | |||||
* | | | | | docgen fixes for selectors.nim | Andreas Rumpf | 2016-09-26 | 1 | -1/+2 |
| | | | | | |||||
* | | | | | docgen fixes for basic2d | Andreas Rumpf | 2016-09-26 | 1 | -2/+2 |
| | | | | | |||||
* | | | | | Fixes #4587. | Dominik Picheta | 2016-09-25 | 1 | -2/+19 |
| | | | | | |||||
* | | | | | Moves async futures into asyncfutures module. | Dominik Picheta | 2016-09-25 | 3 | -573/+295 |
| | | | | |