author | Ryan C. Gordon <icculus@icculus.org> |
Sun, 31 Oct 2004 12:20:00 +0000 | |
changeset 668 | a5c80bd9549e |
parent 666 | 7ca5dede89f2 |
child 669 | 66a1058b803d |
permissions | -rw-r--r-- |
59 | 1 |
/* |
2 |
* CHANGELOG. |
|
3 |
*/ |
|
621 | 4 |
|
663 | 5 |
10302004 - Fixed a strcpy that should have been a strcat. (thanks, Tolga!) |
666
7ca5dede89f2
CFLAGS is used after PHYSFSCFLAGS, so you can override optimization flags, etc.
Ryan C. Gordon <icculus@icculus.org>
parents:
663
diff
changeset
|
6 |
Build system respects external CFLAGS now. (thanks, Adam!) |
668
a5c80bd9549e
Fixed infinite loop in enum code (thanks, Adam!)
Ryan C. Gordon <icculus@icculus.org>
parents:
666
diff
changeset
|
7 |
Fixed infinite loop in new enumeration code. (thanks, Adam!) |
662
fc1755126f24
Removed profiling code.
Ryan C. Gordon <icculus@icculus.org>
parents:
659
diff
changeset
|
8 |
10062004 - Removed profiling code from physfs.c. |
657
dad3b5c307a9
Added callback APIs and ripped up the internals everywhere to use them.
Ryan C. Gordon <icculus@icculus.org>
parents:
652
diff
changeset
|
9 |
09292004 - Every API that can return a list of strings can now use a |
dad3b5c307a9
Added callback APIs and ripped up the internals everywhere to use them.
Ryan C. Gordon <icculus@icculus.org>
parents:
652
diff
changeset
|
10 |
callback mechanism if the application wants to do it's own |
dad3b5c307a9
Added callback APIs and ripped up the internals everywhere to use them.
Ryan C. Gordon <icculus@icculus.org>
parents:
652
diff
changeset
|
11 |
allocation or handling on a per-item basis. The guts of those |
dad3b5c307a9
Added callback APIs and ripped up the internals everywhere to use them.
Ryan C. Gordon <icculus@icculus.org>
parents:
652
diff
changeset
|
12 |
APIs that create string lists now use the callbacks themselves to |
dad3b5c307a9
Added callback APIs and ripped up the internals everywhere to use them.
Ryan C. Gordon <icculus@icculus.org>
parents:
652
diff
changeset
|
13 |
build the lists, too. The callback functionality goes all the way |
dad3b5c307a9
Added callback APIs and ripped up the internals everywhere to use them.
Ryan C. Gordon <icculus@icculus.org>
parents:
652
diff
changeset
|
14 |
down to the archivers and platform drivers where appropriate, which |
dad3b5c307a9
Added callback APIs and ripped up the internals everywhere to use them.
Ryan C. Gordon <icculus@icculus.org>
parents:
652
diff
changeset
|
15 |
cleans things up and simplifies some internal tasks very nicely. |
658
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
16 |
Got rid of all the annoying forward declarations in all the |
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
17 |
archivers and moved their PHYSFS_Archiver data to the end of the |
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
18 |
file, since this was annoying me and I was getting sick of updating |
1981818c6170
Removed all the forward declaration cruft from the archivers.
Ryan C. Gordon <icculus@icculus.org>
parents:
657
diff
changeset
|
19 |
function signatures in two places when the internal API changed. |
659
13c6382a97bc
Removed LinkedStringList and related code.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
20 |
Removed the code/data for LinkedStringLists...it isn't used anymore |
13c6382a97bc
Removed LinkedStringList and related code.
Ryan C. Gordon <icculus@icculus.org>
parents:
658
diff
changeset
|
21 |
now that the callback code is in place. |
650
298b8bb26775
Did the same thing to FileHandles than I did to DirHandles, but this
Ryan C. Gordon <icculus@icculus.org>
parents:
648
diff
changeset
|
22 |
09262004 - Did the same thing to FileHandles than I did to DirHandles, but |
298b8bb26775
Did the same thing to FileHandles than I did to DirHandles, but this
Ryan C. Gordon <icculus@icculus.org>
parents:
648
diff
changeset
|
23 |
this triggered massive tweaking in physfs.c. A lot of code got |
298b8bb26775
Did the same thing to FileHandles than I did to DirHandles, but this
Ryan C. Gordon <icculus@icculus.org>
parents:
648
diff
changeset
|
24 |
little cleanups, which was nice. Less malloc pressure, too, since |
298b8bb26775
Did the same thing to FileHandles than I did to DirHandles, but this
Ryan C. Gordon <icculus@icculus.org>
parents:
648
diff
changeset
|
25 |
opening a file used to allocate a ton of crap and mush it |
298b8bb26775
Did the same thing to FileHandles than I did to DirHandles, but this
Ryan C. Gordon <icculus@icculus.org>
parents:
648
diff
changeset
|
26 |
together...now it's basically down to one structure and the |
652 | 27 |
instance data in whatever archiver. Minor varname tweak in win32.c |
28 |
and pocketpc.c. Changed PHYSFS_file to PHYSFS_File to match the |
|
29 |
rest of the API's naming scheme (but put a typedef for source |
|
30 |
compatibility). |
|
648
5c993684b8f2
Cleaned up archiver interface to not deal with DirHandles anymore,
Ryan C. Gordon <icculus@icculus.org>
parents:
645
diff
changeset
|
31 |
09252004 - Cleaned up archiver interface to not deal with DirHandles anymore, |
5c993684b8f2
Cleaned up archiver interface to not deal with DirHandles anymore,
Ryan C. Gordon <icculus@icculus.org>
parents:
645
diff
changeset
|
32 |
which simplifies things, removes some responsibility and code |
5c993684b8f2
Cleaned up archiver interface to not deal with DirHandles anymore,
Ryan C. Gordon <icculus@icculus.org>
parents:
645
diff
changeset
|
33 |
duplication from the archivers, and trims some malloc pressure. |
5c993684b8f2
Cleaned up archiver interface to not deal with DirHandles anymore,
Ryan C. Gordon <icculus@icculus.org>
parents:
645
diff
changeset
|
34 |
Ripped up the allocation hook code a little. We'll try to screw |
5c993684b8f2
Cleaned up archiver interface to not deal with DirHandles anymore,
Ryan C. Gordon <icculus@icculus.org>
parents:
645
diff
changeset
|
35 |
with memory locking later, since it makes everything ugly and |
5c993684b8f2
Cleaned up archiver interface to not deal with DirHandles anymore,
Ryan C. Gordon <icculus@icculus.org>
parents:
645
diff
changeset
|
36 |
complex. Oh well. |
645 | 37 |
09232004 - Started adding allocation hooks. |
642 | 38 |
09222004 - Happy September. Added Spanish translation back in. |
632 | 39 |
04092004 - Added MIX support for legacy Westwood titles (Thanks, Sebastian!). |
40 |
Made bootstrap script MacOSX-friendly. Moved byteorder defines into |
|
41 |
physfs_internal.h ... |
|
626 | 42 |
01152003 - Added Portuguese (Brazil) translation (Thanks, Danny!) |
621 | 43 |
12292003 - Updated CodeWarrior projects from CW6 to CW7, and made a bunch of |
44 |
patches to get the Mac Classic target building again. Removed |
|
45 |
zlib114 from CVS repository. Updated OS/2 build batch file. |
|
624 | 46 |
Added Z_PREFIX define to Unix builds that use internal zlib. |
47 |
Patched up some (outdated?) Visual C project files for zlib121. |
|
48 |
Patched Doxyfile and physfs.h for newer Doxygen. Fixed OS/2 |
|
49 |
build script. Tweaked Project Builder files to at least compile. |
|
50 |
Added some last minute BeOS and Cygwin build fixes. Updated |
|
51 |
Visual Studio projects and tweaked some Makefile.am crap. Made |
|
52 |
changes so Visual Studio files would pack with DOS endlines and... |
|
53 |
Upped version to 1.0.0 (woohoo!). |
|
616 | 54 |
12222003 - Fixed a search-and-replace mistake in win32.c that preventing |
621 | 55 |
compiling on Windows. (thanks, Brian!) Converted VC6 .dsp to use |
56 |
zlib121; made Z_PREFIX=1 enabled by default to avoid link clashes; |
|
57 |
put zlib files in separate logical folder in .dsp project; updated |
|
58 |
zlib121/zconf.h to address remaining symbols that were still |
|
59 |
causing link warnings. |
|
611 | 60 |
12182003 - WAD archiver now puts maps into subdirectories, making them |
614 | 61 |
accessible to the application. (Thanks, Travis!) RPM spec and |
62 |
Makefile.am* now package zlib_license_change.txt (Thanks, Edward!) |
|
611 | 63 |
12142003 - Added Doom WAD support (Thanks, Travis!) |
607 | 64 |
12082003 - Fixed some win32.c deficiencies that Robby Dermody pointed |
65 |
out (thanks!) |
|
605 | 66 |
12072003 - Upgraded internal zlib to 1.2.1 (thanks, Adam!) Other |
67 |
Unix build fixes. |
|
600 | 68 |
11112003 - Patches to make OS/2 support compile again. |
598 | 69 |
11092003 - Added __PHYSFS_platformStrnicmp(), and made qpak.c case-insensitive. |
595 | 70 |
09122003 - Happy September. Actually released current tree as 0.1.9. |
594 | 71 |
08262003 - Added MiNT support to build process and fixed cross-compiling |
72 |
(thanks Patrice Mandin!) |
|
595 | 73 |
08092003 - Some Windows build fixes (thanks, Brian Hook!) |
588
9f398d3d84a3
Upped version to 0.1.9.
Ryan C. Gordon <icculus@icculus.org>
parents:
586
diff
changeset
|
74 |
07232003 - Upped version to 0.1.9. |
576
5da65f8e9a50
Switched to zlib license.
Ryan C. Gordon <icculus@icculus.org>
parents:
574
diff
changeset
|
75 |
07202003 - Switched to zlib license (see new LICENSE text in root of source |
5da65f8e9a50
Switched to zlib license.
Ryan C. Gordon <icculus@icculus.org>
parents:
574
diff
changeset
|
76 |
tree, and zlib_license_switch.txt for details). Had to remove |
5da65f8e9a50
Switched to zlib license.
Ryan C. Gordon <icculus@icculus.org>
parents:
574
diff
changeset
|
77 |
archivers/qpak.c, the Ruby bindings from the extras directory, and |
5da65f8e9a50
Switched to zlib license.
Ryan C. Gordon <icculus@icculus.org>
parents:
574
diff
changeset
|
78 |
the Russian and Spanish translations, since those contributors |
5da65f8e9a50
Switched to zlib license.
Ryan C. Gordon <icculus@icculus.org>
parents:
574
diff
changeset
|
79 |
couldn't be contacted. If they show up, we'll readd them to the |
5da65f8e9a50
Switched to zlib license.
Ryan C. Gordon <icculus@icculus.org>
parents:
574
diff
changeset
|
80 |
project, otherwise we'll eventually replace their work...everyone |
580 | 81 |
else signed on for the change. Committed a patch to convert all |
82 |
tabs to spaces (Thanks, James!). Added patch to zip.c to fix |
|
583 | 83 |
crash (thanks, dillo!). Reimplmented qpak.c, by welding together |
586 | 84 |
bits of grp.c and zip.c. Ed contacted me, so I could readd his |
85 |
contributions post-license change...I'm going to keep the new |
|
86 |
qpak.c, but I've readded his Ruby bindings and Russian translations. |
|
574 | 87 |
06112003 - Patches to globbing.c to handle corner cases (thanks, Bradley!). |
88 |
06102003 - Added globbing.c to "extras" directory. |
|
572 | 89 |
05232003 - Rewrote MacOSX/Darwin CD-ROM detection code to use IOKit, which is |
90 |
much much more accurate than the previous code. Updated |
|
91 |
configure.in and Makefile.am.newautomake for some MacOSX stuff. |
|
569 | 92 |
05222003 - Fixed win32 crash if PHYSFS_init() is called with a NULL. |
567 | 93 |
05182003 - PocketPC fixes (thanks, David Hedbor!) |
565 | 94 |
05162003 - Compiler warning cleanup in HOG and MVL archivers (Thanks, Bradley!) |
563 | 95 |
04082003 - Minor changes to extras/abs-file.h (Thanks, Adam!) |
552 | 96 |
03302003 - Fixed seeking in uncompressed ZIP entries, and handle a |
97 |
misbehaviour in Java's JAR creation tools. Thanks to "Tree" for |
|
554 | 98 |
pointing these bugs out. Added HOG and MVL archive support for |
556 | 99 |
Descent I and II (Thanks, Bradley Bell!). Added example code to |
100 |
do case-insensitive file searches ("extras/ignorecase.*"). |
|
548 | 101 |
03192003 - Fixed problem in PHYSFS_mkdir() when dirs to be created already |
102 |
exist. Fixed problem where PHYSFS_mkdir() incorrectly tripped an |
|
103 |
alarm in __PHYSFS_verifySecurity(). |
|
544 | 104 |
03122003 - Attempt at cleaning up some type correctness for VC++6. Made QPAK |
105 |
archiver case-insensitive (since Quake2 has problems without it). |
|
539 | 106 |
01302003 - Added buffering API to OS/2 build's exported symbol list. Updated |
107 |
CWProjects.sit and made several fixes to get physfs building on |
|
108 |
MacOS Classic again. |
|
534 | 109 |
01282003 - Fixed seeking in buffered files opened for read. |
535 | 110 |
01072003 - .NET assembly and C# wrapper by Gregory S. Read in the extras dir. |
526 | 111 |
01042003 - Added a hack for dealing with OSX bundles and newer PBProjects |
112 |
(thanks, Eric Wing!). Added some missing files to "make dist". |
|
531 | 113 |
Fixed minor Doxygen typo in PHYSFS_flush() docs. Upped version to |
114 |
0.1.8. |
|
519 | 115 |
12172002 - Added Apple Project Builder support files (thanks, Eric Wing!). |
515 | 116 |
12112002 - Added Ruby bindings to extras directory (thanks, Ed Sinjiashvili!). |
517 | 117 |
Patched win32.c to compile with Mingw32 (thanks, Niels Wagenaar!). |
513 | 118 |
12032002 - Adam updated his extras/abs-file.h for the new buffering API. |
510 | 119 |
12022002 - German translation added, compliments of Michael Renner. |
509 | 120 |
12012002 - Minor fix to configure.in: reported --enable-debug's default |
121 |
setting incorrectly. Added buffering to the API: you can now |
|
122 |
buffer a file with PHYSFS_setBuffer(), and flush the buffer to |
|
123 |
disk with PHYSFS_flush(). PhysicsFS file handles are unbuffered |
|
124 |
by default (as they were before this API addition), so this does |
|
125 |
not break the API. Other fixes for bugs I stumbled upon during |
|
126 |
this work are in CVS, too. |
|
506 | 127 |
11292002 - Minor fix for strange PATH strings in unix.c (thanks, Alexander!) |
503 | 128 |
11222002 - Initial PocketPC port by Corona688. |
499 | 129 |
10222002 - Fixed segfault in test_physfs.c when user hits CTRL-D (and |
130 |
readline() thus returns NULL)...now gracefully exits, as it should. |
|
498 | 131 |
10142002 - Added check for AMD's x86-64 ("Hammer") architecture when |
132 |
determining platform byte order. |
|
496 | 133 |
10112002 - Fixed "setsaneconfig" command in test_physfs.c ... |
493 | 134 |
09232002 - Happy September. Updated VC++6 project files, fixed some |
135 |
VC++ compile nags (more work to be done in zip.c). |
|
492 | 136 |
08302002 - Cleaned tab stops out of zip.c, and fixed a possible infinite loop |
137 |
in zip_find_entry(). |
|
488 | 138 |
08292002 - Fixed a mistake in makeos2.cmd, and updated the INSTALL docs. |
490 | 139 |
Added physfs.spec.in to EXTRA_DIST in Makefile.am* |
486 | 140 |
08292002 - Added a physfs/stdio wrapper header to the "extras" dir, |
141 |
compliments of Adam D. Moss (file is "abs-file.h"). |
|
479 | 142 |
08282002 - Cleanups in grp.c so that Visual C++ doesn't complain anymore. |
484 | 143 |
zip.c now works correctly when PhysicsFS is disallowing symlinks. |
144 |
A few minor optimizations in zip.c, with a few more to come later. |
|
145 |
Added VS.NET project files to CVS. |
|
477 | 146 |
08222002 - Fixed ZIP_exists() to work with directories. Now breaks out of |
147 |
__PHYSFS_verifySecurity() early if a path element is missing |
|
148 |
(since all the others will be, too)...this check is only done |
|
149 |
if symlinks are disabled, but we might as well save easy cycles |
|
150 |
where we can. |
|
466 | 151 |
08212002 - Did a couple tedious-for-small-rewards cleanups, optimizations, |
152 |
corrections and streamlinings I've been meaning to do. Touched a |
|
469 | 153 |
lot of code. One of the side results is that ZIP_isDirectory() |
154 |
got fixed. |
|
463 | 155 |
08192002 - Generalized sorting routines, moved them into physfs.c and removed |
156 |
the multiple copies from the various archivers. Adding profiling |
|
157 |
code (currently only for sort routines)...enable it with |
|
158 |
--enable-profiling in the configure script. Fixed incorrect |
|
159 |
behaviours in configure.in. |
|
460 | 160 |
08172002 - Patched configure.in to work around buggy autoconfs. |
458 | 161 |
08162002 - Fixed QPAK archiver, since I broke it (sorry!). Also fixed a |
162 |
qpak memory leak. |
|
451 | 163 |
08092002 - Added Quake PAK archiver (qpak.c) by Ed Sinjiashvili. Thanks! |
455 | 164 |
Made (successful?) attempt to fix pthread-to-ui64 cast problem. |
165 |
Check for OS/2 in configure.in, in case anyone gets autoconf and |
|
166 |
such to work right on their OS/2 box. |
|
449 | 167 |
08012002 - Patched win32.c to compile. |
447 | 168 |
07302002 - Minor error handling fix (thanks, Alexander!) |
428 | 169 |
07292002 - Found some memory leaks, thanks to Valgrind (which rules, btw). |
445 | 170 |
Added Russian translations (koi8-r, cp1251, cp866, and iso-8859-5) |
171 |
by Ed Sinjiashvili. Added Spanish translation by Pedro J. Pérez. |
|
172 |
Debian package support in CVS, thanks to Colin Bayer. French |
|
173 |
translation by Stéphane Peter. |
|
425 | 174 |
07282002 - macclassic.c now returns human readable error messages instead of |
426 | 175 |
ERR_OS_ERROR. Closing files on MacOS no longer fails if the volume |
176 |
info can't be flushed. Minor error message tweak in os2.c. All |
|
177 |
possible human-readable literal strings (including all those OS/2 |
|
178 |
and MacOS error messages) have moved to constants in |
|
179 |
physfs_internal.h...this allows the library to be translated to |
|
436 | 180 |
other spoken languages fairly easily. |
418 | 181 |
07272002 - Patched the OS/2 code to be useful...works pretty well, now. Added |
410 | 182 |
makeos2.cmd for building (not an ideal solution, but oh well). |
414 | 183 |
Initialized some variables in zip.c to prevent compiler whining. |
400 | 184 |
07262002 - Fixed a typo in documentation. Archivers with matching file |
185 |
extensions are now given first shot at opening an archive, but if |
|
403 | 186 |
they fail, the other archivers are tried. More fixes to zip.c's |
405 | 187 |
ZIP_enumerateFiles(). Wrote an OS/2 platform driver based on API |
188 |
specs and a heavy pounding of Google Groups...as I don't have an |
|
189 |
OS/2 compiler at the moment, it probably doesn't even compile. :) |
|
391 | 190 |
07252002 - configure.in and unix.c now deal with platforms that lack a |
191 |
functional pthread library. Edward Rudd sent in a patch to the RPM |
|
192 |
specfile to have the build system set the correct version. |
|
394 | 193 |
Clean ups in grp.c, beos.cpp and macclassic.c. |
380 | 194 |
07242002 - Rewrote ZIP_enumerate(). Hopefully it sucks less this time. |
383 | 195 |
unix.c and configure.in now have the infrastructure to disable |
196 |
the CD-ROM detection code, and use a stub that successfully (and |
|
197 |
unconditionally) reports no detected discs. Currently this is |
|
198 |
used on AtheOS (which doesn't have CD-ROM support at the moment |
|
199 |
anyhow), but it will be useful to get the library up on odd, |
|
200 |
Unix-like systems that don't use either getmntinfo() or getmntent(). |
|
366 | 201 |
07232002 - Cleaned up the cut-and-pastes in the various file enumeration |
202 |
routines and moved it into __PHYSFS_addToLinkedStringList(). |
|
203 |
Tons more ZIP file enhancing. I'm fairly certain it's robust and |
|
204 |
fast in every reasonable respect, now. GRP archiver now caches |
|
205 |
the file table...it was generally overhauled like the ZIP driver. |
|
375 | 206 |
Added "ls" as an alias of "enumerate" in test_physfs. |
377 | 207 |
I lied about zip.c's robustness; disabled the enumeration code. |
356 | 208 |
07212002 - More FreeBSD build system patches. Added some new autoconf spew to |
358 | 209 |
.cvsignore. bootstrap now copies the appropriate Makefile.am |
210 |
instead of rename()ing it. |
|
352 | 211 |
07192002 - Cleaned up configure.in and unix.c so that we check by available |
212 |
header to determine the appropriate CD-ROM detection code...this |
|
213 |
should make this more future-proof (and probably get it building |
|
214 |
out of the box on other BSD platforms.) |
|
346 | 215 |
07172002 - Fixed seeking backwards in ZIP_seek(). Changed the error message |
348 | 216 |
ERR_TOO_MANY_SYMLINKS to ERR_SYMLINK_LOOP. Patches to build system |
349 | 217 |
and unix.c for FreeBSD compatibility. Added physfs.spec to |
218 |
"make dist" archives (thanks, Edward Rudd!). |
|
346 | 219 |
07152002 - Symlinks in ZIP archives are detected correctly now, I think. |
339 | 220 |
07142002 - Use GetVolumeInformation() instead of GetDiskFreeSpace() in |
221 |
win32.c's mediaInDrive() function. This allows Windows NT 3.x to |
|
222 |
correctly detect CD-ROM drives. Library now appears to be fully |
|
223 |
functional on WinNT 3.51...need to try NT 3.1 still. :) |
|
341 | 224 |
Patches to new ZIP code; cleaned up bugs in symlink reading code, |
225 |
but we incorrectly identify some entries as symlinks, which doesn't |
|
226 |
fly...for now, symlink code is commented out, so symlinks look |
|
227 |
like regular files (and reading from a symlink entry gives you |
|
228 |
the link as file data). |
|
336 | 229 |
07122002 - Rewrote the ZIP archiver to no longer use Gilles Vollant's unzip.c |
230 |
code. Losing that abstraction should make the ZIP archiver |
|
231 |
significantly more efficient, and halved the amount of code used. |
|
232 |
Plus, being a control freak, I like my coding style more than |
|
233 |
Gilles's. :) There are still bugs to shake out, but this is good |
|
234 |
progress. |
|
333 | 235 |
07112002 - configure.in updated to make it happier on newer autoconfs |
334 | 236 |
(thanks again, Alexander!). FIXME cleanups. |
324 | 237 |
07102002 - Added a byteorder-friendly convenience API, so you can read/write |
238 |
data and convert to the native byteorder without too much effort. |
|
239 |
Upped version to 0.1.7. |
|
329 | 240 |
Build system corrections for BeOS and Cygwin (thanks, Alexander!). |
241 |
Added RPM specfile for PhysicsFS (thanks, Edward Rudd!). |
|
315 | 242 |
06292002 - Fixed incorrect error message when opening a file for read without |
243 |
defining a search path. LOTS of win32 updates and fixes; lots of |
|
244 |
things that were broken work now, and we are slowly becoming |
|
245 |
more compatible with legacy win32 systems. Builds on Cygwin again. |
|
246 |
All platform drivers (except beos.cpp) had a buffer overflow when |
|
247 |
detecting mounted CD-ROM drives...it only occurs when a drive is |
|
248 |
detected, and it probably won't result in your box getting rooted, |
|
320 | 249 |
but upgrade soon anyhow. Readded the .cvsignore files from the old |
250 |
build system. |
|
309 | 251 |
06282002 - Reworked build system _AGAIN_. |
293 | 252 |
06222002 - Alexander Pipelka spotted a bug in the file open routines in |
253 |
posix.c; patched. |
|
290 | 254 |
06152002 - Autoconf build system will now generate shared libraries on BeOS, |
255 |
and (supposedly) Cygwin. |
|
256 |
06142002 - Rewrote autoconf build system. It now works around the MacOS X bug |
|
257 |
that prevented shared libraries from building. |
|
281 | 258 |
06112002 - Updated CodeWarrior projects and added them to CVS. _Finally_ |
259 |
officially released 0.1.6. |
|
276 | 260 |
06102002 - Major overhauls to platform/win32.c ... should work on all Windows |
261 |
platforms, including 95/98/ME and NT/2K/XP flavors. Someone should |
|
262 |
see if this builds on WinCE! :) You no longer need the latest |
|
263 |
platform SDK to build it, either; the questionable DLL is accessed |
|
264 |
with LoadLibrary() at runtime now, and handled if not present. This |
|
265 |
now builds correctly on a freshly installed Visual Studio 6.0, and |
|
277 | 266 |
the DLL it builds works everywhere. Plus, a bunch of other bugs |
279 | 267 |
and incorrect behaviours were squashed. Visual Studio 6.0 project |
268 |
file added to CVS. |
|
271 | 269 |
06082002 - Fixes to __PHYSFS_platformEnumerateFiles() in win32.c: cleaned up |
270 |
memory leak, handles paths more robustly, and prevents possible |
|
271 |
skipped file entries. Removed AC_C_CONST and AC_TYPE_SIZE_T checks |
|
272 |
from configure.in (not needed, and they broke BeOS build). Clean |
|
273 |
out the docs/ directory when doing a "make dist". Fixed crashbug |
|
274 | 274 |
when calling PHYSFS_deinit() more than once in a row. Tried to get |
275 |
MacOS X to build a shared library, gave up; I'm doing something |
|
276 |
wrong in my Makefile.am, I think. On MacOS X, running ./configure |
|
277 |
--enable-static --disable-shared works, though. Hopefully someone |
|
278 |
will fix this soon. In unix.c, the Darwin version of |
|
279 |
__PHYSFS_platformDetectAvailableCDs() was free()ing a static |
|
280 |
buffer; fixed. |
|
266 | 281 |
06072002 - Manpages! Finally installed Doxygen and scratched together a |
282 |
Doxyfile. After some revision to physfs.h, we've got a rather |
|
283 |
nice API reference. |
|
256 | 284 |
06062002 - Fixed __PHYSFS_platformSeek() in archivers/posix.c. Implemented the |
257 | 285 |
getLastModTime method in archivers/zip.c (returns legitimate info) |
286 |
and archivers/grp.c (returns lastmodtime of GRPfile itself in the |
|
260 | 287 |
physical filesystem). Put a 64-bit _llseek() version of the seek() |
288 |
and tell() methods in platform/posix.c, but you need to hack (or |
|
267 | 289 |
rather, fix) configure.in to enable it. From Greg on win32.c: Fixed |
290 |
file enumerator function (needed a wildcard '*' specification), CD |
|
291 |
enumeration only reports CDs that have media, getLastModTime() has |
|
292 |
been implemented. |
|
253 | 293 |
06012002 - Added -Wall to debug builds. Removed ANSI stdio calls from |
294 |
platform/posix.c, and replaced them with actual POSIX calls (that |
|
295 |
is, fopen() became open(), fseek() became lseek(), etc...) |
|
250 | 296 |
05272002 - Added some explicit casts when calling malloc() in platform/posix.c |
245 | 297 |
05252002 - Added John Hall's file modification time patch, and added a |
298 |
getlastmodtime command to test_physfs. Corrected error reporting |
|
299 |
for missing files a little bit. Changed build system to only try |
|
300 |
building beos.cpp if on a BeOS system (since we need a C++ compiler |
|
248 | 301 |
available to do so). Implemented getLastModTime in macclassic.c. |
239 | 302 |
05242002 - Upped version to 0.1.6 (not officially released yet). |
238 | 303 |
05232002 - Fixed the build system to always package the complete source, not |
230 | 304 |
just what we built for a given system, when doing a "make dist". |
236 | 305 |
Updated INSTALL. Wrote BeOS platform code (platform/beos.cpp). |
306 |
Split unix.c into unix.c and posix.c. Linux and BeOS both share |
|
307 |
posix.c, although I don't think it's completely POSIX compliant at |
|
308 |
this point (not that it matters much). |
|
226 | 309 |
05212002 - Cleaned up some FIXMEs. |
223 | 310 |
05202002 - Added .cvsignore files. |
311 |
05162002 - Edward Rudd also caught an embarrassing screwup by me in |
|
496 | 312 |
unix.c: the open-for-append call was using "wb+" instead of |
313 |
"ab" when calling fopen(). Doh! |
|
314 |
05152002 - configure script now deals with systems that have a readline |
|
315 |
lib, but require it to be linked with curses. Thanks to Edward |
|
219 | 316 |
Rudd for the patch. |
214
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
212
diff
changeset
|
317 |
05102002 - A trimmed-down zlib 1.1.4 is now included in the source distro, for |
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
212
diff
changeset
|
318 |
use by win32, MacOS, and Unix systems that don't have it installed |
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
212
diff
changeset
|
319 |
on the system. Autoconf support! Initial attempt at this. Lots of |
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
212
diff
changeset
|
320 |
stuff may be very broken. |
212 | 321 |
05082002 - From Greg: More win32 work. Library is now 95% functional on win32. |
322 |
Only known win32 problem is that the CD drives are reported whether |
|
323 |
they contain a disc or not). |
|
324 |
05062002 - From Greg: Win32 boxes without the latest Platform SDK can now |
|
325 |
#define DISABLE_NT_SUPPORT. Other fixes. |
|
209 | 326 |
04242002 - Updated win32 info in INSTALL to discuss Platform SDK issues. |
207 | 327 |
04202002 - Added a (very) quick and (very) dirty http server to the |
328 |
extras directory (public domain), as another example of using |
|
329 |
the library. |
|
496 | 330 |
04192002 - Corrected some win32 info in INSTALL. Changed Makefile to |
205 | 331 |
package releases as .tar.gz instead of .tar.bz2. |
496 | 332 |
04122002 - Some win32 cleanups and fixes across several files. Upped |
202 | 333 |
version to 0.1.5. |
192 | 334 |
04082002 - Fixed problem when calling __PHYSFS_setError before PHYSFS_init. |
496 | 335 |
04062002 - Added MacOS info, etc to INSTALL. Patched unix.c and |
192 | 336 |
test_physfs.c to compile on Darwin again. |
179 | 337 |
04052002 - Added byte ordering API. Byte ordering fixes in grp.c, and some |
184 | 338 |
cleanups in unzip.c. Mac work is more or less complete. |
174 | 339 |
04042002 - Mac work continues. Almost complete, now. test_physfs now has |
340 |
tests for write, append, and filelength, and most of the |
|
341 |
commands can tolerate a quoted argument (although this is |
|
342 |
hacky, it's good enough for these purposes). Upped test_physfs |
|
343 |
version to 0.1.1. Added a malloc-failure check in the Unix |
|
344 |
CD-ROM detection code. |
|
168 | 345 |
04032002 - PHYSFS_init always makes sure the calling thread initializes its |
186 | 346 |
error state. Win32 codebase is updated with mutex implementation |
347 |
(thanks, Greg!). |
|
154 | 348 |
04022002 - Mac work continues. Found a bug where we put a double dir |
349 |
separator in if we had to resort to the fallback userdir (if |
|
350 |
__PHYSFS_platformGetUserDir() returned NULL to calculateUserDir(). |
|
351 |
Made note of potential infinite recursion in platform driver docs. |
|
151 | 352 |
04012002 - (_NOT_ an April Fool's Joke:) Started working on MacOS Classic |
353 |
port. Added skeleton.c to platform directory. Minor patches to |
|
354 |
get things compiling on Mac (notably, DirInfo conflicts with |
|
355 |
a type exposed by MacOS's namespace-polluting API, and some |
|
356 |
typecasting issues). Found a call to ferror() I had missed in |
|
357 |
unzip.c. |
|
496 | 358 |
03302002 - Mutexes! PhysicsFS should be thread safe now, so long as you |
146 | 359 |
don't try to do something like close a file at the same time as |
360 |
you are reading from it in another thread. All reasonable race |
|
361 |
conditions should now be gone, but the new code will need some |
|
362 |
eyeballing before we install it on life support systems or anything. |
|
363 |
The mutex abstraction is implemented in unix.c, win32.c will be |
|
364 |
updated shortly. |
|
142 | 365 |
03292002 - Fixed a potential problem in ZIP_realpath() and some byte order |
366 |
issues in zip.c. Converted unzip.c to use physfs file i/o |
|
367 |
abstractions. Converted CHANGELOG to list latest entries first. |
|
368 |
03242002 - Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit(). Win32 |
|
369 |
improvements by Gregory S. Read. Added PHYSFS_[us]int(8|16|32) |
|
370 |
types...this breaks binary compatibility with previous PhysicsFS |
|
371 |
releases! Added platform specific i/o functions, so we don't have |
|
372 |
to rely on stdio anymore. Updated TODO with my comments on the |
|
373 |
physfs mailing list. 1.0, here we come! Removed race condition from |
|
374 |
grp.c and converted to file i/o abstraction layer calls from stdio. |
|
496 | 375 |
Tons of other fixes and enhancements. |
142 | 376 |
03202002 - Patched platform/win32.c to compile. |
377 |
03152002 - PHYSFS_setSaneConfig() now handles failure to set the write dir |
|
378 |
better. Patched makefile to link the test program. Changed all the |
|
379 |
"write" functions to get data from a "const" buffer. Added an |
|
380 |
"extras" dir, which currently contains PhysFS->SDL_RWops glue code. |
|
381 |
03052002 - Made unix.c's timeslice implementation more portable, and added a |
|
382 |
Darwin-specific means to detect CDs (thanks to Patrick Stein). |
|
383 |
Minor cleanup in win32.c (changed "for (; condition ;)" into |
|
384 |
"while (condition)" ...) |
|
385 |
11142001 - Removed a redundant error check in platform/win32.c |
|
386 |
10092001 - Syntax fixes in dir.c, a FIXME in grp.c, and a "cat" command in |
|
387 |
the test program. Apparently I had accidentally removed a rather |
|
388 |
crucial line from dir.c a few revisions ago, and no one noticed. :( |
|
389 |
Fixed. The win32 userdir will default to the base dir, now. |
|
390 |
09252001 - Changed API: PHYSFS_setSaneConfig() takes an organization name, and |
|
496 | 391 |
sets up less directories. Be warned. Fixes from David Hedbor: |
392 |
make setSaneConfig() set write directory correctly if it had to |
|
142 | 393 |
create the directory, and make sure that the writing functions |
394 |
get used in dir.c when a file is opened for writing/appending. |
|
395 |
Updated CREDITS. |
|
396 |
09142001 - David Hedbor submitted a patch to handle a case where the |
|
397 |
current working directory has been deleted out from under the |
|
398 |
process (both in platform/unix.c and physfs.c itself). Thanks, |
|
399 |
David! Added a CREDITS file. Changed the format of the author field |
|
400 |
in PHYSFS_ArchiveInfo to put the email address between "<>" instead |
|
401 |
of "()" chars. Updated TODO. make install now deletes previous |
|
402 |
revisions of the library. Changed version to 0.1.4. |
|
90 | 403 |
09012001 - Happy September. Moved the Visual C project files and the zlib |
404 |
source to a separate download. Look for it at |
|
405 |
http://icculus.org/physfs/downloads/physfs-win32-support.zip ... |
|
406 |
Updated the INSTALL doc for Win32 building. Rewrote win32.c's |
|
407 |
__PHYSFS_platformRealPath() to not rely on Visual C's runtime lib, |
|
408 |
which was the last Cygwin incompatibility (although the Makefile |
|
409 |
needs to be updated to build a DLL under Cygwin). Tinkered with the |
|
94 | 410 |
Makefile a little, but it needs more work. Started working on a |
411 |
MacOS version. All I have is CodeWarrior 4, which is way out of |
|
412 |
date, and (for what is supposed to be an ultra-user-friendly |
|
413 |
environment) is completely uninituitive to me. Still, managed to |
|
414 |
get most everything compiling, which improved the quality of the |
|
415 |
code somewhat). Haven't tried to compile the zipfile support, and |
|
416 |
I still can't link the library. Dunno what the hell I'm supposed |
|
417 |
to do there. Isn't Unix supposed to be hard compared to this? |
|
142 | 418 |
08312001 - Built PhysicsFS on Mandrake 8.0 for the PowerPC. Compiles clean, |
419 |
but there's at least one byte-ordering issue in zip.c that needs |
|
420 |
to be fixed. |
|
421 |
08292001 - win32.c calculates the base dir with GetModuleFileName() first, now, |
|
422 |
and falls back to SearchPath() if there were problems. Changed an |
|
423 |
occurence of _MAX_PATH to MAX_PATH, so both CygWin and Visual C can |
|
424 |
handle it. |
|
425 |
08282001 - win32.c now checks HOMEDRIVE, HOMEPATH, and HOME when calculating |
|
426 |
the userdir. Added include files that make it a little closer to |
|
427 |
compiling under Cygwin. Added a TODO file. Fixed unix.c's |
|
428 |
__PHYSFS_platformCalcBaseDir() so that it actually works. Fixed |
|
429 |
Makefile so that it links the test program properly. |
|
430 |
Changed version to 0.1.3. |
|
431 |
08232001 - Fixed a potential free()ing of a NULL pointer in |
|
432 |
__PHYSFS_platformEnumerateFiles() in platform/unix.c. Added |
|
433 |
platform/win32.c. Other cleanups to get this compiling with |
|
434 |
Visual C and CygWin. Added BAIL_MACRO for times when we were doing |
|
435 |
BAIL_IF_MACRO(1, ...). Abstracted mkdir() in the platform drivers. |
|
436 |
Added GRP setting output to showcfg in the Makefile. Updated INSTALL |
|
437 |
with license info and Win32 build instructions. Dependency on the |
|
438 |
readline library in test_physfs.c is now optional. |
|
439 |
Changed version to 0.1.2. |
|
440 |
08072001 - Changed version to 0.1.1. |
|
441 |
08062001 - Added CD-ROM detection code to the unix platform driver. |
|
442 |
08012001 - Added a safety memset in error setting, fixed URLs and email addr. |
|
443 |
07282001 - Initial release. |
|
59 | 444 |
|
445 |
--ryan. (icculus@clutteredmind.org) |
|
446 |
||
447 |
/* end of CHANGELOG ... */ |
|
448 |