ObjFW  History of src/OFObject+Serialization.m of c1c9443c1a681203

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

2023-07-15
20:57
Deleted: Merge trunk into branch "amiga-library" (check-in: [860b0bf1e9] user: js, branch: amiga-library, size: 0)
2023-04-10
19:22
Deleted: Remove OFSerialization

While the idea sounds nice that the tag name is the class, this means the
serialization includes whether something is mutable or immutable. This means
doing as much as making something immutable changes the serialization, which
can then cause issues after being deserialized. (check-in: [6ce0093f8d] user: js, branch: trunk, size: 0)

2023-01-06
09:04
[da843a6733] part of check-in [8939cbdb52] Update copyright (check-in: [8939cbdb52] user: js, branch: trunk, size: 1495) [annotate] [blame] [check-ins using] [diff]
2022-02-12
07:46
[0bfdaef011] part of check-in [1a86b8175b] Update copyright (check-in: [1a86b8175b] user: js, branch: trunk, size: 1495) [annotate] [blame] [check-ins using] [diff]
2021-04-19
21:54
[4ae1aec1cc] part of check-in [458420998c] Rename a few more constants (check-in: [458420998c] user: js, branch: new-naming-convention, size: 1495) [annotate] [blame] [check-ins using] [diff]
2021-03-07
20:25
[fe39eedbf9] part of check-in [1b82d3bf4f] *.m: Fold methods into one line where it fits (check-in: [1b82d3bf4f] user: js, branch: trunk, size: 1497) [annotate] [blame] [check-ins using] [diff]
2021-01-02
22:04
[fe806a8af4] part of check-in [374e1a1bfa] Update copyright (check-in: [374e1a1bfa] user: js, branch: trunk, size: 1506) [annotate] [blame] [check-ins using] [diff]
2020-01-02
01:51
[bd3824da74] part of check-in [c7f0229795] Update copyright (check-in: [c7f0229795] user: js, branch: trunk, size: 1595) [annotate] [blame] [check-ins using] [diff]
2019-03-08
00:35
[1406fa2657] part of check-in [bceb7ed4c9] Use dot syntax (check-in: [bceb7ed4c9] user: js, branch: trunk, size: 1592) [annotate] [blame] [check-ins using] [diff]
2019-01-03
19:13
[b584ed859f] part of check-in [0509d7a844] Update copyright (check-in: [0509d7a844] user: js, branch: trunk, size: 1574) [annotate] [blame] [check-ins using] [diff]
2018-01-03
19:49
[60426f7ebc] part of check-in [7e5c81e186] Update copyright notice (check-in: [7e5c81e186] user: js, branch: trunk, size: 1568) [annotate] [blame] [check-ins using] [diff]
2017-05-07
20:10
[7c7cd74965] part of check-in [4af49a13c3] Small code style change

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

2017-01-09
17:36
[2df11c40e9] part of check-in [44f45c2e35] Update copyright

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

2016-01-03
00:41
[6a3c9323c9] part of check-in [2a27cf3000] Update copyright

While at it, also update the mail address. (check-in: [2a27cf3000] user: js, branch: trunk, size: 1538) [annotate] [blame] [check-ins using] [diff]

2015-01-03
20:57
[675893afd2] part of check-in [cfd374b906] Update copyright (check-in: [cfd374b906] user: js, branch: trunk, size: 1534) [annotate] [blame] [check-ins using] [diff]
2014-06-21
21:43
[16211d6d3b] part of check-in [13ee56edf3] Move all macros from OFObject.h to macros.h

This means that OFObject.h imports macros.h now, making it unnecessary
to manually import macros.h in almost every file. And while at it, also
import autorelease.h in OFObject.h, so that this doesn't need to be
manually imported in almost every file as well. (check-in: [13ee56edf3] user: js, branch: trunk, size: 1528) [annotate] [blame] [check-ins using] [diff]

2014-01-04
00:24
[dd2ecc566b] part of check-in [3b97fc3cd9] Update copyright. (check-in: [3b97fc3cd9] user: js, branch: trunk, size: 1553) [annotate] [blame] [check-ins using] [diff]
2013-01-09
22:24
[1da8a17d80] part of check-in [813c00ccf0] Update copyright. (check-in: [813c00ccf0] user: js, branch: trunk, size: 1547) [annotate] [blame] [check-ins using] [diff]
2012-12-22
15:37
[15c867dc7d] part of check-in [917ce5754c] Add -[doesNotRecognizeSelector:]. (check-in: [917ce5754c] user: js, branch: trunk, size: 1541) [annotate] [blame] [check-ins using] [diff]
2012-08-10
20:08
[c7f6b6d6fd] part of check-in [1255f3a11a] Directly use the runtime's autorelease pools.

This greatly improves performance, as it gets rid of the overhead of
OFAutoreleasePool. (check-in: [1255f3a11a] user: js, branch: trunk, size: 1629) [annotate] [blame] [check-ins using] [diff]

2012-07-31
12:05
[d27599f768] part of check-in [a6ee2b2065] Slightly changed serialization format.

printf's %a was too fragile to serialize floats and doubles, as it was
behaving differently on different OSes and OS versions. Instead, a hex
representation of the float/double in big endian is used now. While this
is less readable, it is guaranteed to be accurate and always the same. (check-in: [a6ee2b2065] user: js, branch: trunk, size: 1643) [annotate] [blame] [check-ins using] [diff]

2012-07-12
01:28
[012cfeffa7] part of check-in [8892ae9fcc] Don't access isa directly. (check-in: [8892ae9fcc] user: js, branch: trunk, size: 1643) [annotate] [blame] [check-ins using] [diff]
2012-01-05
00:56
[d3f96b9582] part of check-in [ce70e17b38] Update copyright. (check-in: [ce70e17b38] user: js, branch: trunk, size: 1634) [annotate] [blame] [check-ins using] [diff]
2011-09-22
23:25
[f21298cd9d] part of check-in [e1e7ffa903] Exceptions are now autoreleased.

This is safe as an "exception loop" can't happen, since if allocating
an exception fails, it throws an OFAllocFailedException which is
preallocated and can always be thrown.

So, the worst case would be that an autorelease of an exception fails,
triggering an OFOutOfMemoryException for which there is no memory,
resulting in an OFAllocFailedException to be thrown. (check-in: [e1e7ffa903] user: js, branch: trunk, size: 1628) [annotate] [blame] [check-ins using] [diff]

2011-09-09
13:35
[914b1a9829] part of check-in [798d9e6320] [pool release] can never throw by convention now. (check-in: [798d9e6320] user: js, branch: trunk, size: 1616) [annotate] [blame] [check-ins using] [diff]
2011-06-28
01:51
[dc7ca94ebf] part of check-in [756bb26c98] Change serialization format to be way more readable and shorter. (check-in: [756bb26c98] user: js, branch: trunk, size: 1643) [annotate] [blame] [check-ins using] [diff]
2011-06-05
23:59
[3d621a2dfd] part of check-in [14991e7035] Add -[XMLStringWithIndentation:] to OFXMLElement. (check-in: [14991e7035] user: js, branch: trunk, size: 1589) [annotate] [blame] [check-ins using] [diff]
22:26
Added: [8fb7c383c5] part of check-in [29988c434b] Nicer API for serialization. (check-in: [29988c434b] user: js, branch: trunk, size: 1571) [annotate] [blame] [check-ins using]