summary refs log tree commit diff stats
path: root/lib/pure/os.nim
Commit message (Collapse)AuthorAgeFilesLines
* bugfix: proper cache for generic instantiationsAraq2011-07-211-77/+1
|
* deprecated system.copy: use system.substr insteadAraq2011-05-141-17/+17
|
* bugfix: don't change OSError()'s behaviourAraq2011-05-081-10/+7
|
* select() for processes; copyDir() for os.dom962011-05-071-13/+33
|
* little repo cleanupAraq2011-05-021-1/+1
|
* p[] instead of p^Araq2011-04-111-1/+1
|
* ugh, maybe broke gitAraq2011-04-011-0/+6
|
* some little bugfixesAraq2011-03-271-2/+5
|
* bugfixes; field discriminant checks; linearScanEnd, unroll, shallow pragmasAraq2011-03-231-2/+2
|
* fixes #17; I hope!Araq2011-03-081-4/+17
|
* documentation improvementsAraq2011-02-061-11/+13
|
* nimgrep --ext supportAraq2011-02-021-3/+15
|
* unary <; countup two type parameters; --recursivePath should work nowAraq2011-01-291-1/+2
|
* added os.findExeAraq2010-10-311-0/+13
|
* proper parameter order for os.copyFile/os.moveFileAraq2010-09-211-6/+2
|
* inlining of the write barrier for dllsAndreas Rumpf2010-08-081-59/+75
|
* explicit types for generic routinesAndreas Rumpf2010-05-281-3/+4
|
* crc check for external files to compile; bugfix: os.parseCmdLineAndreas Rumpf2010-04-051-15/+77
|
* version 0.8.8Andreas Rumpf2010-03-141-5/+6
|
* fixed colors moduleAndreas Rumpf2010-03-021-0/+15
|
* fixed pango/pangoutils new wrappersAndreas Rumpf2010-02-261-0/+0
|
* bugfixes for unicode; xmlparser; htmlparser; scannerrumpf_a@web.de2010-02-201-3/+7
|
* continued work on html/xmlparserrumpf_a@web.de2010-02-141-9/+0
|
* support for .. raw:: html for the docgenAndreas Rumpf2010-02-071-1/+1
|
* sockets module completeAndreas Rumpf2010-01-131-1/+1
|
* better subscript overloadingrumpf_a@web.de2010-01-031-10/+11
|
* version 0.8.5: bugfixes; compiler now maintained in NimrodAndreas Rumpf2009-12-071-2/+3
|
* bugfixes: macros; splitFile; strutils.split; iterator.methodrumpf_a@web.de2009-10-271-13/+17
|
* version 0.8.2rumpf_a@web.de2009-10-211-9/+45
|
* implemented multi methodsAndreas Rumpf2009-09-231-33/+94
|
* added tools and web dirsAndreas Rumpf2009-09-151-10/+6
|
* overload resolution for proc varsAndreas Rumpf2009-06-241-11/+11
|
* version0.7.10Andreas Rumpf2009-06-081-0/+1049
=hlt&id=bbe7cd53cb37e5d318c87626a0169987c3841e88'>^
414d9413 ^
96b2216b ^

fd7198b2 ^
96b2216b ^


708eae31 ^
9527eda9 ^
96b2216b ^
9527eda9 ^
708eae31 ^
6602c82f ^
9527eda9 ^
630433cd ^
9527eda9 ^
a1305217 ^
6602c82f ^

708eae31 ^
f1b3d7b9 ^


a413105a ^
630433cd ^
f1b3d7b9 ^
a413105a ^
a413105a ^
f1b3d7b9 ^
9527eda9 ^
f1b3d7b9 ^

4a99a6e0 ^
f1b3d7b9 ^

a413105a ^
f1b3d7b9 ^



6362c51d ^



9ad81331 ^
6362c51d ^
c442a5ad ^

f1b3d7b9 ^
708eae31 ^

9527eda9 ^
96b2216b ^
fd7198b2 ^
96b2216b ^
fd7198b2 ^
96b2216b ^



414d9413 ^
96b2216b ^



630433cd ^
96b2216b ^

414d9413 ^
4a99a6e0 ^

630433cd ^

fd7198b2 ^
630433cd ^

9527eda9 ^

665a4d70 ^
9527eda9 ^

630433cd ^
96b2216b ^


1f4d0aaf ^
fbc21293 ^
44fdc79f ^






6f6d458f ^




c88b9e31 ^

e5998f74 ^

1f4d0aaf ^
e0a0484c ^
e5998f74 ^
c442a5ad ^
e0a0484c ^
7a22a219 ^

e0a0484c ^
7a22a219 ^
e0a0484c ^

708eae31 ^



96b2216b ^



414d9413 ^


1a33d221 ^
708eae31 ^
cd23c8b6 ^
414d9413 ^


2097401c ^
708eae31 ^


708eae31 ^
087a998e ^
a066ad7e ^
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193