forked from Zipios/Zipios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
119 lines (85 loc) · 3.66 KB
/
NEWS
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
Release notes for Zipios 2.2.0
--------------------------------
As per [issue #28 on Github](https://github.com/Zipios/Zipios/issues/28),
there was a discrepancy in licenses because of the dostime.c and dostime.h
files.
These two files were removed and replaced by a DOSDateTime class instead.
It's all C++ and uses a structure with field to convert the data as required.
The license was also updated and copyright file fixed up to match the newer
version.
Release notes for Zipios 2.1.0
--------------------------------
Moving the header files from /usr/include/zipios++ to /usr/include/zipios
which is a more conventional name for a directory.
Various fixes such as copyright notices, zipios_tool renamed, manual
pages.
Release notes for Zipios 2.0.0
--------------------------------
This new release is a big change to make use of modern C++ (c++11 for now)
and fix a certain number of bugs in the library.
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 embarrassing 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