Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fixes bootstrapping problem | Araq | 2016-10-21 | 1 | -11/+11 |
| | |||||
* | fixes #564 | Andreas Rumpf | 2016-10-21 | 1 | -5/+6 |
| | |||||
* | version bump | Andreas Rumpf | 2016-10-21 | 2 | -2/+2 |
| | |||||
* | Merge pull request #4919 from def-/httpclient-doc | Andreas Rumpf | 2016-10-21 | 1 | -2/+2 |
|\ | | | | | Update httpclient documentation | ||||
| * | Update httpclient documentation | Dennis Felsing | 2016-10-21 | 1 | -2/+2 |
| | | |||||
* | | One more attempt to fix #4867 | cheatfate | 2016-10-21 | 1 | -1/+3 |
|/ | |||||
* | fixes #1518 | Andreas Rumpf | 2016-10-20 | 2 | -15/+20 |
| | |||||
* | fixes #4879 | Andreas Rumpf | 2016-10-20 | 1 | -1/+1 |
| | |||||
* | fixes #3078 | Andreas Rumpf | 2016-10-20 | 1 | -6/+9 |
| | |||||
* | Merge pull request #4904 from FedericoCeratto/spellings | Andreas Rumpf | 2016-10-20 | 5 | -10/+10 |
|\ | | | | | Fix few typos | ||||
| * | Fix few typos | Federico Ceratto | 2016-10-17 | 5 | -10/+10 |
| | | |||||
* | | fixes #4899 | Andreas Rumpf | 2016-10-19 | 1 | -1/+1 |
| | | |||||
* | | Windows console apps do not set the codepage to UTF-8 anymore; use ↵ | Andreas Rumpf | 2016-10-18 | 1 | -1/+1 |
|/ | | | | -d:nimSetUtf8CodePage to re-enable this feature | ||||
* | 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 |
| | | | | |