CHANGELOG 5.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * CHANGELOG.
  3. */
  4. 03292002 - Fixed a potential problem in ZIP_realpath() and some byte order
  5. issues in zip.c. Converted unzip.c to use physfs file i/o
  6. abstractions. Converted CHANGELOG to list latest entries first.
  7. 03242002 - Added __PHYSFS_platformInit() and __PHYSFS_platformDeinit(). Win32
  8. improvements by Gregory S. Read. Added PHYSFS_[us]int(8|16|32)
  9. types...this breaks binary compatibility with previous PhysicsFS
  10. releases! Added platform specific i/o functions, so we don't have
  11. to rely on stdio anymore. Updated TODO with my comments on the
  12. physfs mailing list. 1.0, here we come! Removed race condition from
  13. grp.c and converted to file i/o abstraction layer calls from stdio.
  14. Tons of other fixes and enhancements.
  15. 03202002 - Patched platform/win32.c to compile.
  16. 03152002 - PHYSFS_setSaneConfig() now handles failure to set the write dir
  17. better. Patched makefile to link the test program. Changed all the
  18. "write" functions to get data from a "const" buffer. Added an
  19. "extras" dir, which currently contains PhysFS->SDL_RWops glue code.
  20. 03052002 - Made unix.c's timeslice implementation more portable, and added a
  21. Darwin-specific means to detect CDs (thanks to Patrick Stein).
  22. Minor cleanup in win32.c (changed "for (; condition ;)" into
  23. "while (condition)" ...)
  24. 11142001 - Removed a redundant error check in platform/win32.c
  25. 10092001 - Syntax fixes in dir.c, a FIXME in grp.c, and a "cat" command in
  26. the test program. Apparently I had accidentally removed a rather
  27. crucial line from dir.c a few revisions ago, and no one noticed. :(
  28. Fixed. The win32 userdir will default to the base dir, now.
  29. 09252001 - Changed API: PHYSFS_setSaneConfig() takes an organization name, and
  30. sets up less directories. Be warned. Fixes from David Hedbor:
  31. make setSaneConfig() set write directory correctly if it had to
  32. create the directory, and make sure that the writing functions
  33. get used in dir.c when a file is opened for writing/appending.
  34. Updated CREDITS.
  35. 09142001 - David Hedbor submitted a patch to handle a case where the
  36. current working directory has been deleted out from under the
  37. process (both in platform/unix.c and physfs.c itself). Thanks,
  38. David! Added a CREDITS file. Changed the format of the author field
  39. in PHYSFS_ArchiveInfo to put the email address between "<>" instead
  40. of "()" chars. Updated TODO. make install now deletes previous
  41. revisions of the library. Changed version to 0.1.4.
  42. 09012001 - Happy September. Moved the Visual C project files and the zlib
  43. source to a separate download. Look for it at
  44. http://icculus.org/physfs/downloads/physfs-win32-support.zip ...
  45. Updated the INSTALL doc for Win32 building. Rewrote win32.c's
  46. __PHYSFS_platformRealPath() to not rely on Visual C's runtime lib,
  47. which was the last Cygwin incompatibility (although the Makefile
  48. needs to be updated to build a DLL under Cygwin). Tinkered with the
  49. Makefile a little, but it needs more work. Started working on a
  50. MacOS version. All I have is CodeWarrior 4, which is way out of
  51. date, and (for what is supposed to be an ultra-user-friendly
  52. environment) is completely uninituitive to me. Still, managed to
  53. get most everything compiling, which improved the quality of the
  54. code somewhat). Haven't tried to compile the zipfile support, and
  55. I still can't link the library. Dunno what the hell I'm supposed
  56. to do there. Isn't Unix supposed to be hard compared to this?
  57. 08312001 - Built PhysicsFS on Mandrake 8.0 for the PowerPC. Compiles clean,
  58. but there's at least one byte-ordering issue in zip.c that needs
  59. to be fixed.
  60. 08292001 - win32.c calculates the base dir with GetModuleFileName() first, now,
  61. and falls back to SearchPath() if there were problems. Changed an
  62. occurence of _MAX_PATH to MAX_PATH, so both CygWin and Visual C can
  63. handle it.
  64. 08282001 - win32.c now checks HOMEDRIVE, HOMEPATH, and HOME when calculating
  65. the userdir. Added include files that make it a little closer to
  66. compiling under Cygwin. Added a TODO file. Fixed unix.c's
  67. __PHYSFS_platformCalcBaseDir() so that it actually works. Fixed
  68. Makefile so that it links the test program properly.
  69. Changed version to 0.1.3.
  70. 08232001 - Fixed a potential free()ing of a NULL pointer in
  71. __PHYSFS_platformEnumerateFiles() in platform/unix.c. Added
  72. platform/win32.c. Other cleanups to get this compiling with
  73. Visual C and CygWin. Added BAIL_MACRO for times when we were doing
  74. BAIL_IF_MACRO(1, ...). Abstracted mkdir() in the platform drivers.
  75. Added GRP setting output to showcfg in the Makefile. Updated INSTALL
  76. with license info and Win32 build instructions. Dependency on the
  77. readline library in test_physfs.c is now optional.
  78. Changed version to 0.1.2.
  79. 08072001 - Changed version to 0.1.1.
  80. 08062001 - Added CD-ROM detection code to the unix platform driver.
  81. 08012001 - Added a safety memset in error setting, fixed URLs and email addr.
  82. 07282001 - Initial release.
  83. --ryan. (icculus@clutteredmind.org)
  84. /* end of CHANGELOG ... */