File: NEWS

package info (click to toggle)
zipios%2B%2B 0.1.5.9%2Bcvs.2007.04.28-5.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 2,224 kB
  • ctags: 878
  • sloc: sh: 9,006; cpp: 4,148; makefile: 196; ansic: 137
file content (89 lines) | stat: -rw-r--r-- 2,824 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
Release notes for Zipios++ 0.1.6
--------------------------------

(PARTIALLY DONE) Test suite converted to CppUnit.
(NOT DONE YET) Many more unit tests.  RPMs building
(donated by Rui Miguel Silva Seabra). Shared library support (donated
by Arkadiusz Miskiewicz). (NOT DONE YET) Better Windows support. (NOT
DONE YET) Windows installer.

HEAD of CVS
-----------
New features:
  - Added gzipoutputstream to write .gz files.
  - Current time and date written in ZipEntry, so winzip 8.0 does not 
    complain about the written zip files.
  - Makefiles up to date for Visual C++ 6
  - Correction added for Visual C++ 7.1
  - Further support for CppUnit.
  - Makefile.vc5 renamed to Makefile.vc

API changes:
  - ZipInputStream::getNextEntry() must be called before accessing first entry



Release notes for Zipios++ 0.1.5
--------------------------------
New features:
  - Support for Visual C++ 6
  - VFS feature finished
  - Support for writing zip archives (pre-beta!)

Bug fixes:
  - Code reorganized and many minor bug fixes

Changes:
  - flex/lex is no longer required



Release notes for Zipios++ 0.1.4
--------------------------------
Bug fixes: 
  - A bug in a code fragment used in all the test programs for copying
    data from an istream to an ostream has been fixed
  - A nasty and embarrasing bug in ZipInputStreambuf and
    InflateInputStreambuf that prevented zip entries containing the character
    255 from being correctly decompressed has been fixed



Release notes for Zipios++ 0.1.3
--------------------------------
Changes:
  - Changed the license to GNU Lesser General Public License



Release notes for Zipios++ 0.1.2
--------------------------------
New features:
  - ZipFile can now be used to read zip files embedded in other files. The
    static method ZipFile::openEmbeddedZipFile() can be used to open zip 
    files embedded in another file with the binary appendzip, which is 
    also part of the Zipios++ distribution


Bug fixes:
  Installation:
   - Header files are now installed (under (usr/include/)zipios++/)
   - The library libzipios.a is now installed
   - The test binaries are no longer installed
   - Renamed config.h to zipios-config.h to avoid file name collisions

  Building:
   - Added a switch --with-std-compliant-iostream (and --without-...) 
     to the configure script, such that the library can be build against 
     the old iostream.h library, even if a newer std compliant iostream 
     implementation is available in iostream

  Source:
   - Most functions now throw exceptions (reflected in the documentation)
     instead of printing error messages to stderr
   - Fixes to make the library compile and work with gcc 2.95.2


Missing features and known bugs:
  - DirectoryCollection::entries() end DirectoryCollection::size() are
    not implemented yet