summary refs log tree commit diff stats
path: root/web
Commit message (Collapse)AuthorAgeFilesLines
* documentation: add 'sexp' moduleAraq2017-10-161-1/+1
|
* @dom96's comments: remove bountysource, revert configurator change.Daniil Yarancev2017-10-142-141/+0
|
* [JSON] getBVal -> getBool; getFNum -> getFloatDaniil Yarancev2017-10-141-4/+4
|
* make nimblepkglist tool work with newer versions of the websiteAraq2017-07-201-1/+2
|
* Merge branch 'araq2' into develAraq2017-05-171-2/+2
|\
| * Merge branch 'zahary' into araq2Andreas Rumpf2017-05-171-2/+2
| |\
| | * close #5757Zahary Karadjov2017-04-301-2/+0
| | |
| | * close #5726Zahary Karadjov2017-04-281-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Turned out that the old code was wrong. I'm not sure why it used to work. `response.body` properly resolves to an async proc defined in the httpclient module with the following signature: proc body*(response: AsyncResponse): Future[string] {.async.} Perhaps the old code was somehow matching the body field of the `AsyncResponse` object, which is marked as private.
* | | More bug fixes added to list in release notes.Dominik Picheta2017-05-161-0/+119
| | |
* | | Merge pull request #5748 from J3RN/meet-xdg-base-directory-specDominik Picheta2017-05-161-0/+4
|\ \ \ | |/ / |/| | Modified ospath's getConfigDir to meet XDG spec
| * | Added getConfigDir changes to breaking changes docJonathan Arnett2017-04-281-0/+4
| | |
* | | fixed macros.getTypeImpl for a symbol of type tyGenericBody (#5788) (#5812)jcosborn2017-05-141-0/+2
| | | | | | | | | | | | | | | * fixed macros.getTypeImpl for a symbol of type tyGenericBody * added test case and commented test code
* | | Implement dial, support IPv6 in httpclient (#5763)Ruslan Mustakov2017-05-021-1/+4
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Implement dial, support IPv6 in httpclient Added ``dial`` procedure to networking modules: ``net``, ``asyncdispatch``, ``asyncnet``. It merges socket creation, address resolution, and connection into single step. When using ``dial``, you don't have to worry about IPv4 vs IPv6 problem. Fixed addrInfo loop in connect to behave properly. Previously it would stop on first non-immediate failure, instead of continuing and trying the remaining addresses. Fixed newAsyncNativeSocket to raise proper error if socket creation fails. Fixes: #3811 * Check domain during connect() only on non-Windows This is how it was in the previous implementation of connect(). * Call 'osLastError' before 'close' in net.dial * Record osLastError before freeAddrInfo in net.dial * Add missing docs for 'dial' proc * Optimize dial to create one FD per domain, add tests And make async IPv6 servers work on Windows. * Add IPv6 test to uri module * Fix getAddrString error handling
* | Document breaking AsyncResponse change. Refs #5726.Dominik Picheta2017-04-281-0/+3
| |
* | WIFSIGNALED means process has exited too (with a bang!) (#5678)Jacek Sieka2017-04-271-0/+2
|/
* News items for previous commitZahary Karadjov2017-04-061-1/+7
|
* make tests green againAndreas Rumpf2017-04-041-1/+1
|
* remove the need for the .procvar annotationAndreas Rumpf2017-04-031-0/+6
|
* remove en-dash from the languageAndreas Rumpf2017-04-021-0/+2
|
* language addition: colon-block for expressions in let/var contextAndreas Rumpf2017-04-021-0/+13
|
* updated news to take PR #5390 into accountAraq2017-03-311-0/+2
|
* Merge branch 'devel' into araqAndreas Rumpf2017-03-301-13/+7
|\
| * website update; fixes #5422Araq2017-03-301-13/+7
| |
* | attempt to make travis OSX tests green and mandatoryAndreas Rumpf2017-03-291-1/+1
|/
* fixes #5599 (#5610)Andreas Rumpf2017-03-261-0/+3
|
* fix getTypeImpl for tyEnum (#5568)jcosborn2017-03-191-0/+4
| | | | | * fixed getTypeImpl for tyEnum * fixed getType for enum and updated release notes about change
* update news.rst about the breaking changesAraq2017-03-181-1/+11
|
* fix varargs forwarding for templates; fixes #5455 (#5505)zah2017-03-131-0/+3
| | | | | * fix varargs forwarding for templates; fixes #5455 * document the macros' varargs change in the news for 0.16.2
* Fixes incorrect fd==0 test on Unix; Conserves handles by default. (#5512)c-blake2017-03-121-0/+3
| | | | | | | | | | | | | | * Fix 2 problems. First, 0 is a valid fd on Unix (easily gotten if user first closes all fds and then starts using memfiles). Use -1 instead for an invalid fd. Second, it is best practice to conserve open fds on Unix and file handles on Windows. These handles are not needed unless the user wants to remap the memory with ``mapMem`` (or a hypothetical future ``proc resize``). Adding a new bool param ``allowRemap=false`` to ``memfiles.open`` solves this cleanly in a "mostly" backward compatible way. This is only "mostly" because the default ``false`` case does not keep unneeded resources allocated, but that most sensible default means that any ``mapMem`` callers need to fix all their open calls to have allowRemap=true, as this PR also does for tmemfiles2.nim. * Include backwards compatibility note.
* minor website improvementAndreas Rumpf2017-03-012-2/+2
|
* minor news.rst updateAraq2017-02-261-1/+4
|
* new feature: .used pragma to suppress declared-but-not-used warningAraq2017-02-171-0/+4
|
* Fix rst parse problem in version 0.16.2 news.Dominik Picheta2017-02-141-2/+2
|
* Update bountysource sponsors.Dominik Picheta2017-02-143-46/+60
|
* Add hash proc for cstrings (#5386)Ruslan Mustakov2017-02-131-1/+5
|
* updated newsAraq2017-02-081-0/+20
|
* Merge branch 'devel' into feature/3691Dominik Picheta2017-02-073-4/+76
|\
| * website: http to https updatesAraq2017-02-061-2/+2
| |
| * Adds bug fix list to 0.16.2 announcement.Dominik Picheta2017-02-061-0/+64
| |
| * minor website updateAraq2017-02-021-2/+8
| |
* | Fixes #3691.Dominik Picheta2017-02-011-0/+16
|/
* minor website improvementAndreas Rumpf2017-01-291-1/+1
|
* Implement RFC #4873 improvements to JavaScript FFI (#5213)Michael Jendrusch2017-01-261-1/+1
|
* Added newsYuriy Glukhov2017-01-202-0/+30
|
* add distros to docs properlyAraq2017-01-091-1/+1
|
* added checksumsAraq2017-01-081-6/+6
|
* updated download pageAraq2017-01-081-10/+10
|
* updated to version 0.16.0Araq2017-01-073-6/+9
|
* Add 0.16.0 release notes.Dominik Picheta2017-01-072-4/+120
|
* added distros.nim stdlib module for NimScript/Nimble supportAraq2016-12-312-1/+5
|