summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* update the Nimble version we ship with Nim (#12236)Andreas Rumpf2019-09-231-1/+1
|
* improvements for httpcore (#12228)Andreas Rumpf2019-09-234-44/+46
| | | | | * improvements for httpcore * further improvements, now stable API but needs extensions later on
* fixes #9026 adds a readLineImpl to streams so that FileStreams can be fast ↵Ray Imber2019-09-231-13/+24
| | | | (#12234)
* Fix issue with long wait for passed timer [bugfix] (#12221)PMunch2019-09-222-3/+61
| | | | | | | | | | | | | | | | | | | | | * Fix issue with long wait for passed timer [bugfix] This fixes a small issue where a timer that had been completed while code executed would still wait for more events before being considered completed. This would in some scenarios incur a 500ms delay to the completion of a timer. * Refactor logic into * Add test case based on original issue * Use longer timeouts to be more lenient in checking * Revert to short timeouts, but widen the accepted range * Widen accepted range further, it is meant to check for a 500ms delay after all * Increase poll timeout to make it easier to detect mistakes
* living in unix-land, eye to eye, where nothing ever works; fixes #12226Andreas Rumpf2019-09-211-2/+6
|
* documentation updatesAndreas Rumpf2019-09-212-76/+30
|
* cleanup importjs implementationAndreas Rumpf2019-09-212-13/+9
|
* fixes #12224 (#12225)cooldome2019-09-213-5/+31
| | | | | | * fixes #12224 * improve test
* makes tests green againAndreas Rumpf2019-09-211-9/+9
|
* last stdlib cleanupsAraq2019-09-2131-42/+136
|
* htmlgen update; don't use deprecated callsite featureAraq2019-09-211-130/+12
|
* asyndispatch: removed deprecated setEvent procAraq2019-09-213-12/+8
|
* json: removed deprecatedGet pragmaAraq2019-09-211-10/+1
|
* updated lib.rst and added some useful missing modulesAraq2019-09-211-2/+14
|
* removed the deprecatedGet pragmaAraq2019-09-211-3/+2
|
* updated comment in ast.nimAraq2019-09-211-1/+0
|
* smtp: renamed starttls to startTlsAraq2019-09-211-4/+4
|
* lib\pure\htmlgen.nimAraq2019-09-215-116/+0
| | | | avoid callsite for htmlgen
* mark events.nim as unstableAraq2019-09-211-0/+2
|
* lib.rst cleanups and reorderingsAraq2019-09-211-203/+212
|
* importjs symbol (#12218)Arne Döring2019-09-207-24/+388
| | | | | * importjs symbol * importjs warning message, minor warning fixes
* consistent floating point output (#12219)Andreas Rumpf2019-09-204-34/+81
| | | | | * unify float printing * makes tests green
* expose more fields of TNimTypeAraq2019-09-191-4/+4
|
* fixes #10981; fixes #7261 (#12217)Andreas Rumpf2019-09-192-1/+103
|
* Update Android and iOS cross compile docs. (#12215)treeform2019-09-191-10/+51
| | | | | | * Update Cross compilation, add noMain section. * Small world update, note about XCode clean.
* Add --os:ios switch and docs. (#12204)treeform2019-09-183-4/+17
|
* add nodeId proc to macros (#11456)Arne Döring2019-09-186-2/+18
| | | | | | | | * add nodeId proc to macros * add doc comment. * fix typo
* fixes #12186Araq2019-09-182-2/+9
|
* fixes #12209Araq2019-09-181-2/+2
|
* rename cast opcodes, fix for 32bit cast, fix python pretty printer (#12207)Arne Döring2019-09-185-17/+34
|
* Fix typo (#12210) [ci skip]Vitor Oliveira2019-09-181-6/+6
|
* Add -d:androidNDK to fix echo on Android NDK builds. (#12203)treeform2019-09-172-19/+46
| | | | | | | | * Add -d:echoToAndroidLog to fix echo. * Change to androidNDK and add docs. * Some word changes to docs.
* fix #12200, cannot 'inc' CountTable by a negative value (#12208)Miran2019-09-171-2/+5
| | | | | | * fix #12200, cannot 'inc' CountTable by a negative value * use Positive
* fixes the testcaseAraq2019-09-171-2/+1
|
* added a testcase for #12195; testament now supports a 'timeout' spec fieldAraq2019-09-175-1/+52
|
* fixes #12195Araq2019-09-173-25/+32
|
* gc:destructors progressAndreas Rumpf2019-09-166-8/+72
|
* gc_common: typoAndreas Rumpf2019-09-161-1/+1
|
* make --useVersion's documentation reflect realityAndreas Rumpf2019-09-161-1/+1
|
* fixes #12193 (#12199)Andreas Rumpf2019-09-162-2/+19
|
* some gc:destructors progressAndreas Rumpf2019-09-162-15/+1
|
* fixes #12196Araq2019-09-162-6/+13
|
* better implementationAraq2019-09-161-2/+8
|
* fixes a weird quote do regressionAndreas Rumpf2019-09-162-2/+3
|
* make tests green againAndreas Rumpf2019-09-131-1/+1
|
* changed name mangling for generated C filesAraq2019-09-132-3/+3
|
* fixes #12172Araq2019-09-132-3/+3
|
* close #7104 by writing a testnarimiran2019-09-131-2/+21
|
* close #6731 by writing a test casenarimiran2019-09-132-0/+5
|
* count 64 bits at a time instead of 8 (#12159)Andreas Rumpf2019-09-121-3/+9
|\ | | | | | | | | | | | | | | | | | | | | | | * count 64 bits at a time * spacing * only do 64bts on x86 * add amd64 * use while