summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* fixes #6776Andreas Rumpf2017-11-181-1/+1
|
* Do not include date in binaries (#6581)Bernhard M. Wiedemann2017-11-182-5/+6
| | | | | | and do not claim copyright for 2018 in order to make nim package builds reproducible. See https://reproducible-builds.org/ for why this is good.
* replaced asArray with a much more powerful mapLiterals macroAndreas Rumpf2017-11-183-19/+49
|
* closes #6166Andreas Rumpf2017-11-181-1/+20
|
* Use 'typedesc' instead of 'untyped'Andreas Rumpf2017-11-181-1/+1
|
* Move asArray macro back to sequtilsFredrik Høisæther Rasch2017-11-182-30/+30
| | | | This reverts commit 72f653c2daa5c629ed8a57a4f53dcef56432aa26.
* Revert "Move asArray and ListComprehension to new sugar module"Fredrik Høisæther Rasch2017-11-182-98/+87
| | | | This reverts commit 9bdee897747d3345d1c7722b3440d7cf38460f40.
* Move asArray and ListComprehension to new sugar moduleFredrik Høisæther Rasch2017-11-182-87/+98
|
* asarray targetType parameter does not need to be a typedesc.Fredrik Høisæther Rasch2017-11-181-3/+5
|
* asArray poduces a cal expression instead of a dot expressionFredrik Høisæther Rasch2017-11-181-4/+4
|
* Moving asArray to future moduleFredrik Høisæther Rasch2017-11-182-30/+29
| | | | As per [suggestion](https://github.com/nim-lang/Nim/pull/6640#issuecomment-341565453) made by @Araq
* Swapping asArray parameter orderFredrik Høisæther Rasch2017-11-181-3/+3
| | | | In reaction to https://github.com/nim-lang/Nim/pull/6640#issuecomment-341528413
* Changing asArray documentationFredrik Høisæther Rasch2017-11-181-2/+2
| | | | in reaction to https://github.com/nim-lang/Nim/pull/6640#discussion_r148367553
* avoid asArray macros import when using nimscriptFredrik Høisæther Rasch2017-11-181-25/+25
|
* Implement an `asArray` macroFredrik Høisæther Rasch2017-11-181-0/+29
| | | | fixes #6563
* Update docs of cookies.parseCookies. Closes #5721.Dominik Picheta2017-11-181-0/+9
|
* Fix compiler crash (#6773) (#6774)cooldome2017-11-182-1/+48
|
* fixes #6757Andreas Rumpf2017-11-171-1/+7
|
* Merge branch 'devel' of github.com:nim-lang/Nim into develAndreas Rumpf2017-11-172-32/+34
|\
| * added when statement (#6759)Arne Döring2017-11-171-29/+32
| |
| * fixes #6589 again (#6766)Fabian Keller2017-11-171-3/+2
| |
* | fixes the second example of #6757Andreas Rumpf2017-11-171-7/+7
| |
* | fixes #6765Andreas Rumpf2017-11-171-3/+7
|/
* Merge branch 'devel' of github.com:nim-lang/Nim into develAndreas Rumpf2017-11-171-12/+12
|\
| * Merge pull request #6764 from lcrees/list-removedDominik Picheta2017-11-161-12/+12
| |\ | | | | | | Consolidate list of changed packages
| | * Consolidate removed package listlcrees2017-11-161-12/+12
| |/
* / make tests green againAndreas Rumpf2017-11-171-2/+2
|/
* added system.getStackTraceEntriesAndreas Rumpf2017-11-163-22/+77
|
* todo.txt updatesAndreas Rumpf2017-11-161-2/+2
|
* Merge pull request #6659 from FedericoCeratto/Uri-stringDominik Picheta2017-11-161-2/+35
|\ | | | | Make Uri rendering more lenient. Closes #6652
| * Make Uri rendering more lenientFederico Ceratto2017-11-141-2/+35
| | | | | | | | | | When the hostname and path fields are set, handle missing or extra slashes to generate valid URLs.
* | Merge pull request #6761 from lcrees/nopolynumericDominik Picheta2017-11-163-458/+2
|\ \ | | | | | | Removed deprecated numeric and poly module from the stdlib
| * | Removed deprecated numeric and poly module from the stdliblcrees2017-11-163-458/+2
|/ /
* | 'nim doc' is now using version 2 of the documentation generatorAndreas Rumpf2017-11-166-6/+8
| |
* | Removed deprecated gentabs module from the stdlib (#6748)Lynn C. Rees2017-11-162-211/+2
| |
* | Fix platform detection in makefile (#6751)Sergey Avseyev2017-11-161-8/+11
| |
* | Add ioselectors to doc index (#6657)Lynn C. Rees2017-11-151-1/+1
| |
* | use targets from test spec when running testament tests (#6687)Jacek Sieka2017-11-1521-125/+136
| |
* | WIP: Add a advanced compiler command 'ctags' (#6654)Dmitry Atamanov2017-11-154-1/+71
| |
* | Documentation: directly use ref object + fields (#6598)Mamy Ratsimbazafy2017-11-155-37/+48
| |
* | Change expr/stmt in examples to untyped (#6734)Lynn C. Rees2017-11-1516-119/+56
| |
* | Modified handling of zero precision in formatFloat (#6719)Fabian Keller2017-11-152-9/+16
| |
* | Trim remaining expr/stmt from stdlib (#6742)Lynn C. Rees2017-11-159-16/+16
| |
* | Move deprecated romans module from stdlib to Nimble package (#6660)Lynn C. Rees2017-11-153-130/+2
| |
* | Appveyor thttpclient (#6744)Fredrik Høisæther Rasch2017-11-152-0/+4
| | | | | | | | | | | | * App option value for disabling tests for AppVeyor * Disable thttpclient on AppVeyor
* | Tests should not rely on external services (#6703)Sergey Avseyev2017-11-151-2/+13
| | | | | | | | This test depends on example.com site to be reachable, and fails when there is no internet connection.
* | Merge pull request #6743 from lcrees/patch-6Dominik Picheta2017-11-141-2/+3
|\ \ | | | | | | Clarify compiler plugin support
| * | Clarify compiler plugin supportLynn C. Rees2017-11-141-2/+3
| | |
* | | bugfix: make 'macros' module available for nimscriptAndreas Rumpf2017-11-142-3/+4
| | |
* | | koch temp uses '-d:debug'Andreas Rumpf2017-11-141-2/+2
|/ /