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

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

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
Update copyright file: [da843a6733] check-in: [8939cbdb52] user: js, branch: trunk, size: 1495 [annotate] [blame] [check-ins using] [diff]
2022-02-12
07:46
Update copyright file: [0bfdaef011] check-in: [1a86b8175b] user: js, branch: trunk, size: 1495 [annotate] [blame] [check-ins using] [diff]
2021-04-19
21:54
Rename a few more constants file: [4ae1aec1cc] check-in: [458420998c] user: js, branch: new-naming-convention, size: 1495 [annotate] [blame] [check-ins using] [diff]
2021-03-07
20:25
*.m: Fold methods into one line where it fits file: [fe39eedbf9] check-in: [1b82d3bf4f] user: js, branch: trunk, size: 1497 [annotate] [blame] [check-ins using] [diff]
2021-01-02
22:04
Update copyright file: [fe806a8af4] check-in: [374e1a1bfa] user: js, branch: trunk, size: 1506 [annotate] [blame] [check-ins using] [diff]
2020-01-02
01:51
Update copyright file: [bd3824da74] check-in: [c7f0229795] user: js, branch: trunk, size: 1595 [annotate] [blame] [check-ins using] [diff]
2019-03-08
00:35
Use dot syntax file: [1406fa2657] check-in: [bceb7ed4c9] user: js, branch: trunk, size: 1592 [annotate] [blame] [check-ins using] [diff]
2019-01-03
19:13
Update copyright file: [b584ed859f] check-in: [0509d7a844] user: js, branch: trunk, size: 1574 [annotate] [blame] [check-ins using] [diff]
2018-01-03
19:49
Update copyright notice file: [60426f7ebc] check-in: [7e5c81e186] user: js, branch: trunk, size: 1568 [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: [7c7cd74965] check-in: [4af49a13c3] user: js, branch: trunk, size: 1545 [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: [2df11c40e9] check-in: [44f45c2e35] user: js, branch: trunk, size: 1544 [annotate] [blame] [check-ins using] [diff]

2016-01-03
00:41
Update copyright

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

2015-01-03
20:57
Update copyright file: [675893afd2] check-in: [cfd374b906] user: js, branch: trunk, size: 1534 [annotate] [blame] [check-ins using] [diff]
2014-06-21
21:43
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. file: [16211d6d3b] check-in: [13ee56edf3] user: js, branch: trunk, size: 1528 [annotate] [blame] [check-ins using] [diff]

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

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

2012-07-31
12:05
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. file: [d27599f768] check-in: [a6ee2b2065] user: js, branch: trunk, size: 1643 [annotate] [blame] [check-ins using] [diff]

2012-07-12
01:28
Don't access isa directly. file: [012cfeffa7] check-in: [8892ae9fcc] user: js, branch: trunk, size: 1643 [annotate] [blame] [check-ins using] [diff]
2012-01-05
00:56
Update copyright. file: [d3f96b9582] check-in: [ce70e17b38] user: js, branch: trunk, size: 1634 [annotate] [blame] [check-ins using] [diff]
2011-09-22
23:25
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. file: [f21298cd9d] check-in: [e1e7ffa903] user: js, branch: trunk, size: 1628 [annotate] [blame] [check-ins using] [diff]

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