summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* 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
| | | |
| * | | generally update exitCode only after successful completion of waitpid()Johannes Hofmann2016-09-221-23/+26
| | | |
* | | | zip files for WindowsAraq2016-10-094-40/+31
| | | |
* | | | better error checking for install_tools.nims scriptAndreas Rumpf2016-10-091-8/+11
| | | |
* | | | added registry.nim to the stdlibAraq2016-10-091-0/+11
| | | |
* | | | koch supports the finish command for smooth installations on WindowsAraq2016-10-093-74/+224
| | | |
* | | | document 'nim e' modeAraq2016-10-081-0/+1
| | | |
* | | | remove outdated warning about the Nimble installation processAraq2016-10-081-6/+0
| | | |
* | | | develop version is 0.15.1Araq2016-10-083-3/+3
| | | |
* | | | install_tools is not for building by sourceAraq2016-10-081-7/+0
| | | |
* | | | fixes #4845Araq2016-10-081-1/+3
| | | |
* | | | failed attempt to fix a 'void' inference bugAraq2016-10-081-1/+6
| | | |
* | | | fixes #4844Araq2016-10-081-1/+5
| | | |
* | | | Updated sponsors CSV files.Dominik Picheta2016-10-062-37/+41
| | | |
* | | | Merge pull request #4848 from flyx/fix-debugdlopenAndreas Rumpf2016-10-061-1/+4
|\ \ \ \ | | | | | | | | | | Fixed compilation error with -d:nimDebugDlOpen
| * | | | Display hint for -d:nimDebugDlOpen on load failureFelix Krause2016-10-031-0/+2
| | | | |
| * | | | Fixed compilation error with -d:nimDebugDlOpenFelix Krause2016-10-031-1/+2
| | | | |
* | | | | Merge pull request #4857 from yglukhov/gcv2-threadsAndreas Rumpf2016-10-062-4/+10
|\ \ \ \ \ | | | | | | | | | | | | Make gc v2 compile with --threads:on
| * | | | | Make gc v2 compile with --threads:onYuriy Glukhov2016-10-052-4/+10
| | | | | |
* | | | | | Merge pull request #4853 from GaveUp/develAndreas Rumpf2016-10-061-2/+0
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Revert change to osalloc.nim from commit 8d7a45f.
| * | | | | Revert change to osalloc.nim from commit 8d7a45f.GaveUp2016-10-041-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change caused MAP_ANONYMOUS to have an incorrect value when compiling for mipsel. Fixes #4852.
* | | | | | Merge pull request #4855 from ftsf/fix-foreignthreadsAndreas Rumpf2016-10-051-0/+1
|\ \ \ \ \ \ | |/ / / / / |/| | | | | call initAllocator in foreign thread
| * | | | | call initAllocator in foreign threadJez Kabanov2016-10-051-0/+1
|/ / / / /
* | | | | Merge pull request #4850 from jangko/win_nimmain_exportAndreas Rumpf2016-10-031-4/+7
|\ \ \ \ \ | |/ / / / |/| | | | fixes #4840
| * | | | fixes #4840andri lim2016-10-031-4/+7
|/ / / /
* | | | Improve downloads page.Dominik Picheta2016-10-011-7/+7
| | | |
* | | | disable warnUninit for --verbosity:2Andreas Rumpf2016-10-011-1/+1
| | | |
* | | | downloads have SHA checksumsAraq2016-10-011-3/+3
| | | |
* | | | website updatedAraq2016-10-013-2/+5
| | | |
* | | | NSIS won't force admin privileges.Dominik Picheta2016-10-011-2/+2
| | | |
* | | | Fixes pesky hint in asyncfutures.Dominik Picheta2016-10-011-0/+2
| | | |
* | | | version changed to 0.15.0Araq2016-10-016-16/+17
| | | |
* | | | minor CSS improvementAraq2016-10-011-1/+1
| | | |
* | | | Small improvements to download page.Dominik Picheta2016-09-301-4/+3
| | | |
* | | | Finishes news article for 0.15.0 release.Dominik Picheta2016-09-303-3/+90
| | | |
* | | | CI: Fixes PATH handling in NSIS installers.Dominik Picheta2016-09-301-12/+199
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Squashed commit of the following: commit 82d16908d6b4dacc585c241005f49aea2eef2c9f Author: Dominik Picheta <dominikpicheta@gmail.com> Date: Fri Sep 30 22:20:47 2016 +0200 CI: ugh, another try. commit 6fe7e2fad11851ad568f9156132bf186593d2c0d Author: Dominik Picheta <dominikpicheta@gmail.com> Date: Fri Sep 30 21:48:22 2016 +0200 CI: Fix env PATH setting issues in NSIS installer.
* | | | made test green for WindowsAraq2016-09-301-2/+4
| | | |