summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Fix nimsuggest/#117 (#15602)Clyybber2020-11-151-4/+1
|
* Documentation only (#15968)Andreas Rumpf2020-11-151-1/+27
|\ | | | | | | | | * Fix #15806 * https://github.com/nim-lang/Nim/pull/15968/files#r523468677
| * https://github.com/nim-lang/Nim/pull/15968/files#r523468677Juan Carlos2020-11-141-7/+1
| |
| * Fix #15806Juan Carlos2020-11-141-1/+2
| |
| * Fix #15806Juan Carlos2020-11-141-2/+3
| |
| * Fix #15806Juan Carlos2020-11-141-1/+2
| |
| * Fix #15806Juan Carlos2020-11-141-1/+30
| |
* | asynchttpserver cleanups [backport:1.0] (#15966)Andreas Rumpf2020-11-152-12/+10
|/ | | | * asynchttpserver cleanups [backport:1.0]
* [docs minor]add some tips to intern.rst (#15967)Andreas Rumpf2020-11-141-2/+10
|\ | | | | | | | | * [docs minor]add some tips yo intern.rst * minor
| * minorflywind2020-11-141-1/+1
| |
| * [docs minor]add some tips yo intern.rstflywind2020-11-141-2/+10
| |
* | fix #12303 (#15964)flywind2020-11-143-2/+26
| |
* | nimgrep: change 2 iterators to closure (#15962)Andreas Rumpf2020-11-141-12/+14
|\ \
| * | nimgrep: change 2 iterators to closureAndrey Makarov2020-11-141-12/+14
| | |
* | | targets: use cpp instead of c++ everywhere (was by far the most common) (#15961)Timothee Cour2020-11-145-5/+5
| | |
* | | strengthen taddr.nim: add test case for #14578; reference other issues; test ↵Timothee Cour2020-11-131-15/+13
|/ / | | | | | | cpp (#15960)
* | attempt to make asynchttpserver better; fixes #15925; [backport:1.0] (#15957)Andreas Rumpf2020-11-138-36/+124
|\ \ | | | | | | | | | | | | | | | | | | | | | * attempt to make asynchttpserver better; fixes #15925; [backport:1.0] * better documentation * fixes 'nim doc' * makes test green again * ported to FreeRTOS * fixes the doc rendering
| * | fixes the doc renderingAraq2020-11-131-38/+35
| | |
| * | ported to FreeRTOSAraq2020-11-132-11/+22
| | |
| * | makes test green againAraq2020-11-131-2/+2
| | |
| * | fixes 'nim doc'Araq2020-11-131-1/+1
| | |
| * | better documentationAraq2020-11-131-4/+11
| | |
| * | attempt to make asynchttpserver better; fixes #15925; [backport:1.0]Araq2020-11-137-50/+123
| | |
* | | Make IntSet a generic ordinal set OrdSet[A] (#15564)landerlo2020-11-134-752/+873
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Make IntSet an ordinal set OrdSet[A: Ordinal] Backward compatibility with IntSet is maintained. IntSet is an alias for OrdSet[int] * move ordsets to new file, intsets exports it * ordset, move to lib/std folder * Fix `$` for ordsets and test cleanup * Fix ordsets compilation in doc example * Rename ordsets to packedsets
* | | Alternate to https://github.com/nim-lang/Nim/pull/15915 (#15937)c-blake2020-11-131-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | * Alternate PR to https://github.com/nim-lang/Nim/pull/15915 to resolve the problem mentioned there (`hash() == 0`) as well as to close https://github.com/nim-lang/Nim/issues/15624 * Address https://github.com/nim-lang/Nim/pull/15937#discussion_r522759669 { though this was only a move from 2 copies to 3 copies. ;-) }
* | | Fix #8404 JS backend doesn't handle float->int type conversion (#15950) ↵Bung2020-11-132-3/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [backport] * Fix #8404 JS backend doesn't handle float->int type conversion * handle conv to uint as cast, discard other cases * limit to int32, times use int64 * toInt including tyInt64 break times timezones lib, ignore for now * also affect to vm * move to tests/misc/t8404.nim
* | | close #13062(add testcase for #13062) (#15956)flywind2020-11-131-0/+27
| | |
* | | close #2771(add testcase for #2771) (#15932)flywind2020-11-131-0/+21
| | |
* | | refactoring: modernize rst.nim (#15953)Miran2020-11-131-509/+449
|/ /
* | Update buildsh.nimf (#15945)lenoil982020-11-131-3/+4
| | | | | | fix powerpc64le detection
* | Don't use os for Standalone (#15944)wilypomegranate2020-11-131-2/+2
| |
* | Add documentElement to Document. (#15943)treeform2020-11-131-0/+1
| |
* | fix #15941 (#15948)flywind2020-11-132-4/+24
| | | | | | | | | | | | | | * fix #15941 * add testcase * update
* | add a tester for rst2html (#15936)Miran2020-11-124-0/+864
| |
* | Update changelog.mdTimothee Cour2020-11-121-1/+1
| |
* | follow #8463 #14157 and document cstring literals modification is not ↵flywind2020-11-121-0/+14
| | | | | | | | | | | | | | | | | | allowed (#15878) * follow #8463 #14157 and document cstring literals * Update doc/manual.rst Co-authored-by: Juan Carlos <juancarlospaco@gmail.com> Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
* | js -d:nodejs now supports osenv: `getEnv`, `putEnv`, `envPairs`, `delEnv`, ↵Timothee Cour2020-11-123-215/+279
| | | | | | | | | | | | | | | | | | | | | | `existsEnv` (v2) (#15826) * js -d:nodejs now supports osenv: `getEnv`, `putEnv`, `envPairs`, `delEnv`, `existsEnv` * refactor to osenv * fix for js (without -d:nodejs) + VM Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
* | add parent property to window in dom.nim (#15922)Bung2020-11-121-0/+1
| |
* | make var string return var char w/ BackwardsIndex (#15461)hlaaftana2020-11-123-3/+11
| | | | | | | | | | | | | | | | * make var string return var char w/ BackwardsIndex fixes #14497 * work around VM bug * properly workaround again
* | change some code-blocks to runnableExamples and correct some errors in docs ↵flywind2020-11-124-57/+51
| | | | | | | | | | | | | | | | | | (#15900) * original docs are wrong * fix pathnorm * Update lib/pure/pathnorm.nim Co-authored-by: Juan Carlos <juancarlospaco@gmail.com>
* | Add support for FreeBSD/PowerPC64 Little Endian (#15927)lenoil982020-11-123-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Update installer.ini Add support for powerpc64 little endian * Update buildsh.nimf Add support for powerpc64 little endian * Update makefile.nimf Add support for freebsd/powerpc64 little endian
* | Fix a problem for long symlinks in conda (#15908) [backport]Christopher Dunn2020-11-121-9/+10
| | | | | | * https://github.com/conda-forge/nim-feedstock/commit/d8c80ea69dca30d99073d33845ddd79f9892755b#diff-e1d8e552330911f9f779f85b6f2c00a15e790dcc3fbb3b28f5da1d660a30c5b8
* | fix #15916 (#15917) [backport]flywind2020-11-122-2/+20
| | | | | | | | | | | | | | * fix #15916 * add testcase for #15916 * add comments
* | Fix #15909 (#15914)Fanael Linithien2020-11-122-0/+17
| |
* | doAssertRaises improvements; nimscript supports `except Exception as e` (#15765)Timothee Cour2020-11-124-11/+20
| | | | | | | | | | | | | | * doAssertRaises now correctly handles foreign exceptions; now shows which exception is raised on mismatch * nimscript now handles `Exception as e` * remove catch-all doAssertRaises overload from this PR Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
* | fix #14157 (#15877)flywind2020-11-123-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | * fix #14157 * Update compiler/jsgen.nim * add changelog * Update compiler/jsgen.nim * Update tests/js/tmodify_cstring.nim Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
* | fix #12726 Cannot take the compile-time sizeof Atomic types (#15928)Bung2020-11-122-7/+26
| | | | | | | | | | * fix #12726 Cannot take the compile-time sizeof Atomic types * fix for arch 32
* | Fix 14127 js from int to int casting (#15918)Bung2020-11-112-2/+31
| | | | | | | | | | | | | | | | | | * fix #14127 from int to int casting * add test for #14127 * use template for test, also test uint2int * move to tests/types/t14127_cast_number.nim targets:c cpp js
* | nimdoc: items of ordered lists now have numbers instead of circlesnarimiran2020-11-111-1/+1
| |
* | remove `codeowners` [ci skip]narimiran2020-11-112-69/+1
| |