Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix #13531 by adding a test (#13581) | Miran | 2020-03-04 | 1 | -0/+31 |
| | |||||
* | fix #13409: Document as infix operator (#13570) | hlaaftana | 2020-03-04 | 1 | -16/+16 |
| | |||||
* | [ci skip] important_packages: change the order in commented out packages too | narimiran | 2020-03-04 | 1 | -6/+6 |
| | |||||
* | ARC hotfix; proper destruction of seqs and strings after a move | Araq | 2020-03-03 | 1 | -2/+2 |
| | |||||
* | Fix docgen snippet numbering (#13507) | genotrance | 2020-03-03 | 2 | -2/+2 |
| | |||||
* | important_packages: change the order of arguments in the template (#13577) | Miran | 2020-03-03 | 2 | -55/+52 |
| | | | | Leads to a cleaner and less confusing code - an empty command doesn't mean 'nimble test' anymore. | ||||
* | Remove dead magics (#13551) | Arne Döring | 2020-03-03 | 14 | -140/+44 |
| | |||||
* | workaround refs #13563 freebsd CI (#13564) | Timothee Cour | 2020-03-02 | 1 | -1/+6 |
| | |||||
* | make genericParams support static[T] generic params (#13433) | Timothee Cour | 2020-03-02 | 2 | -7/+72 |
| | | | | | | * make genericParams support static[T] generic params * WrapStatic => StaticParam | ||||
* | fix #13528 nimgrep --word now works better with operators (#13537) | Timothee Cour | 2020-03-02 | 1 | -1/+2 |
| | |||||
* | Add signatures object to jsondoc for routine types (#13530) | PMunch | 2020-03-02 | 1 | -0/+29 |
| | | | | | | jsondoc is meant to be read by computers, but yet the signatures of procedures where simply a string of the whole thing. This adds a signature object that unpacks this information into an object so it's easier to analyse the documented signatures. | ||||
* | fix broken nim CI, disable blscurve (#13555) | Timothee Cour | 2020-03-02 | 1 | -1/+1 |
| | |||||
* | fixes #13543 and added times.isLeapDay (#13547) | Timothee Cour | 2020-03-01 | 3 | -3/+21 |
| | |||||
* | Document import/include outside of top level semantics (#13548) | hlaaftana | 2020-03-01 | 1 | -0/+14 |
| | |||||
* | make it possible to pass linker options for vcc (#13535) [backport] | cooldome | 2020-02-29 | 1 | -1/+1 |
| | |||||
* | EndsInNoReturn in expressions extension, fixes #13490 (#13520) | cooldome | 2020-02-28 | 5 | -8/+42 |
| | | | | * fix #13490 | ||||
* | fixes #12627 (#13521) | cooldome | 2020-02-28 | 1 | -1/+1 |
| | | | | * fixes #12627 | ||||
* | properly handle note override logic/verbosity/config/cmdline using ↵ | Timothee Cour | 2020-02-27 | 5 | -32/+31 |
| | | | | modifiedyNotes, cmdlineNotes | ||||
* | remove isCmdLine; use passCmd1 | Timothee Cour | 2020-02-27 | 4 | -7/+3 |
| | |||||
* | correctly honor cmdline --hint:conf:on/off ; correctly show Conf hints in order | Timothee Cour | 2020-02-27 | 6 | -3/+18 |
| | |||||
* | Fix #9405 - cfg and nims run in sync | Ganesh Viswanathan | 2020-02-27 | 2 | -28/+31 |
| | |||||
* | save another 33s of CI for tests/gc/gcleak.nim | Timothee Cour | 2020-02-27 | 1 | -1/+8 |
| | |||||
* | CI tests run faster: save 120s in azure machines, 335s on local OSX | Timothee Cour | 2020-02-27 | 1 | -1/+13 |
| | |||||
* | revert changes to tests/gc/gcleak2.nim | Timothee Cour | 2020-02-27 | 1 | -72/+5 |
| | |||||
* | make CI tests faster + more precise | Timothee Cour | 2020-02-27 | 1 | -5/+72 |
| | |||||
* | Update pegs.nim to work at compiletime. No range errors. (#13459) | solo989 | 2020-02-27 | 1 | -164/+186 |
| | |||||
* | cleanup Ordinal (#13501) | Timothee Cour | 2020-02-27 | 7 | -10/+36 |
| | |||||
* | tables/sharedtables/intsets/etc: fix #13496, #13504, #13505; add lots of ↵ | Timothee Cour | 2020-02-26 | 9 | -41/+296 |
| | | | | | | | | | | | tests (#13498) [backport] * fix #13496 handle tombstones * add test * more tests * fix #13504; add SharedTable tests * fix #https://github.com/nim-lang/Nim/issues/13505 intsets.missingOrExcl silently gave wrong results sometimes * add test for tintsets | ||||
* | docgen: don't create compiler's docs + cleanup (#13509) | Miran | 2020-02-26 | 1 | -95/+12 |
| | |||||
* | added operateOn to sugar.nim to give Nim the chaining mechanism it de… ↵ | Andreas Rumpf | 2020-02-26 | 4 | -29/+147 |
| | | | | | | | | (#13092) * implemented the with stdlib module as specified in https://github.com/nim-lang/RFCs/issues/193 * change sugar.outplace to sugar.dup according to https://github.com/nim-lang/RFCs/issues/193 * changelog update | ||||
* | xmltree: Make indentation consistent with any num of children nodes (#13482) | Kaushal Modi | 2020-02-26 | 2 | -34/+137 |
| | | | Ref: https://forum.nim-lang.org/t/5972 | ||||
* | fix #13455 ; joinPath(a,b) now honors trailing slashes in b (or a if b = "") ↵ | Timothee Cour | 2020-02-26 | 3 | -17/+47 |
| | | | | | | | (#13467) * fix #13455 ; joinPath(a,b) now honors trailing slashes in b (or a if b = "") * fix test windows | ||||
* | runCI: logs now show CPU/OS/etc info to be self contained (#13486) | Timothee Cour | 2020-02-26 | 1 | -0/+5 |
| | |||||
* | fix #8312 --hints:off and --warnings:off now honored everywhere (#13489) | Timothee Cour | 2020-02-26 | 9 | -22/+26 |
| | |||||
* | Documentation staticRead maximum file size limits (#13485) | Juan Carlos | 2020-02-26 | 1 | -0/+3 |
| | |||||
* | fix #13479 (#13503) | Arne Döring | 2020-02-26 | 1 | -2/+2 |
| | |||||
* | [backport] tut1: Update the proc overloading examples (#13497) [skip ci] | Kaushal Modi | 2020-02-25 | 1 | -5/+11 |
| | |||||
* | fix #13449 texitcode flaky on windows (#13487) | Timothee Cour | 2020-02-25 | 1 | -1/+4 |
| | |||||
* | make devel green again: tnetdial still doesn't work on Travis | narimiran | 2020-02-25 | 1 | -0/+1 |
| | |||||
* | only enable linenoise for -d:nimUseLinenoise (#13478) | Timothee Cour | 2020-02-24 | 6 | -9/+13 |
| | | | | | | * only enable linenoise for -d:nimUseLinenoise * fixup | ||||
* | Minor doc change in macros, future -> sugar (#13475) [ci skip] | hlaaftana | 2020-02-24 | 1 | -1/+1 |
| | |||||
* | add more files to the ignore list, hopefully fixes nightlies on windows (#13474) | Miran | 2020-02-24 | 1 | -7/+13 |
| | |||||
* | fix 3 minor bugs in joinPath (see #13455) (#13462) [backport] | Andrey Makarov | 2020-02-23 | 4 | -2/+10 |
| | |||||
* | Remove genToArray in jsgen, a PHP remnant (#13466) | hlaaftana | 2020-02-22 | 1 | -20/+0 |
| | |||||
* | Update advopt.txt to include link to nim cache docs (#13464) | Lee Matos | 2020-02-22 | 1 | -0/+1 |
| | |||||
* | relativePath("foo", "foo") is now ".", not "" (#13452) | Timothee Cour | 2020-02-22 | 6 | -8/+37 |
| | |||||
* | Consider proc as a pointer type in options (#13460) | hlaaftana | 2020-02-21 | 2 | -3/+14 |
| | | | | | | | | * Consider proc as a pointer type in options * Add version annotation for SomePointer having proc in options * Log procs as pointers for options in changelog | ||||
* | fixes #13457 (#13458) | Andreas Rumpf | 2020-02-21 | 2 | -11/+19 |
| | |||||
* | make unzip faster: seq[i]=val can be 7X faster than seq.add(elem) (#13448) | Timothee Cour | 2020-02-21 | 1 | -5/+5 |
| | |||||
* | fixes #13444 | Araq | 2020-02-21 | 1 | -1/+1 |
| |