ObjFW  History of src/OFString+Serialization.m of c7f0229795431423

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

2023-07-20
20:02
Deleted: Merge trunk into 1.0 branch check-in: [124fe8b500] user: js, branch: 1.0, size: 0
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: [814c47790a] check-in: [8939cbdb52] user: js, branch: trunk, size: 1663 [annotate] [blame] [check-ins using] [diff]
2022-10-21
13:07
Document more exceptions file: [a02a87cd97] check-in: [a62b254fda] user: js, branch: trunk, size: 1663 [annotate] [blame] [check-ins using] [diff]
2022-02-12
07:46
Update copyright file: [feafb9e064] check-in: [1a86b8175b] user: js, branch: trunk, size: 1859 [annotate] [blame] [check-ins using] [diff]
2021-04-19
21:54
Rename a few more constants file: [8e1b78d5c6] check-in: [458420998c] user: js, branch: new-naming-convention, size: 1859 [annotate] [blame] [check-ins using] [diff]
2021-01-02
22:04
Update copyright file: [8faf6d47b7] check-in: [374e1a1bfa] user: js, branch: trunk, size: 1861 [annotate] [blame] [check-ins using] [diff]
2020-08-11
19:45
OFString: Rework number parsing API

This solves the old signed vs. unsigned problem and allows for more
bases than just 8, 10 and 16, as well as auto-detection of the base (if
base is 0). file: [0b468db6b6] check-in: [b6ee372b98] user: js, branch: trunk, size: 1950 [annotate] [blame] [check-ins using] [diff]

2020-01-02
01:51
Update copyright file: [49a22d9861] check-in: [c7f0229795] user: js, branch: trunk, size: 1941 [annotate] [blame] [check-ins using] [diff]
2019-03-08
00:35
Use dot syntax file: [323b28b85f] check-in: [bceb7ed4c9] user: js, branch: trunk, size: 1938 [annotate] [blame] [check-ins using] [diff]
2019-01-03
19:13
Update copyright file: [bfb40bb476] check-in: [0509d7a844] user: js, branch: trunk, size: 1946 [annotate] [blame] [check-ins using] [diff]
2018-01-03
19:49
Update copyright notice file: [9e6f4d0f8a] check-in: [7e5c81e186] user: js, branch: trunk, size: 1940 [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: [ee18b09f2a] check-in: [44f45c2e35] user: js, branch: trunk, size: 1917 [annotate] [blame] [check-ins using] [diff]

2016-01-03
00:41
Update copyright

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

2015-01-03
20:57
Update copyright file: [d04aa7d863] check-in: [cfd374b906] user: js, branch: trunk, size: 1907 [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: [bcbbdef2c4] check-in: [13ee56edf3] user: js, branch: trunk, size: 1901 [annotate] [blame] [check-ins using] [diff]

2014-01-04
00:24
Update copyright. file: [95a3da2531] check-in: [3b97fc3cd9] user: js, branch: trunk, size: 1926 [annotate] [blame] [check-ins using] [diff]
2013-06-22
12:12
Rework exceptions.

This mostly removes the argument for the class in which the exception
occurred. As backtraces were recently added for all platforms, the
passed class does not give any extra information on where the exception
occurred anymore.

This also removes a few other arguments which were not too helpful. In
the past, the idea was to pass as many arguments as possible so that it
is easier to find the origin of the exception. However, as backtraces
are a much better way to find the origin, those are not useful anymore
and just make the exception more cumbersome to use. The rule is now to
only pass arguments that might help in recovering from the exception or
provide information that is otherwise not easily accessible. file: [d4f8416b9e] check-in: [3d16a30f41] user: js, branch: trunk, size: 1920 [annotate] [blame] [check-ins using] [diff]

2013-01-09
22:24
Update copyright. file: [2cf8d059db] check-in: [813c00ccf0] user: js, branch: trunk, size: 2162 [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: [6b475d1780] check-in: [1255f3a11a] user: js, branch: trunk, size: 2156 [annotate] [blame] [check-ins using] [diff]

2012-08-04
10:29
Add missing include. file: [fdc1d789a4] check-in: [96de96bbf6] user: js, branch: trunk, size: 2183 [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: [5a29f34399] check-in: [a6ee2b2065] user: js, branch: trunk, size: 2156 [annotate] [blame] [check-ins using] [diff]

11:32
Check version of serialization format. file: [7cccc18871] check-in: [a2b0cd02a5] user: js, branch: trunk, size: 2155 [annotate] [blame] [check-ins using] [diff]
2012-07-12
01:28
Don't access isa directly. file: [120cf860de] check-in: [8892ae9fcc] user: js, branch: trunk, size: 1765 [annotate] [blame] [check-ins using] [diff]
2012-01-05
00:56
Update copyright. file: [5f80765a24] check-in: [ce70e17b38] user: js, branch: trunk, size: 1729 [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: [927cabf999] check-in: [e1e7ffa903] user: js, branch: trunk, size: 1723 [annotate] [blame] [check-ins using] [diff]

2011-09-09
13:35
[pool release] can never throw by convention now. file: [fd771ca2dd] check-in: [798d9e6320] user: js, branch: trunk, size: 1738 [annotate] [blame] [check-ins using] [diff]
2011-09-01
14:25
Throw an OFInvalidArgumentException if serialization can't be parsed. file: [a5b47627ae] check-in: [8d3b009af1] user: js, branch: trunk, size: 1783 [annotate] [blame] [check-ins using] [diff]
2011-06-28
01:51
Change serialization format to be way more readable and shorter. file: [9bfc5b2d3f] check-in: [756bb26c98] user: js, branch: trunk, size: 1401 [annotate] [blame] [check-ins using] [diff]
2011-06-05
22:26
Added: Nicer API for serialization. file: [4e08e43153] check-in: [29988c434b] user: js, branch: trunk, size: 1427 [annotate] [blame] [check-ins using]