OSDN Git Service

Rename start script in smallcaps
[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 - More javadoc description. Complete for library APIs.
7
8 ### Changed
9 - DictZipHeader.setHeaderCRC() argument become final.
10 - DictZipFileUtils class become final.
11 - CLI: drop -S -E <base64> arugment.
12 - CLI: support -s/-e hex(0xAAAA) and octet(0777) numbers.
13 - CLI: update man page according to option changes.
14 - Manpage description.
15 - CLI: start script is now 'dictzip' and 'dictzip.bat', all small caps.
16
17 ### Fixed
18 - Generate Maven POM with a proper groupId.
19 - DictZipInputStream: copy buffer with offset by System.copyarray().
20 - CLI: Enable -t --test functionarity.
21 - CLI: fix --version not working.
22
23 ## [0.7.0] - 2016-4-25
24 ### Add
25 - Add test option for DictZip CLI.
26 - Add DictZipInputStream consructor that get a filename as argument.
27 - More tests.
28
29 ### Changed
30 - Default buffer size in the DictZipInputStream was changed to 8192 byte
31   from 512 byte as same as java.io.BufferedInputStream.
32 - Test static utility isFileBinaryEquals becomes an external library.
33
34 ### Fixed
35 - Check return value of InputStream.skip() method in the utility method
36   for test.
37
38 ## [0.6.1] - 2016-4-12
39 ### Fixed
40 - CLI: test compile error because DictZipFileUtils is package private,
41   but cli test depends on it. We add a utility method on test class.
42
43 ## [0.6.0] - 2016-4-10
44 ### Add
45 - gradle.properties.template
46   You need to copy to gradle.properties and edit its configuration.
47 - [#8] Support -# --fast --best option in CLI.
48 - DictZipHeader.getExtraFlag() method.
49
50 ### Changed
51 - [#3] License changed to GPL2++classpath(lib) exception and GPL3(CLI)
52 - We have now dictzip-lib and dictzip-cli subprojects.
53 - Target jars become dictzip-lib.jar and dictzip-cli.jar
54 - [#2] Now this is a Gradle project.
55 - Reorganize file structures on Maven rules.
56 - Command script by Gradle.
57 - Delete external libraries. Now gradle will download it.
58 - README: add build procedure, contribution and copyright.
59 - Coding style checks by checkstyle 6.16.1
60 - DictZip header information API through DictZipInputStream.
61
62 ### Fixed
63 - [#7] Fix DictZipInputStream.seek().Previous all releases are broken.
64 - [#5] Fix coding styles and potential problematic codes.
65
66 ## [0.5.0] - 2016-03-21
67 ### Added
68 - [#1] Command line tool subproject.
69 - CHANGELOG.md file.
70
71 ### Changed
72 - DictZipHeader interface.
73 - DictZipOutputStream constructor interface.
74
75 ### Fixed
76 - Broken output features in previous releases.
77
78 ## 0.0.2 - 2016-03-06
79 ### Added
80 - Readme document.
81
82 ## 0.0.1 - 2016-02-28
83 ### Added
84 - Start project.
85
86 [Unreleased]: https://github.com/miurahr/dictzip-java/compare/v0.7.0...HEAD
87 [0.7.0]: https://github.com/miurahr/dictzip-java/compare/v0.6.1...v0.7.0
88 [0.6.1]: https://github.com/miurahr/dictzip-java/compare/v0.6.0...v0.6.1
89 [0.6.0]: https://github.com/miurahr/dictzip-java/compare/v0.5.0...v0.6.0
90 [0.5.0]: https://github.com/miurahr/dictzip-java/compare/v0.0.2...v0.5.0