This commit is contained in:
Ryan C. Gordon 2002-12-01 11:22:30 +00:00
parent 3ad51e49e4
commit 22ba3794bf
2 changed files with 8 additions and 2 deletions

View File

@ -2,6 +2,13 @@
* CHANGELOG.
*/
12012002 - Minor fix to configure.in: reported --enable-debug's default
setting incorrectly. Added buffering to the API: you can now
buffer a file with PHYSFS_setBuffer(), and flush the buffer to
disk with PHYSFS_flush(). PhysicsFS file handles are unbuffered
by default (as they were before this API addition), so this does
not break the API. Other fixes for bugs I stumbled upon during
this work are in CVS, too.
11292002 - Minor fix for strange PATH strings in unix.c (thanks, Alexander!)
11222002 - Initial PocketPC port by Corona688.
10222002 - Fixed segfault in test_physfs.c when user hits CTRL-D (and

3
TODO
View File

@ -1,6 +1,6 @@
Stuff that needs to be done and wishlist:
These are in no particular order. A 1.0 release is reliant on doing most of
These are in no particular order. A 1.0 release is reliant on doing some of
this stuff. Some might be dupes, some might be done already.
- Other archivers: perhaps tar(.gz|.bz2), RPM, ARJ, etc. These are less
@ -22,7 +22,6 @@ These are in no particular order. A 1.0 release is reliant on doing most of
- profile string list interpolation.
- We have two different ways to find dir entries in zip.c.
- Do symlinks in zip archiver work when they point to dirs?
- Is building internal zlib broken?
- Enable more warnings?
- Use __cdecl in physfs.h?
- Look for FIXMEs (many marked with "!!!" in comments).