NEWS 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. QuaZIP changes
  2. * 2011-09-09 0.4.3
  3. * New test suite using QTestLib.
  4. * Fixed bytesAvailable(), pos() and atEnd().
  5. * Added ZIP v1.0 support and disabling data descriptor for
  6. compatibility with some older software.
  7. * Fixed DLL export/import issues for some symbols.
  8. * Added QUAZIP_STATIC macro for compiling as a static library or
  9. directly including the source.
  10. * Added getFileNameList() and getFileInfoList() convenience
  11. functions.
  12. * Added some buffering to JlCompress to improve performance.
  13. * 2011-08-10 0.4.2
  14. * Cmake patch (thanks to Bernhard Rosenkraenzer).
  15. * Symbian patch (thanks to Hamish Willee).
  16. * Documented the multiple files limitation of QuaZipFile.
  17. * Fixed relative paths handling in JlCompress.
  18. * Fixed linking to MinGW zlib.
  19. * 2011-05-26 0.4.1
  20. * License statement updated to avoid confusion. GPL license
  21. removed for the very same reason.
  22. * Parts of original package are now clearly marked as modified,
  23. just as their license requires.
  24. * 2011-05-23 0.4
  25. * QuaZip and QuaZipFile classes now use the Pimpl idiom. This
  26. means that future releases will probably be binary compatible
  27. with this one, but it also means that this one is binary
  28. incompatible with the old ones.
  29. * IO API has been rewritten using QIODevice instead of standard
  30. C library. Among other things it means that QuaZip now supports
  31. files up to 4 GB in size instead of 2 GB.
  32. * Added QuaZip methods allowing access to ZIP files represented
  33. by any seekable QIODevice implementation (QBuffer is a good
  34. example).
  35. * 2010-07-23 0.3
  36. * Fixed getComment() for global comments.
  37. * Added some useful classes for calculating checksums (thanks to
  38. Adam Walczak).
  39. * Added some utility classes for working with whole directories
  40. (thanks to Roberto Pompermaier). It would be nice if someone
  41. documents these in English, though.
  42. * Probably fixed some problems with passwords (thanks to Vasiliy
  43. Sorokin). I didn't test it, though.
  44. * 2008-09-17 0.2.3
  45. * Fixed license notices in sources.
  46. * SVN
  47. * Fixed a small bug in QuaZipFile::atEnd().
  48. * 2007-01-16 0.2.2
  49. * Added LGPL as alternative license.
  50. * Added FAQ documentation page.
  51. * 2006-03-21 0.2.1
  52. * Fixed setCommentCodec() bug.
  53. * Fixed bug that set month 1-12 instead of 0-11, as specified in
  54. zip.h.
  55. * Added workaround for Qt's bug that caused wrong timestamps.
  56. * Few documentation fixes and cosmetic changes.
  57. * 2005-07-08 0.2
  58. * Write support.
  59. * Extended QuaZipFile API, including size(), *pos() functions.
  60. * Support for comments encoding/decoding.
  61. * 2005-07-01 0.1
  62. * Initial version.