summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* fixes #4913Andreas Rumpf2016-10-201-1/+1
|
* fixes #3078Andreas Rumpf2016-10-202-12/+21
|
* fixes #4875Andreas Rumpf2016-10-202-18/+31
|
* fixes #3755Andreas Rumpf2016-10-201-1/+1
|
* fixes #4895Andreas Rumpf2016-10-201-1/+1
|
* Merge pull request #4912 from nigredo-tori/fix-table-in-macrosAndreas Rumpf2016-10-201-0/+1
|\ | | | | Fix a table in macros documentation
| * Fix a table in macros documentationDmitry Polienko2016-10-191-0/+1
| | | | | | | | fixes #4911
* | Merge pull request #4904 from FedericoCeratto/spellingsAndreas Rumpf2016-10-207-12/+12
|\ \ | | | | | | Fix few typos
| * | Fix few typosFederico Ceratto2016-10-177-12/+12
| | |
* | | removed async test that never produced reliable resultsAndreas Rumpf2016-10-201-66/+0
| | |
* | | fixes #4856Andreas Rumpf2016-10-203-2/+17
| | |
* | | fixes #4899Andreas Rumpf2016-10-191-1/+1
| | |
* | | fixes #4863Andreas Rumpf2016-10-192-4/+27
| |/ |/|
* | fixes #4608Andreas Rumpf2016-10-181-0/+2
| |
* | Windows console apps do not set the codepage to UTF-8 anymore; use ↵Andreas Rumpf2016-10-181-1/+1
|/ | | | -d:nimSetUtf8CodePage to re-enable this feature
* CI: ZIPs don't have an underscore in the filename.Dominik Picheta2016-10-161-2/+2
|
* Improve niminst zip error message and fix CI build.Dominik Picheta2016-10-162-5/+6
|
* Merge branch 'devel' of github.com:nim-lang/Nim into develDominik Picheta2016-10-162-14/+14
|\
| * Merge pull request #4900 from cheatfate/asyncerronlyDominik Picheta2016-10-162-14/+14
| |\ | | | | | | asyncdispatch: Fix handle of error only events.
| | * Fix handle of error only events.cheatfate2016-10-162-14/+14
| |/
* / Fixes `niminst zip` not creating output dir & cleans related code.Dominik Picheta2016-10-161-18/+19
|/
* fixes a simple .borrow bugAndreas Rumpf2016-10-141-1/+1
|
* Merge pull request #4896 from hcorion/add-mingwAndreas Rumpf2016-10-141-0/+3
|\ | | | | Add Mingw build support for build.sh
| * Add Mingw build support for build.shZion Nimchuk2016-10-131-0/+3
|/
* Merge pull request #4015 from arnetheduck/initallocator-fixAndreas Rumpf2016-10-132-3/+10
|\ | | | | fix initAllocator not being called when defined(nogc) and not defined…
| * run gctest for gc:noneJacek Sieka2016-10-121-0/+7
| |
| * Merge remote-tracking branch 'origin/devel' into initallocator-fixJacek Sieka2016-10-12255-4053/+7549
| |\
| * | one more fix conditionJacek Sieka2016-09-031-3/+3
| | |
| * | simplify initallocator conditionsJacek Sieka2016-08-251-2/+2
| | |
| * | Merge remote-tracking branch 'origin/devel' into initallocator-fixJacek Sieka2016-08-25434-6324/+22373
| |\ \
| * | | no allocator init for nimscriptJacek Sieka2016-08-251-0/+1
| | | |
| * | | fix initAllocator not being called when defined(nogc) and not defined(useMalloc)Jacek Sieka2016-03-301-2/+6
| | | | | | | | | | | | | | | | | | | | else bottom is not properly initialized - running with sysAssert catches this issue nicely
* | | | Merge pull request #4894 from hakanderyal/gc-stack-fixAndreas Rumpf2016-10-131-0/+7
|\ \ \ \ | | | | | | | | | | Gc stack fix
| * | | | add exported memory size getter functions for MemRegion objectsHakan Deryal2016-10-131-0/+6
| | | | |
| * | | | fixes memory region not updating when passed to withRegion template.Hakan Deryal2016-10-131-0/+1
|/ / / /
* | | | Merge pull request #4890 from jdbernard/fix-times-initintervalDominik Picheta2016-10-132-9/+16
|\ \ \ \ | | | | | | | | | | Bugfix for times.initInterval (issue #4889)
| * | | | Bugfix for times.initInterval (issue #4889)Jonathan Bernard2016-10-122-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-2Dominik Picheta2016-10-121-0/+14
|\ \ \ \ | |_|_|/ |/| | | Add example for posting json content
| * | | Add example for posting json contentAlpha Shuro2016-10-121-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 commandAndreas Rumpf2016-10-113-155/+164
| | |
* | | CI: Store build/*.zip artifacts.Dominik Picheta2016-10-101-0/+1
| | |
* | | Merge pull request #4828 from jfhg/unify_waitpid_handlingAndreas Rumpf2016-10-093-32/+57
|\ \ \ | | | | | | | | Unify waitpid handling
| * | | rename tfalse.nim to tafalse.nimJohannes Hofmann2016-09-303-7/+8
| | | |
| * | | add testcase for exit code handlingJohannes Hofmann2016-09-302-0/+20
| | | |
| * | | convert exitStatus to exit codeJohannes Hofmann2016-09-301-3/+3
| | | |
| * | | Merge branch 'devel' into unify_waitpid_handlingJohannes Hofmann2016-09-3042-834/+989
| |\ \ \
| * | | | another attempt at properly declaring the status variableJohannes Hofmann2016-09-251-1/+3
| | | | |
| * | | | make status variable localJohannes Hofmann2016-09-251-2/+1
| | | | |
| * | | | Merge branch 'devel' into unify_waitpid_handlingJohannes Hofmann2016-09-2414-54/+425
| |\ \ \ \
| * | | | | rename exitCode to exitStatusJohannes Hofmann2016-09-241-18/+18
| | | | | |