TODO 1.0 KB

123456789101112131415161718192021222324
  1. Stuff that needs to be done and wishlist:
  2. These are in no particular order.
  3. Some might be dupes, some might be done already.
  4. - Other archivers: perhaps tar(.gz|.bz2), RPM, ARJ, etc. These are less
  5. important, since streaming archives aren't of much value to games (which
  6. is why zipfiles are king: random access), but it could have uses for, say,
  7. an installer/updater.
  8. - Stack allocate in stripAppleBundle() (platform/unix.c) instead of calloc().
  9. - Reduce malloc() pressure all over the place. We fragment memory like mad.
  10. - macclassic.c :
  11. "/* (Hmm. Default behaviour is broken in the base library. :) ) */"
  12. - Platforms to port to: Amiga (needs platform driver), DOS4GW (platform driver).
  13. - profile string list interpolation.
  14. - We have two different ways to find dir entries in zip.c.
  15. - Do symlinks in zip archiver work when they point to dirs?
  16. - Enable more warnings?
  17. - Use __cdecl in physfs.h?
  18. - Look for FIXMEs (many marked with "!!!" in comments).
  19. - Probably other stuff. Requests and recommendations are welcome.
  20. // end of TODO ...