OSDN Git Service

Create FUNDING.yml
[dictzip-java/dictzip-java.git] / CHANGELOG.md
1 # Change Log
2 All notable changes to this project will be documented in this file.
3
4 ## [Unreleased]
5 ### Add
6 - Swing dialog for PGP signing passphrase input.
7
8 ### Changed
9 - Update Gradle version to 5.2.1
10 - Consolidate gradle build script.
11 - Sign to artifact for bintray releases.
12
13 ## [0.8.2] - 2016-10-16
14 ### Fixed
15 - Fix a coding Style warning for DictZipInputStream
16 - Test fix for header comparison range.
17
18 ### Changed
19 - Move project URL to https://www.dictzip.org/.
20
21 ## [0.8.1] - 2016-4-29
22 ### Fixed
23 - Gradle: github and bintray release error.
24 - [#21] fixed unexpected EOFException when readFully() called after seek().
25
26 ## [0.8.0] - 2016-4-29
27 ### Add
28 - More javadoc description. Complete for library APIs.
29
30 ### Changed
31 - DictZipHeader.setHeaderCRC() argument become final.
32 - DictZipFileUtils class become final.
33 - CLI: drop -S -E <base64> arugment.
34 - CLI: support -s/-e hex(0xAAAA) and octet(0777) numbers.
35 - CLI: update man page according to option changes.
36 - Manpage description.
37 - CLI: start script is now 'dictzip' and 'dictzip.bat', all small caps.
38
39 ### Fixed
40 - Generate Maven POM with a proper groupId.
41 - DictZipInputStream: copy buffer with offset by System.copyarray().
42 - CLI: Enable -t --test functionarity.
43 - CLI: Fix --version not working.
44 - CLI: Fix all coding style warnings.
45
46 ## [0.7.0] - 2016-4-25
47 ### Add
48 - Add test option for DictZip CLI.
49 - Add DictZipInputStream consructor that get a filename as argument.
50 - More tests.
51
52 ### Changed
53 - Default buffer size in the DictZipInputStream was changed to 8192 byte
54   from 512 byte as same as java.io.BufferedInputStream.
55 - Test static utility isFileBinaryEquals becomes an external library.
56
57 ### Fixed
58 - Check return value of InputStream.skip() method in the utility method
59   for test.
60
61 ## [0.6.1] - 2016-4-12
62 ### Fixed
63 - CLI: test compile error because DictZipFileUtils is package private,
64   but cli test depends on it. We add a utility method on test class.
65
66 ## [0.6.0] - 2016-4-10
67 ### Add
68 - gradle.properties.template
69   You need to copy to gradle.properties and edit its configuration.
70 - [#8] Support -# --fast --best option in CLI.
71 - DictZipHeader.getExtraFlag() method.
72
73 ### Changed
74 - [#3] License changed to GPL2++classpath(lib) exception and GPL3(CLI)
75 - We have now dictzip-lib and dictzip-cli subprojects.
76 - Target jars become dictzip-lib.jar and dictzip-cli.jar
77 - [#2] Now this is a Gradle project.
78 - Reorganize file structures on Maven rules.
79 - Command script by Gradle.
80 - Delete external libraries. Now gradle will download it.
81 - README: add build procedure, contribution and copyright.
82 - Coding style checks by checkstyle 6.16.1
83 - DictZip header information API through DictZipInputStream.
84
85 ### Fixed
86 - [#7] Fix DictZipInputStream.seek().Previous all releases are broken.
87 - [#5] Fix coding styles and potential problematic codes.
88
89 ## [0.5.0] - 2016-03-21
90 ### Added
91 - [#1] Command line tool subproject.
92 - CHANGELOG.md file.
93
94 ### Changed
95 - DictZipHeader interface.
96 - DictZipOutputStream constructor interface.
97
98 ### Fixed
99 - Broken output features in previous releases.
100
101 ## 0.0.2 - 2016-03-06
102 ### Added
103 - Readme document.
104
105 ## 0.0.1 - 2016-02-28
106 ### Added
107 - Start project.
108
109 [Unreleased]: https://github.com/dictzip/dictzip-java/compare/v0.8.3...HEAD
110 [0.8.3]: https://github.com/dictzip/dictzip-java/compare/v0.8.2...v0.8.3
111 [0.8.2]: https://github.com/dictzip/dictzip-java/compare/v0.8.1...v0.8.2
112 [0.8.1]: https://github.com/dictzip/dictzip-java/compare/v0.8.0...v0.8.1
113 [0.8.0]: https://github.com/dictzip/dictzip-java/compare/v0.7.0...v0.8.0
114 [0.7.0]: https://github.com/dictzip/dictzip-java/compare/v0.6.1...v0.7.0
115 [0.6.1]: https://github.com/dictzip/dictzip-java/compare/v0.6.0...v0.6.1
116 [0.6.0]: https://github.com/dictzip/dictzip-java/compare/v0.5.0...v0.6.0
117 [0.5.0]: https://github.com/dictzip/dictzip-java/compare/v0.0.2...v0.5.0