]> 4ch.mooo.com Git - 16.git/blob - 16/adplug/libbinio/NEWS
wwww~
[16.git] / 16 / adplug / libbinio / NEWS
1 This is a brief overview of user-visible changes in libbinio.
2
3 Changes for version 1.4:
4 ------------------------
5 - Support for pkg-config on UNIX systems.
6 - Moved default header installation directory to $pkgincludedir
7   (aka $includedir/libbinio) to prevent filename clashes with other
8   libraries.
9
10 Changes for version 1.3:
11 ------------------------
12 - Fixed a small interface bug.
13 - Fixed data type mismatch on non-32-bit systems in peekInt().
14
15 Changes for version 1.2:
16 ------------------------
17 - Ported to QNX.
18 - Red Hat & Mandrake .spec files.
19
20 Changes for version 1.1:
21 ------------------------
22 - Removed unused config header file.
23 - writeString() methods now return number of characters written.
24 - Changed behaviour of readString(): The delimiter doesn't default to '\0'
25   anymore. If no delimiter is given, always up to 'amount' characters are read.
26 - error() now returns a bit field of error flags instead of just one error
27   value. Multiple errors can now occur at once.
28 - Added 'NotFound' error flag, indicating a file not found error.
29 - The 'Eof' error code is now set only when reading _past_ the end of a stream,
30   not on the last byte.
31 - Added peekInt() and peekFloat() methods to peek an integer or a floating-point
32   number in a stream, without extracting it.
33 - Added ateof() method to binistream class that returns true when the stream is
34   at the last byte.