summary refs log tree commit diff stats
Commit message (Expand)AuthorAgeFilesLines
...
* | | Constants can contain objects (excluding object variants)Daniil Yarancev2017-10-161-1/+1
* | | make tests green againAndreas Rumpf2017-10-164-9/+14
* | | fixes the Windows buildAndreas Rumpf2017-10-161-4/+6
* | | Merge pull request #6491 from indianpojken/patch-1Dominik Picheta2017-10-161-0/+32
|\ \ \
| * | | Update streams.nimindianpojken2017-10-161-8/+8
| * | | Adds uintX variants to read/peek procsindianpojken2017-10-091-0/+32
* | | | fixes #1137Andreas Rumpf2017-10-162-12/+28
* | | | todo.txt updatesAndreas Rumpf2017-10-161-3/+0
* | | | Merge pull request #6495 from GULPF/Fix-countLeapYearsDominik Picheta2017-10-162-1/+7
|\ \ \ \
| * | | | Fix countLeapYearsOscar NihlgÄrd2017-10-102-1/+7
* | | | | Refac of lists module (#6400)GULPF2017-10-161-105/+32
* | | | | Add hint about computing powers between integers (#6419)Federico Ceratto2017-10-161-0/+2
* | | | | fixes #5007Araq2017-10-161-5/+19
* | | | | Add a test-case for #1641Daniil Yarancev2017-10-161-0/+20
* | | | | fixes #5143Araq2017-10-162-4/+4
* | | | | fixes #3558Araq2017-10-162-15/+17
* | | | | fixes #6511Araq2017-10-161-7/+0
* | | | | documentation: add 'sexp' moduleAraq2017-10-161-1/+1
* | | | | minor update of the manualAraq2017-10-161-3/+3
* | | | | some progress on the nimpretty tool; still not readyAraq2017-10-164-17/+79
* | | | | fixes an off-by-one error for nimprettyAraq2017-10-161-1/+1
* | | | | closes #5070Andreas Rumpf2017-10-153-23/+14
* | | | | fixes #6496Andreas Rumpf2017-10-151-1/+1
* | | | | Update json.nim (#6513)Daniil Yarancev2017-10-151-3/+9
* | | | | Little spelling fix in unicode moduleDominik Picheta2017-10-151-1/+1
* | | | | make tests green againAndreas Rumpf2017-10-152-1/+2
* | | | | make nnkGotoState and labels more flexibleAndreas Rumpf2017-10-151-5/+11
* | | | | make httpclient compile again via a workaroundAraq2017-10-151-2/+5
* | | | | fixes #4910Araq2017-10-142-4/+15
* | | | | fixes #5620Araq2017-10-142-12/+15
* | | | | fixes #6487Araq2017-10-141-10/+22
* | | | | minor refactorings for better destructorsAndreas Rumpf2017-10-147-17/+51
* | | | | improve code generation for custom strings/seqsAndreas Rumpf2017-10-142-4/+4
* | | | | Merge pull request #6504 from Yardanico/patch-8Dominik Picheta2017-10-145-151/+25
|\ \ \ \ \
| * | | | | @dom96's comments: remove bountysource, revert configurator change.Daniil Yarancev2017-10-143-142/+1
| * | | | | [JSON] getBVal -> getBool; getFNum -> getFloatDaniil Yarancev2017-10-145-15/+30
* | | | | | Fixes req w/ both Content-Length & Connection: close headers.Dominik Picheta2017-10-131-4/+18
|/ / / / /
* | | | | Fixes issues with URI concatenation when URI has no path.Dominik Picheta2017-10-131-2/+11
* | | | | new destroyer pass works with procs tooAndreas Rumpf2017-10-134-9/+11
* | | | | added a test case for --newruntimeAndreas Rumpf2017-10-131-0/+97
* | | | | introduce --newruntime switch for the upcoming destructors and move semanticsAndreas Rumpf2017-10-136-11/+19
* | | | | simple programs now work with the new destroyer passAndreas Rumpf2017-10-124-56/+60
* | | | | code cleanups for the upcoming reworked destructorsAndreas Rumpf2017-10-123-64/+6
* | | | | make threadpool care about minPoolSizeAndreas Rumpf2017-10-121-0/+10
* | | | | initial version of the new untested destructor passAndreas Rumpf2017-10-128-121/+178
* | | | | do not produce the annoying small 'l' warningAndreas Rumpf2017-10-101-7/+1
|/ / / /
* | | | fixes #6474Andreas Rumpf2017-10-101-1/+1
* | | | Merge branch 'araq-stringify-array' into develAndreas Rumpf2017-10-1024-130/+247
|\ \ \ \
| * | | | some progress on destroyer.nimAndreas Rumpf2017-10-102-2/+58
| * | | | another attempt to make tests green againAndreas Rumpf2017-10-101-3/+3
c75d8b6d0ba'>^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164