summary refs log tree commit diff stats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* nimvm is magicYuriy Glukhov2015-09-041-0/+4
|
* split os into os and ospaths parts; ospaths is available for NimScript; ↵Araq2015-09-043-525/+588
| | | | better NimScript support
* Merge pull request #3281 from nanoant/patch/lib-pure-times-hotfixDominik Picheta2015-09-031-14/+18
|\ | | | | times: Export & document countLeapYears/Years/Days
| * times: Export & document countLeapYears/Years/DaysAdam Strzelecki2015-09-031-14/+18
| | | | | | | | | | | | | | | | Previously countYears & countDays procs were not public, but there were unused, causing unnecessary warnings generated by standard library. Since these procs seems to be useful it is better to just export them than remove them completely. Also turning inline comments into proper documentation.
* | improvements for NimScript supportAraq2015-09-031-2/+2
| |
* | fixes 'line too long' warningsAraq2015-09-031-11/+18
| |
* | Merge pull request #3273 from yglukhov/js-copy-fixAndreas Rumpf2015-09-031-9/+5
|\ \ | | | | | | Fixed JS copying.
| * | Fixed JS copying.Yuriy Glukhov2015-08-311-9/+5
| | |
* | | Merge pull request #3264 from jlp765/db_mysqlAndreas Rumpf2015-09-031-4/+1
|\ \ \ | | | | | | | | fixes #3220 lib/impure/db_mysql.nim getValue()
| * | | fixes #3220 lib/impure/db_mysql.nim getValue()JamesP2015-08-281-4/+1
| | | | | | | | | | | | | | | | | | | | mysql connector command out of sync error due to breaking the fastRows iterator loop
* | | | Merge pull request #3280 from jlp765/endbAndreas Rumpf2015-09-031-2/+20
|\ \ \ \ | | | | | | | | | | lib/system/endb.nim bug fix: Switch state to dbgSkipCurrent for Eval, Local & Global
| * | | | bug fix: Switch state to dbgSkipCurrent for Eval, Local & Global commands.JamesP2015-09-031-2/+20
| |/ / / | | | | | | | | | | | | | | | | | | | | This avoids stepping into the endb code if previous command was single step. Other two changes are trailing spaces removed.
* | | | Merge pull request #3266 from rbehrends/fix-readlineAndreas Rumpf2015-09-031-1/+10
|\ \ \ \ | |_|_|/ |/| | | Fix readLine handling of long lines.
| * | | Fix readLine handling of long lines.Reimer Behrends2015-08-281-1/+10
| |/ /
* | | formatFloat takes an optional decimalSep parameterAraq2015-09-011-10/+17
| | |
* | | Add :idx: for `suspend` in coro module.Dominik Picheta2015-08-301-0/+2
| | |
* | | Merge branch 'coro-remove-prefix' of https://github.com/reactormonk/nim into ↵Dominik Picheta2015-08-301-19/+15
|\ \ \ | | | | | | | | | | | | reactormonk-coro-remove-prefix
| * | | coro.sleep -> suspendSimon Hafner2015-08-301-5/+5
| | | |
| * | | removed coro deprecationsSimon Hafner2015-08-251-6/+0
| | | |
| * | | removed coro prefixes from coro.nimSimon Hafner2015-08-251-17/+19
| | | |
* | | | Add link button for IUP wrapperxland2015-08-301-0/+2
| |_|/ |/| | | | | Add link button for IUP wrapper
* | | Add widestring versions of SQLPrepare and SQLExecDirectcoffeepots2015-08-281-0/+4
| |/ |/| | | SQLPrepareW and SQLExecDirectW are needed to use unicode as otherwise ODBC only recognises ansi codepages.
* | Merge pull request #3251 from jck/msp430Dominik Picheta2015-08-261-0/+2
|\ \ | | | | | | add msp430 cpu support
| * | add msp430 cpu supportKeerthan Jaic2015-08-261-0/+2
| | |
* | | make --gc:none work with --threads:onAraq2015-08-261-1/+1
| | |
* | | fixes #3237Araq2015-08-251-3/+9
|/ /
* | Merge pull request #3239 from xyz32/develAndreas Rumpf2015-08-251-4/+15
|\ \ | |/ |/| When reading files, check if the eof flag is set before throwing.
| * remove fileErrorxyz2015-08-252-7/+1
| |
| * Append the readAllBuffer to what was read alreadyxyz2015-08-231-1/+1
| |
| * Use seLen as sugested, and fix typosxyz2015-08-232-5/+4
| |
| * When reading files, check if the eof flag is set before throwing.xyz2015-08-222-5/+23
| |
* | fixes #3245Araq2015-08-252-2/+4
| |
* | Merge pull request #3160 from r-ku/coroutinesAndreas Rumpf2015-08-2512-320/+842
|\ \ | | | | | | Coroutines
| * \ Merge branch 'devel' into coroutinesrku2015-08-2022-116/+624
| |\ \
| * | | Coroutine support for i386/amd64 platforms unix/windows OSes ↵rku2015-07-3112-320/+842
| | | | | | | | | | | | | | | | markAndSweep/refCounting GCs.
* | | | Corrected lib name for macos.Yuriy Glukhov2015-08-251-1/+1
| | | |
* | | | implemented nimPinToCpu threadpool featureAraq2015-08-241-1/+9
| | | |
* | | | fixes sysio regression for nimscript supportAraq2015-08-241-1/+4
| | | |
* | | | Improves osproc.startProcess error message on POSIX. Ref #2183.Dominik Picheta2015-08-231-1/+2
| | | |
* | | | Improves osproc.startProcess error message. Fixes #2183.Dominik Picheta2015-08-231-1/+8
| | | |
* | | | Better docs for os.getCreationTime(). Fixes #1058.Dominik Picheta2015-08-231-2/+4
| | | |
* | | | Fixes parsing of URIs that begin with '//'.Dominik Picheta2015-08-231-7/+20
| |_|/ |/| |
* | | math.nim works with NimScriptAraq2015-08-211-7/+9
| | |
* | | Merge pull request #3143 from def-/readline-fasterAndreas Rumpf2015-08-212-60/+36
|\ \ \ | | | | | | | | Improve performance of readLine by using fgets
| * | | Improve readLine to work with strings containing \0 again.def2015-07-251-5/+15
| | | | | | | | | | | | | | | | This decreases performance slightly.
| * | | No need to set trailing \0def2015-07-241-7/+4
| | | |
| * | | Improve performance of readLine by using fgetsdef2015-07-242-60/+29
| | | | | | | | | | | | | | | | This drops compatibility with pure CR line endings of old Mac systems
* | | | Merge pull request #3205 from fenekku/unittest-work-2Andreas Rumpf2015-08-211-15/+21
|\ \ \ \ | | | | | | | | | | other unittest pull-request
| * | | | make testSetupIMPL and testTeardownIMPL non-publicfenekku2015-08-121-5/+4
| | | | |
| * | | | failed unittest check causes identifiers and calls to be printed outfenekku2015-08-121-10/+17
| | | | |