summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* fixed typo in threadpool.nimMichael Werner2015-05-081-1/+1
|
* Merge pull request #2675 from nanoant/patch/fixup-build-csources-submodule-pullreactormonk2015-05-081-1/+1
|\ | | | | Fixup: csources is empty after clone
| * Fixup: csources is empty after cloneAdam Strzelecki2015-05-071-1/+1
|/ | | | | We actually need to check for existence of csources/.git and then do git submodule update --init, which pulls the data for submodule.
* Merge pull request #2649 from nanoant/patch/csources-as-submoduleAndreas Rumpf2015-05-074-2/+4
|\ | | | | Patch/csources as submodule
| * Make build.sh executableAdam Strzelecki2015-05-031-0/+0
| | | | | | | | | | There is no reason build.sh shouldn't be executable and we couldn't build Nim with: ./build.sh
| * Make csources a submoduleAdam Strzelecki2015-05-034-2/+4
| | | | | | | | | | | | | | | | | | | | | | 1. Solves a problem that updating Nim sources we have no indication we need to update csources as well. 2. Using submodule we can explicitly request that some Nim version requires some csources version to bootstrap. 3. build.sh now simply calls: git submodule update --init --depth 1 instead shallow clone on missing csources subdirectory.
* | Merge pull request #2666 from def-/fix-staticlibAndreas Rumpf2015-05-071-1/+2
|\ \ | | | | | | Fix the lib path used with --app:staticlib
| * | Improve code style a bitdef2015-05-071-1/+1
| | |
| * | Fix the lib path used with --app:staticlibdef2015-05-071-1/+2
| | | | | | | | | | | | | | | For example if gProjectName is "src/false.nim" the old static lib name was "libsrc/false.nim.a", now it is "libfalse.a".
* | | Merge pull request #2622 from def-/times-yearAndreas Rumpf2015-05-071-2/+2
|\ \ \ | | | | | | | | Year shouldn't be arbitrarily limited to -10_000 .. 10_000
| * | | Year shouldn't be arbitrarily limited to -10_000 .. 10_000. Instead it'sdef2015-04-291-2/+2
| | | | | | | | | | | | | | | | an int now.
* | | | Merge pull request #2627 from msmith491/develVarriount2015-05-071-7/+13
|\ \ \ \ | | | | | | | | | | Add arbitrary char support to the strutils proc. Issue #2626
| * | | | Add arbitrary char support to the strutils proc. Issue #2626msmith4912015-04-301-7/+13
| | | | |
* | | | | Merge pull request #2596 from Nycto/develVarriount2015-05-072-43/+71
|\ \ \ \ \ | | | | | | | | | | | | Fix floats in tuples in HashSets
| * | | | | Fix floats in tuples in HashSetsNycto2015-04-242-43/+71
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, the added tests would fail to compile with errors complaining that 'hash(float)' didn't exist
* | | | | | Merge pull request #2537 from jsanjuas/develVarriount2015-05-071-6/+11
|\ \ \ \ \ \ | | | | | | | | | | | | | | Generalize mean to other types
| * | | | | | Convert to float before sumJosep Sanjuas2015-04-181-2/+3
| | | | | | |
| * | | | | | Document toFloat is necessaryJosep Sanjuas2015-04-181-0/+1
| | | | | | |
| * | | | | | Generalize variance to other typesJosep Sanjuas2015-04-181-3/+3
| | | | | | |
| * | | | | | Generalize mean to other typesJosep Sanjuas2015-04-121-2/+5
| | | | | | |
* | | | | | | Merge pull request #2665 from koalazen/fix_math_is_power_of_twoVarriount2015-05-071-1/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | fixes isPowerOfTwo returning true on the smallest integer
| * | | | | | | fixes isPowerOfTwo returning true on the smallest integerKoala Zen2015-05-061-1/+1
| | |_|_|_|/ / | |/| | | | |
* | | | | | | Merge pull request #2663 from koalazen/fix_re_commentVarriount2015-05-071-2/+2
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | Fix comment in re
| * | | | | | Fix comment in reKoala Zen2015-05-061-2/+2
|/ / / / / /
* | | | | | Merge pull request #2655 from enitihas/nim-cfg-gcc-pathAndreas Rumpf2015-05-041-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | Corrected gcc path on windows
| * | | | | | Corrected gcc path on windowsAbhishek Pandey2015-05-051-1/+1
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When gcc path is set to r"$nimrod\dist\mingw\bin", the compiler gives an error: Error : unhandled exception : invalid format string [Value Error], but works correctly with gcc.path set to r"$nim\dist\mingw\bin". I think this issue was caused due to the name change from nimrod to nim , but the name change was not replicated in the config file.
* | | | | | final website changesAraq2015-05-043-12/+12
| | | | | |
* | | | | | added missing stuff for the releaseAraq2015-05-041-0/+4
| | | | | |
* | | | | | version 0.11.2Araq2015-05-044-24/+17
| | | | | |
* | | | | | version 0.11.2Araq2015-05-043-4/+14
| | | | | |
* | | | | | fixes #2651Araq2015-05-041-57/+59
| | | | | |
* | | | | | fixes typo in tut1Araq2015-05-041-36/+36
| |_|_|_|/ |/| | | |
* | | | | Merge pull request #2648 from def-/zipfilesAndreas Rumpf2015-05-031-36/+50
|\ \ \ \ \ | | | | | | | | | | | | Make zipfiles module work again
| * | | | | Make zipfiles module work againdef2015-05-031-36/+50
| | | | | | | | | | | | | | | | | | | | | | | | Also adds an example usage to the module
* | | | | | made test greenAraq2015-05-031-0/+46
| | | | | |
* | | | | | fixes #2629, fixes #2641, fixes #2632, fixes #2630Araq2015-05-034-3/+48
| | | | | |
* | | | | | fixes 'echo nil' codegen bugAraq2015-05-032-3/+6
| | | | | |
* | | | | | development version is 0.11.1Araq2015-05-033-8/+23
| | | | | |
* | | | | | minor bugfixes to the new 'len(nil)==0' featureAraq2015-05-032-4/+6
| | | | | |
* | | | | | compiler\ccgexprs.nimAraq2015-05-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | fixes 'nil' literal echoing
* | | | | | fixes #2625Araq2015-05-032-4/+26
|/ / / / /
* | | | | Merge pull request #2639 from HOLYCOWBATMAN/pr-frontpage-slideshowreactormonk2015-05-031-2/+2
|\ \ \ \ \ | |_|_|/ / |/| | | | Moved frontpage slideshow controls
| * | | | Moved frontpage slideshow controlsHOLYCOWBATMAN2015-05-021-2/+2
|/ / / /
* | | | Merge pull request #2618 from yglukhov/dom-body-headreactormonk2015-05-011-0/+2
|\ \ \ \ | | | | | | | | | | Added body and head properties to DOM document.
| * | | | Added body and head properties to document.yglukhov2015-04-291-0/+2
| | |_|/ | |/| |
* | | | version 0.11.0Araq2015-04-302-8/+25
| | | |
* | | | more cleanups for 0.11.0Araq2015-04-309-57/+218
| | | |
* | | | Intro for release notes.Dominik Picheta2015-04-301-0/+13
| | | |
* | | | preparations for version 0.11.0Araq2015-04-308-368/+486
| | | |
* | | | columns are 1 based for nimsuggestAraq2015-04-301-5/+6
| | | |