Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | unittest module works again | Araq | 2014-01-18 | 1 | -19/+0 |
| | |||||
* | case consistency: next steps | Araq | 2013-12-29 | 1 | -14/+14 |
| | |||||
* | case consistency part 4 | Araq | 2013-12-27 | 1 | -60/+60 |
| | |||||
* | case consistency part 2 | Araq | 2013-12-27 | 1 | -1/+1 |
| | |||||
* | case consistency part 1 | Araq | 2013-12-27 | 1 | -88/+96 |
| | |||||
* | Further fixes (stupid kdiff automerge) | Clay Sweetser | 2013-12-18 | 1 | -11/+19 |
| | |||||
* | Revert "removed windows". Refs #698. | Grzegorz Adam Hankiewicz | 2013-12-09 | 7 | -0/+28198 |
| | | | | This reverts commit 5ab3d661440f42f0dc74970ec73a051dd2e2bfb5. | ||||
* | removed windows | fowlmouth | 2013-12-03 | 7 | -28198/+0 |
| | |||||
* | Implemented boolean socket options. | Dominik Picheta | 2013-10-30 | 1 | -0/+13 |
| | | | | Added reuseAddr for httpserver and scgi. | ||||
* | Fixed sockets on Win32. | Dominik Picheta | 2013-10-23 | 1 | -6/+2 |
| | |||||
* | Fixed socket compilation problems on Windows. | Dominik Picheta | 2013-10-23 | 1 | -8/+8 |
| | |||||
* | Made TSocketHandle distinct and fixed problems it caused for SSL. | Dominik Picheta | 2013-10-23 | 1 | -2/+10 |
| | |||||
* | Added a TSocketHandle type to winlean.nim and posix.nim | Clay Sweetser | 2013-10-15 | 1 | -19/+19 |
| | | | | Edited sockets.nim and asyncio.nim to use the new TSocketHandle type. | ||||
* | Deprecated OSError, and modified it to require an explicit OS error code. | Dominik Picheta | 2013-06-25 | 1 | -1/+1 |
| | | | | 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. | ||||
* | GC'ed wide strings for windows | Araq | 2013-05-20 | 1 | -1/+3 |
| | |||||
* | Removes executable bit for text files. | Grzegorz Adam Hankiewicz | 2013-03-16 | 8 | -0/+0 |
| | |||||
* | bugfix: typo in unsigned.nim; fixes #234 | Araq | 2012-10-20 | 1 | -0/+1 |
| | |||||
* | Sockets module should compile again on Windows. Fixed asyncio not compiling. | Dominik Picheta | 2012-08-12 | 1 | -3/+3 |
| | |||||
* | Some improvements to the sockets module. | Dominik Picheta | 2012-07-25 | 1 | -6/+6 |
| | |||||
* | Many fixes for asynchronous sockets. Asyncio should now work well with ↵ | Dominik Picheta | 2012-07-22 | 1 | -8/+8 |
| | | | | | | buffered and unbuffered plain and ssl sockets. Added asyncio test to the test suite. | ||||
* | make tests green again | Araq | 2012-07-17 | 1 | -1/+1 |
| | |||||
* | made tests green again | Araq | 2012-07-09 | 2 | -2/+2 |
| | |||||
* | changed integer promotion rules; breaks bootstrapping and lots of code | Araq | 2012-07-08 | 1 | -49/+49 |
| | |||||
* | fixes #150; next steps for proper unsigned support | Araq | 2012-07-03 | 2 | -2/+2 |
| | |||||
* | fixes #142 | Araq | 2012-06-20 | 1 | -1/+1 |
| | |||||
* | more uint related fixes | Zahary Karadjov | 2012-06-14 | 1 | -9/+4 |
| | |||||
* | made tests green again | Araq | 2012-05-11 | 1 | -2/+2 |
| | |||||
* | added new OpenGL wrapper | Araq | 2012-04-04 | 1 | -0/+2 |
| | |||||
* | win64 is a supported target; bugfix: nimrod c -r on windows; stdlib uses ↵ | Araq | 2012-03-04 | 1 | -63/+165 |
| | | | | wide char versions of the WinAPI | ||||
* | Added asyncio module; irc, scgi and the ftpclient modules work with it. ↵ | dom96 | 2012-01-22 | 1 | -1/+3 |
| | | | | Added (de)allocCStringArray. Many async sockets fixes. | ||||
* | windows module should now compile for all CPUs | Araq | 2011-12-31 | 1 | -2/+16 |
| | |||||
* | fixed some recently introduced compilation errors in the standard library | Zahary Karadjov | 2011-12-13 | 1 | -1/+1 |
| | |||||
* | windows.nim compiles again | Zahary Karadjov | 2011-12-13 | 1 | -764/+764 |
| | |||||
* | New implementation for os.sameFile on Windows | Zahary Karadjov | 2011-12-07 | 1 | -9/+31 |
| | | | | | | Hard-links on Windows are now treated just as they are on POSIX. The new implementation is faster than the previous, but still it's quite slower than fstat (use with caution). | ||||
* | memfiles now uses winlean; changed the interface to raise EOS | Araq | 2011-11-05 | 1 | -2/+58 |
| | |||||
* | logical typo in the previous commit | Zahary Karadjov | 2011-11-04 | 1 | -3/+3 |
| | |||||
* | memory-mapped files for posix and windows | Zahary Karadjov | 2011-11-04 | 1 | -0/+3 |
| | |||||
* | libuv working on windows too | Zahary Karadjov | 2011-10-12 | 1 | -7/+7 |
| | | | | Added: vcc compilation flags for proper debug symbol generation | ||||
* | select() for processes; copyDir() for os. | dom96 | 2011-05-07 | 2 | -3/+18 |
| | |||||
* | The sockets module supports non-blocking sockets now. Many other fixes in ↵ | dom96 | 2011-04-30 | 1 | -2/+11 |
| | | | | sockets. Timeout support in scgi. | ||||
* | more fixes for dy(n)lib typo; fixes #15 | Araq | 2011-03-08 | 1 | -43/+43 |
| | |||||
* | version 0.8.10 | Araq | 2010-10-21 | 2 | -2/+1 |
| | |||||
* | windows.nim compiles again; thanks for fucking it up | Andreas Rumpf | 2010-08-12 | 1 | -191/+87 |
| | |||||
* | bugfix: exception handling (still not correct) | Andreas Rumpf | 2010-06-04 | 2 | -0/+3 |
| | |||||
* | psapi cleanup | Andreas Rumpf | 2010-05-29 | 1 | -40/+45 |
| | |||||
* | Integrating my changes, mostly minor/cosmetic fixes; plus a big Windows lib ↵ | PhiLho | 2010-05-21 | 2 | -23776/+24233 |
| | | | | update | ||||
* | fixed pango/pangoutils new wrappers | Andreas Rumpf | 2010-02-26 | 7 | -0/+0 |
| | |||||
* | development of graphics module | Andreas Rumpf | 2010-02-19 | 1 | -0/+3 |
| | |||||
* | continued work on html/xmlparser | rumpf_a@web.de | 2010-02-14 | 7 | -0/+8 |
| | |||||
* | wrappers do not contain invalid identifiers | Andreas Rumpf | 2010-01-17 | 1 | -7/+10 |
| |