ObjFW  History of src/OFObject+KeyValueCoding.m of c7f0229795431423

History of the file that is called src/OFObject+KeyValueCoding.m at check-in c7f0229795431423

2024-01-02
17:17
Update copyright file: [0a5cddfb6b] check-in: [26ddd2e4e4] user: js, branch: trunk, size: 6690 [annotate] [blame] [check-ins using] [diff]
2023-01-06
09:04
Update copyright file: [d69b59ff71] check-in: [8939cbdb52] user: js, branch: trunk, size: 6690 [annotate] [blame] [check-ins using] [diff]
2022-02-12
07:46
Update copyright file: [8a83d2aa9e] check-in: [1a86b8175b] user: js, branch: trunk, size: 6690 [annotate] [blame] [check-ins using] [diff]
2021-04-18
15:55
Rename all functions in macros.h file: [3bfea8ea41] check-in: [7392685ffc] user: js, branch: new-naming-convention, size: 6690 [annotate] [blame] [check-ins using] [diff]
2021-04-17
22:45
Rename of_(re)alloc and add OFFreeMemory file: [3a5b5d8495] check-in: [498074dab9] user: js, branch: new-naming-convention, size: 6694 [annotate] [blame] [check-ins using] [diff]
2021-03-07
20:25
*.m: Fold methods into one line where it fits file: [9c33438270] check-in: [1b82d3bf4f] user: js, branch: trunk, size: 6668 [annotate] [blame] [check-ins using] [diff]
2021-01-02
22:04
Update copyright file: [2a9a3f450d] check-in: [374e1a1bfa] user: js, branch: trunk, size: 6719 [annotate] [blame] [check-ins using] [diff]
2020-11-14
12:23
Rename of_malloc and of_calloc

The new names should be more accurate. file: [8a9fc8e1ab] check-in: [627511b032] user: js, branch: trunk, size: 6808 [annotate] [blame] [check-ins using] [diff]

2020-11-05
00:24
Avoid -[allocMemoryWithSize:] for temporary memory

-[allocMemoryWithSize:] has book keeping overhead that is unnecessary
for temporary memory. file: [060fc086b7] check-in: [0ddaac3f5b] user: js, branch: trunk, size: 6810 [annotate] [blame] [check-ins using] [diff]

2020-11-04
23:18
Remove of_free()

While it makes sense to wrap malloc and calloc to replace the error
checking with exceptions, it does not make sense to wrap free. file: [b5a33b9502] check-in: [3d8286feee] user: js, branch: trunk, size: 6810 [annotate] [blame] [check-ins using] [diff]

2020-10-25
23:33
Add of_{malloc,calloc,realloc,free} file: [907d6adb03] check-in: [d0ae3bfd6c] user: js, branch: trunk, size: 6816 [annotate] [blame] [check-ins using] [diff]
2020-01-02
01:51
Update copyright file: [4f60753bfd] check-in: [c7f0229795] user: js, branch: trunk, size: 6996 [annotate] [blame] [check-ins using] [diff]
2019-03-23
22:03
Add -[valueForKeyPath:] / -[setValue:forKeyPath:] file: [3ce407bdca] check-in: [d7824704f9] user: js, branch: trunk, size: 6993 [annotate] [blame] [check-ins using] [diff]
2019-03-08
00:35
Use dot syntax file: [96857463c3] check-in: [bceb7ed4c9] user: js, branch: trunk, size: 5758 [annotate] [blame] [check-ins using] [diff]
2019-01-03
19:13
Update copyright file: [06ea9a409d] check-in: [0509d7a844] user: js, branch: trunk, size: 5778 [annotate] [blame] [check-ins using] [diff]
2018-01-03
19:49
Update copyright notice file: [7f26d841ab] check-in: [7e5c81e186] user: js, branch: trunk, size: 5772 [annotate] [blame] [check-ins using] [diff]
2017-09-09
22:03
Replace type encodings with OFMethodSignature file: [621aa06394] check-in: [55f1b21ae7] user: js, branch: trunk, size: 5749 [annotate] [blame] [check-ins using] [diff]
2017-05-07
20:10
Small code style change

Casts are now written like types in variable declarations. file: [30955b0805] check-in: [4af49a13c3] user: js, branch: trunk, size: 5677 [annotate] [blame] [check-ins using] [diff]

2017-05-06
19:43
Clean up a few includes file: [d4b85d6121] check-in: [cca678886f] user: js, branch: trunk, size: 5669 [annotate] [blame] [check-ins using] [diff]
2017-01-09
17:36
Update copyright

Forgot to add 2017, even though I already did quite some changes in
2017. file: [7c631f6ecd] check-in: [44f45c2e35] user: js, branch: trunk, size: 5688 [annotate] [blame] [check-ins using] [diff]

2017-01-07
00:37
Add of_ascii_{to{upper,lower},is{alpha,alnum}}

These are independent of the locale and work on the ASCII character set.

Unlike the C ones, these are 8-bit safe, meaning if a character > 0x7F
is passed, is{alpha,alnum} returns false and to{upper,lower} returns the
original character. file: [3802a76383] check-in: [d9eb7b50b3] user: js, branch: trunk, size: 5682 [annotate] [blame] [check-ins using] [diff]

2016-06-05
21:17
Always cast to unsigned char for to{upper,lower}()

This is required as passing something signed to it is an error on
NetBSD, but passing anything else than a char is undefined on Linux. file: [3eca7b4ec4] check-in: [09a0d12bae] user: js, branch: trunk, size: 5694 [annotate] [blame] [check-ins using] [diff]

16:04
Key Value Coding: Make sure free is always called

In theory, if -[UTF8String] would throw, this could leak. file: [6d4c66aa16] check-in: [49ed0fa5ec] user: js, branch: trunk, size: 5664 [annotate] [blame] [check-ins using] [diff]

16:00
Key Value Coding: Add fallback to isFoo file: [f4fafd457a] check-in: [10fbb20fd6] user: js, branch: trunk, size: 5601 [annotate] [blame] [check-ins using] [diff]
15:51
Key Value Coding: Add -[setNilValueForKey:] file: [08642a6afa] check-in: [7bb4cae9db] user: js, branch: trunk, size: 5004 [annotate] [blame] [check-ins using] [diff]
14:07
Key Value Coding: Handle classes like objects file: [a1b8c4dfd4] check-in: [6fc7fddef1] user: js, branch: trunk, size: 4762 [annotate] [blame] [check-ins using] [diff]
13:41
Key Value Coding: Check type encoding for NULL file: [b460000a1a] check-in: [b1ef40944b] user: js, branch: trunk, size: 4740 [annotate] [blame] [check-ins using] [diff]
13:18
Key Value Coding: Implement auto-wrapping file: [8b1cd7f8e8] check-in: [6a92704355] user: js, branch: trunk, size: 4645 [annotate] [blame] [check-ins using] [diff]
00:01
Added: Add OFKeyValueCoding

No support for paths and auto-wrapping yet.

Also, no classes like OFDictionary override it yet. file: [76ddc597a2] check-in: [3ad1f2b268] user: js, branch: trunk, size: 2931 [annotate] [blame] [check-ins using]