Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Adds some examples to JoinPath and / procs. | Grzegorz Adam Hankiewicz | 2013-07-16 | 1 | -7/+25 |
| | |||||
* | Merge pull request #504 from ventor3000/master | Araq | 2013-07-07 | 2 | -0/+450 |
|\ | | | | | modules poly and numeric added | ||||
| * | Fixed some minor stuff in module poly | Robert Persson | 2013-07-07 | 1 | -15/+9 |
| | | | | | | | | | | Removed the stupid initPolyFromDegree which only served ro re-allocate results. Also fixed some minor stuff with nil return values in roots. | ||||
| * | Optimized integrate function in module poly | Robert Persson | 2013-07-07 | 1 | -10/+16 |
| | | | | | | | | | | Rewrote the integrate function since the old one was quite hacky. The new one is about 7 times faster in release and 3 times faster in debug | ||||
| * | Optimized divMod in poly | Robert Persson | 2013-07-03 | 1 | -13/+11 |
| | | | | | | | | | | Made a huge speed improvement in debug mode. Only a few % in release, but the memory load should be somewhat lower. | ||||
| * | Fixed a mixed bag of stuff poly and numeric | Robert Persson | 2013-07-03 | 2 | -51/+42 |
| | | |||||
| * | Cleanup of poly an numeric modules | Robert Persson | 2013-07-02 | 2 | -63/+0 |
| | | | | | | | | Removed some test code | ||||
| * | Added poly and numeric modules | Robert Persson | 2013-07-02 | 2 | -0/+524 |
| | | |||||
* | | Merge pull request #513 from gradha/pr_extends_align | Araq | 2013-07-07 | 1 | -6/+14 |
|\ \ | | | | | | | Extends align proc with default padding parameter. | ||||
| * | | Extends align proc with default padding parameter. | Grzegorz Adam Hankiewicz | 2013-07-05 | 1 | -6/+14 |
| | | | |||||
* | | | Documents passC/passL pragmas. Refs #506. | Grzegorz Adam Hankiewicz | 2013-07-05 | 1 | -3/+9 |
|/ / | |||||
* / | Silences debug echo. | Grzegorz Adam Hankiewicz | 2013-07-04 | 1 | -1/+1 |
|/ | |||||
* | made parseBiggestFloat faster for large exponents | Araq | 2013-07-01 | 1 | -3/+12 |
| | |||||
* | fixes --os:standalone | Araq | 2013-06-30 | 2 | -8/+11 |
| | |||||
* | made some tests green | Araq | 2013-06-30 | 1 | -2/+2 |
| | |||||
* | --os:standalone works again | Araq | 2013-06-30 | 11 | -638/+539 |
| | |||||
* | 2n attempt to fix niminst on the testing machines | Araq | 2013-06-29 | 1 | -1/+2 |
| | |||||
* | Merge pull request #487 from gradha/pr_no_more_slurping | Araq | 2013-06-28 | 1 | -1/+24 |
|\ | | | | | Improves highlite module | ||||
| * | Adds highlite to tests suite. | Grzegorz Adam Hankiewicz | 2013-06-18 | 1 | -1/+1 |
| | | |||||
| * | Adds previous slurping as runnable testcase. | Grzegorz Adam Hankiewicz | 2013-06-18 | 1 | -1/+14 |
| | | |||||
| * | Replaces relative file slurping with hardcoded array. | Grzegorz Adam Hankiewicz | 2013-06-18 | 1 | -1/+11 |
| | | |||||
* | | attempt to make libzip work on the testing machines | Araq | 2013-06-27 | 1 | -3/+5 |
| | | |||||
* | | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2013-06-27 | 3 | -148/+147 |
|\ \ | |||||
| * | | Fixed OSError + recvLine deprecation warnings. | Dominik Picheta | 2013-06-27 | 3 | -148/+147 |
| | | | |||||
* | | | bugfix: rendering of typ|typ2 | Araq | 2013-06-27 | 1 | -1/+1 |
| | | | |||||
* | | | attempt to use the lib.so for libzip | Araq | 2013-06-27 | 1 | -49/+54 |
| | | | |||||
* | | | bugfix: marshal supports unsigned numbers | Araq | 2013-06-27 | 2 | -3/+11 |
| | | | |||||
* | | | fixes #492 | Araq | 2013-06-27 | 2 | -3/+3 |
|/ / | |||||
* | | Merge branch 'master' of github.com:Araq/Nimrod | Araq | 2013-06-27 | 10 | -484/+579 |
|\ \ | |||||
| * | | Fixed OSError deprecation warnings. | Dominik Picheta | 2013-06-26 | 2 | -31/+31 |
| | | | |||||
| * | | Merge pull request #489 from onionhammer/patch-1 | Dominik Picheta | 2013-06-25 | 1 | -3/+4 |
| |\ \ | | | | | | | | | Fix: OpenSSL on Windows | ||||
| | * | | Fix: OpenSSL on Windows | onionhammer | 2013-06-20 | 1 | -3/+4 |
| | |/ | | | | | | | | | | | | | | | | | | | Updated CRYPTO_malloc_init to no longer call CRYPTO_set_mem_functions if compiling for windows Updated ERR_load_BIO_strings to import from DLLUtilName instead of DLLSSLName Updated OpenSSL_add_all_algorithms to import from DLLUtilName instead of DLLSSLName | ||||
| * | | Deprecated OSError, and modified it to require an explicit OS error code. | Dominik Picheta | 2013-06-25 | 5 | -126/+196 |
| | | | | | | | | | | | | The deprecated functions include the OSError and OSErrorMsg, the name did not change however the signature of the new functions did. They now require a TOSErrorCode value be passed to them. This value can be retrieved using OSLastError. The reason this was done is because on Windows any win api call can reset the last error code to 0, this change allows the user to immediately grab the error code and worry about the string representation later if needs be. | ||||
| * | | Fixed terminal module so that it doesn't raise an EOS exception when stdout ↵ | Dominik Picheta | 2013-06-22 | 1 | -334/+332 |
| | | | | | | | | | | | | is redirected. | ||||
| * | | Changed the type of gboolean to a distinct cint. | Dominik Picheta | 2013-06-22 | 2 | -1/+9 |
| | | | |||||
| * | | Symlinks are now expanded in os.getAppFilename on Mac OS X. | Dominik Picheta | 2013-06-22 | 1 | -0/+5 |
| | | | |||||
| * | | Send buffer will be respected now when closing async SCGI clients. | Dominik Picheta | 2013-06-21 | 1 | -3/+12 |
| | | | |||||
| * | | Added an asyncio.isSendDataBuffered procedure. | Dominik Picheta | 2013-06-21 | 1 | -0/+4 |
| |/ | |||||
* / | fixed a long standing xml parser bug; html parser bugfixes + speed improvements | Araq | 2013-06-27 | 4 | -74/+243 |
|/ | |||||
* | made tests green | Araq | 2013-06-10 | 1 | -1/+1 |
| | |||||
* | fixes 465 | Araq | 2013-06-09 | 1 | -24/+0 |
| | |||||
* | Merge pull request #473 from gradha/pr_doc_improvements | Araq | 2013-06-09 | 3 | -4/+4 |
|\ | | | | | Doc improvements | ||||
| * | Adds docutils modules to lib index, fixes :idx: markers. | Grzegorz Adam Hankiewicz | 2013-06-09 | 3 | -4/+4 |
| | | |||||
* | | Merge pull request #475 from gradha/pr_macosx_gnu_readline | Araq | 2013-06-09 | 1 | -22/+25 |
|\ \ | | | | | | | Wraps variables inside `when` for macosx. Fixes #461. | ||||
| * | | Wraps variables inside `when` for macosx. Refs #461. | Grzegorz Adam Hankiewicz | 2013-06-09 | 1 | -22/+25 |
| |/ | |||||
* | | resolved conflict; added missing files | Araq | 2013-06-09 | 5 | -315/+248 |
|\| | |||||
| * | Merge pull request #467 from fowlmouth/patch-9 | Araq | 2013-06-06 | 3 | -309/+242 |
| |\ | | | | | | | use proper types in lua | ||||
| | * | cleaned up lualib.nim | Billingsly Wetherfordshire | 2013-06-06 | 1 | -20/+18 |
| | | | |||||
| | * | cleaned up lua.nim | Billingsly Wetherfordshire | 2013-06-06 | 1 | -188/+140 |
| | | | |||||
| | * | use proper types in lua | Billingsly Wetherfordshire | 2013-06-06 | 1 | -101/+84 |
| | | | | | | | | | | | | | | | * ints changed to cint * the source has been cleaned up with {.push/pop.} * lua 5.2 has been removed (it is incompatible) |