ObjFW  Timeline

66 check-ins related to "trunk" occurring on or before 2011-03-24 21:29:14.

More ↑
2011-03-24
21:29
Pass the parser for OFMalformedXMLExceptions. (check-in: 3a9a5001cf user: js tags: trunk)
21:17
Pass the stream for stream exceptions. (check-in: 7ced2e7b6a user: js tags: trunk)
20:36
Pass the socket for socket exceptions. (check-in: a8df2cff5f user: js tags: trunk)
19:42
Get rid of OFExceptions.h. (check-in: cda44767f4 user: js tags: trunk)
16:09
Split OFExceptions.{h,m} into one file per exception. (check-in: e1eea29286 user: js tags: trunk)
15:57
Update buildsys. (check-in: 571aeffd6c user: js tags: trunk)
2011-03-23
13:05
Use OF_INVALID_INDEX instead of SIZE_MAX. (check-in: a252dc5c69 user: js tags: trunk)
12:58
Make the return type of retainCount unsigned int.
This way, the OFObject protocol is compatible to NSObject.
(check-in: 8de8df50e9 user: js tags: trunk)
01:14
Work around GCC bugs. (check-in: 4444a8c246 user: js tags: trunk)
01:08
Check if -Wshorten-64-to-32 is available. (check-in: 04fa3f4371 user: js tags: trunk)
01:06
Make more use of the OFObject protocol. (check-in: 23acf38456 user: js tags: trunk)
00:19
Add new methods to OFString. (check-in: b682102c3d user: js tags: trunk)
2011-03-22
20:59
Remove OFFileTests as we don't use it anymore. (check-in: fe4cb7d169 user: js tags: trunk)
20:57
Rename remove to delete in OFMutableString. (check-in: c9e2f6b548 user: js tags: trunk)
20:57
Fix table generator. (check-in: 371086d5b9 user: js tags: trunk)
13:10
Move path methods from OFFile to OFString. (check-in: 67e7d1e222 user: js tags: trunk)
01:03
Clang is a bit more pedantic with -Wshorten-64-to-32. (check-in: b2c9efebcf user: js tags: trunk)
00:55
Add -Wshorten-64-to-32. (check-in: 6d4dfb5bc7 user: js tags: trunk)
2011-03-21
23:19
Add a real Xcode project which is not only using make. (check-in: accfa586da user: js tags: trunk)
22:33
Only use mach_alias_list on x86_64. (check-in: e03ab23de2 user: js tags: trunk)
21:33
Add missing files to Xcode project. (check-in: c5378ff224 user: js tags: trunk)
19:41
Improve namespace handling. (check-in: 5849b5aac8 user: js tags: trunk)
16:59
Update .hgignore for Xcode 4. (check-in: ea8c3f76f0 user: js tags: trunk)
16:39
Add a note about Xcode 4 to README. (check-in: eccad61ee2 user: js tags: trunk)
16:33
Get list of supported archs from Xcode. (check-in: 03ae88353e user: js tags: trunk)
14:38
Move a few methods to OFObject protocol. (check-in: 41cd31363f user: js tags: trunk)
14:21
It seems id is already defined by clang and newer GCCs.
This fixes the checks for clang.
(check-in: a77925dfb6 user: js tags: trunk)
13:26
Make use of optional protocols, if available. (check-in: 0c9206532f user: js tags: trunk)
12:47
Check whether optional protocols are supported. (check-in: 09a49963de user: js tags: trunk)
12:43
Don't depend on objc/objc.h for compiler checks. (check-in: 4c598e07ad user: js tags: trunk)
2011-03-17
20:33
Use Sleep(0) instead of yield() on Win32. (check-in: eb827e8f21 user: js tags: trunk)
2011-03-11
16:47
Get rid of warnings when using latest clang. (check-in: 36c4b260aa user: js tags: trunk)
16:44
Use a union instead of casting pointers in OF{MD5,SHA1}Hash. (check-in: 1d7ed6556d user: js tags: trunk)
13:16
Don't test OFHTTPRequest if we have no threads. (check-in: 80b8456b4b user: js tags: trunk)
13:02
Make it easier to generate getters and setters. (check-in: 2c72efb4e7 user: js tags: trunk)
12:29
Create an autorelease pool before calling blocks. (check-in: 44f8152a03 user: js tags: trunk)
12:15
Implement conditions for win32. (check-in: b5e6a49dca user: js tags: trunk)
2011-03-10
20:34
Improve namespace handling. (check-in: a95ca84f7e user: js tags: trunk)
19:54
Call C++ constructors and destructors. (check-in: 894658f979 user: js tags: trunk)
2011-03-07
16:03
Add tests for OFHTTPRequest. (check-in: 3c4ae255a2 user: js tags: trunk)
16:00
Add class OFCondition. (check-in: 615eb3e46b user: js tags: trunk)
15:39
Add abstraction for conditions. (check-in: f771ddda2d user: js tags: trunk)
13:43
Throw an exception when trying to deallocate a locked mutex. (check-in: f5515b0a1f user: js tags: trunk)
2011-02-27
14:40
OFPlugin: Don't close the handle before calling [super dealloc]. (check-in: 9b88ee6978 user: js tags: trunk)
02:11
Don't call an OFTLSKey destructor if it is NULL. (check-in: 1fe847a754 user: js tags: trunk)
00:35
Rename -[result] to -[perform] in OFHTTPRequest. (check-in: 53213f1d41 user: js tags: trunk)
00:09
OFURL: Include the / in the path for http(s). (check-in: 3d041cd4bf user: js tags: trunk)
2011-02-26
19:40
Use class swizzling as an optimization. (check-in: 06f539766f user: js tags: trunk)
19:00
Make isa public to allow for better class swizzling. (check-in: 58c07e80e4 user: js tags: trunk)
14:27
of_std{in,out,err} don't support seeking. (check-in: 9160269d5f user: js tags: trunk)
14:23
Clean up exception descriptions a little. (check-in: 29e981d99a user: js tags: trunk)
2011-02-25
16:05
OFHTTPRequest: Send a proper request in case path is nil. (check-in: 7b6a706687 user: js tags: trunk)
15:22
Fix a stupid bug in OFHTTPRequest. (check-in: 70e1297f87 user: js tags: trunk)
12:14
OFHTTPRequest: Check Content-Length if present to check for truncation. (check-in: 9e647a2ddd user: js tags: trunk)
12:02
OFHTTPRequest: Work around a bug in lighttpd with HTTPS. (check-in: 73c723bf39 user: js tags: trunk)
2011-02-24
18:27
Make it possible to specify a TLS socket class for OFHTTPRequest. (check-in: c64d88f50f user: js tags: trunk)
2011-02-19
20:30
Fix a sign issue in base64. (check-in: 4d44bbf586 user: js tags: trunk)
16:08
Add -[elementsForName:namespace:] to OFXMLElement. (check-in: 8732769f4c user: js tags: trunk)
15:06
OFXMLElement improvements. (check-in: 2086095795 user: js tags: trunk)
13:14
of_asprintf: Use format even if object is nil. (check-in: 5fdaa5b909 user: js tags: trunk)
2011-02-17
19:56
Add +[digestSize] and +[blockSize] to OFHash. (check-in: 275744ecd3 user: js tags: trunk)
18:29
Add -[stringWithContentsOfURL:encoding:]. (check-in: d932adccc3 user: js tags: trunk)
17:23
Add support for file:// to OFURL. (check-in: 245f519a50 user: js tags: trunk)
17:12
Add more -W flags. (check-in: 797e00a919 user: js tags: trunk)
2011-02-10
22:32
Oops. Broke the check for asprintf. Fixed. (check-in: 37e4b2edc0 user: js tags: trunk)
22:07
Fix a typo in tests. (check-in: 7d4f42ca34 user: js tags: trunk)
More ↓