summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* [documentation] fix #4630, document unsupported functions for JSnarimiran2019-06-241-0/+8
|
* [refactoring] remove zeroExtend and friends from the compiler builtins. (#11531)Arne Döring2019-06-2410-116/+76
| | | | | * remove zeroExtend and friends from the compiler builtins. * fix jssys
* Spelling fixes in nimc.rst (#11569)Simon Krauter2019-06-231-3/+3
|
* [other] Documentation NimScript (#11548)Juan Carlos2019-06-231-8/+172
| | | | | * Documentation of NimScript, update and expand, mention the benefits aside of its limitations, add examples, update the list of usable std lib modules
* [feature] Add dynlib (required on windows/cpp) to nimCoroutines related ↵Giovanni Petrantoni2019-06-231-3/+3
| | | | gc_common procs (#11567)
* [bugfix] fix OrderedTable iterators (#11562)Miran2019-06-221-5/+7
|
* [bugfix] fixes #11524Andreas Rumpf2019-06-223-5/+40
|
* closes #11533Andreas Rumpf2019-06-211-0/+18
|
* [bugfix] fixes #11556Andreas Rumpf2019-06-211-2/+4
|
* [documentation] fix wrong link [ci skip]narimiran2019-06-211-1/+1
|
* [other] Improve the "tabs are not allowed" error message (#11554)Kaushal Modi2019-06-201-1/+1
|
* [bugfix] fix `delete` in strutils and sequtils (#11535)Miran2019-06-202-2/+5
|
* [bugfix] correct 'source' for documentation (#11540)Miran2019-06-201-1/+3
|
* [bugfix] fix OrderedTable default initialization (#11549)Miran2019-06-202-2/+3
|
* [other] new experimental pragma .nodestroy for easier custom destructorsAndreas Rumpf2019-06-202-5/+8
|
* [other] added system.dispose for owned refsAndreas Rumpf2019-06-201-0/+3
|
* [bugfix] system.nim: make pop work with --newruntimeAndreas Rumpf2019-06-201-2/+6
|
* [bugfix] proper destruction for strings/seqs for --newruntimeAndreas Rumpf2019-06-201-5/+6
|
* [bugfix] system.nim: make pop work with --newruntimeAndreas Rumpf2019-06-201-0/+103
|
* [other] newruntime: add a simple closure iterator testAraq2019-06-201-1/+9
|
* [bugfix] newruntime: trivial closure iterator worksAraq2019-06-201-0/+7
|
* [refactoring] closureiters.nim: style changeAraq2019-06-201-132/+130
|
* wipAraq2019-06-201-1/+1
|
* WIP: closures for the newruntime [ci skip]Andreas Rumpf2019-06-201-1/+1
|
* [bugfix] fix #11546, correct link for sequtilsnarimiran2019-06-201-1/+1
|
* [bugfix] fix #11543, add std/sums to theindex.htmlnarimiran2019-06-201-0/+1
|
* newruntime: added yet another testAndreas Rumpf2019-06-201-0/+22
|
* [bugfix] owned closures (#11544)Andreas Rumpf2019-06-2011-30/+102
|
* change newLit on Seq (#11542)Arne Döring2019-06-191-7/+7
|
* [bugfix] fixes #11517Araq2019-06-192-2/+51
|
* libffi: style changesAraq2019-06-191-50/+50
|
* Revert "makes travis OSX green again"narimiran2019-06-191-2/+1
| | | | This reverts commit 79a23fe80564e87ad08e283fcf32a6600b0059b7.
* [other] update homebrew, fix travis fails on OSX (#11541)Miran2019-06-191-0/+1
|
* [other] documentation: deprecation comments are now auto-generatednarimiran2019-06-192-21/+1
|
* [bugfix] gc_common: export foreign thread gc docs (#11536)alaviss2019-06-191-6/+12
|
* [feature] cleanup PR, refs #11424Araq2019-06-191-5/+6
|
* fixes #11436Araq2019-06-192-4/+6
|
* makes travis OSX green againAraq2019-06-191-1/+2
|
* [bugfix] Fix smtp.nim unhandled exception (#11498)Phạm Ngọc Quang Nam2019-06-191-2/+1
|
* literal array indices (#11424)Jasper Jenkins2019-06-185-4/+44
|
* add HCR document to the tools.rst listAraq2019-06-181-0/+4
|
* HCR: better documentationAraq2019-06-183-88/+217
|
* Add `cbrt()` bindings for the JS Target (#11528)Benjamin Summerton2019-06-181-0/+3
| | | | | | `Math.cbrt()` exists: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/cbrt The binding was missing for the JavaScript backend.
* [feature] Add boehm gc finalizer (#11446)yatsen12019-06-171-0/+7
|
* [bugfix] fix #11450, random.initRand crashes in JS backend (#11522)Miran2019-06-171-4/+4
|
* [bugfix] fix #11482, fix nimsuggest range error (#11519)Miran2019-06-171-2/+2
| | | | | | The default starting parameters for `line` and `col` were switched. See line 141: "line starts at 1, column at 0, dirtyfile is optional". Also, in `TLineInfo` object, `line` is uint16, `col` is int16.
* [other] introduce a separate changelog for backports, updatenarimiran2019-06-173-41/+95
| | | | contributing guidelines
* [bugfix] Fixes #11434 , Update Tools Documentation (#11449)Juan Carlos2019-06-171-0/+7
|
* [bugfix] Fixes #11495 , Remove TinyC from help (#11508)Juan Carlos2019-06-171-1/+0
|
* Add starttls for smtp (#11500)Phạm Ngọc Quang Nam2019-06-161-0/+27
| | | | | | * Add starttls for smtp * Update smtp.nim