Version 3.1.3: fix ImageUtils.fromRestableStream
[nikiroo-utils.git] / changelog.md
CommitLineData
b771aed5
NR
1# nikiroo-utils
2
4b7d32e7
NR
3## Version 3.1.3
4
5- Fix ImageUtils.fromStream with non-resetable streams
6
217a3310
NR
7## Version 3.1.2
8
9- Fix Server regarding the client version passed to the handler
10- Improve ServerBridge options
11
452f38c8
NR
12## Version 3.1.1
13
14- Some fixes and trace handling changes in ServerBridge
15- Some fixes in Import/Export (objects serialisation)
16
8537d55a
NR
17## Version 3.1.0
18
19- New ServerBridge (including tests)
20
79ce1a49 21## Version 3.0.0
f157aed8
NR
22
23- jDoc
24- Fix bugs in Server (it was not possible to send objects back to client)
79ce1a49
NR
25- Improve code in Server (including tests), breaks API
26- Remove some deprecated things
f157aed8 27
530d4062
NR
28## Version 2.2.3
29
30- Fix in readSmallStream
31- Change traces handling
32
2ee6c205
NR
33## Version 2.2.2
34
35- New method in Cache: manually delete items
36
5e66d142
NR
37## Version 2.2.1
38
39- Small fixes, especially in Progress
40
16c492f5
NR
41## Version 2.2.0
42
43- New classes:
44 - Downloader: download URL from recalcitrant websites
45 - Cache: manage a local cache
46
3f8349b7
NR
47## Version 2.1.0
48
49- Better IOUtils
50
b771aed5
NR
51## Version 2.0.0
52
53- API change
54 - IOUtils is now split between itself and ImageUtils -- some changes required in dependant projects
55 - Some slight renaming in StringUtils/IOUtils/ImageUtils
56
57- New class ImageText
58 - To create ASCII art
59
60## Version 1.6.3
61
62- Version.java
63 - Fix toString issues + test + update scripts
64
65## Version 1.6.2
66
67- Version.java
68 - Now supports "tag" on the versions (i.e., 0.0.4-niki1 -> tag is "niki", tagVersion is 1)
69
70## Version 1.6.1
71
72- Serialisation utilities
73 - Now supports enums and BufferedImages
74
75## Version 1.6.0
76
77- Serialisation utilities
78 - Server class to send/receive objects via network easily
79 - Serialiser now supports Arrays + fixes
80
81## Version 1.5.1
82
83- Serialisation utilities
84 - SerialUtils is now public and can be used to dynamically create an Object
85 - The Importer is now easier to use
86
87## Version 1.5.0
88
89- Bundles: change in Bundles and meta data
90 - The meta data is more complete now, but it breaks compatibility with both Bundles and @Meta
91 - A description can now be added to a bundle item in the graphical editor as a tooltip
92
93- Serialisation utilities
94 - A new set of utilities to quickly serialise objects
95
96## Version 1.4.3
97
98- Bugfix: unhtml
99 - Also replace non-breakable spaces by normal spaces
100
101## Version 1.4.2
102
103- Bugfix: Deltree
104 - Deltree was not OK for files...
105
106## Version 1.4.1
107
108- Progress
109 - Better handling of min==max case
110 - New methods .done() and .add(int step)
111
112## Version 1.4.0
113
114- R/W Bundles
115 - Bundle is now Read/Write
116
117- Bundle Configuration
118 - New UI controls to configure the Bundles graphically
119
120## Version 1.3.6
121
122- Fix for Java 1.6 compat
123 - Java 1.6 cannot compile it due to variables with ambigous names (which
124 - Java 1.8 can identify)
125
126## Version 1.3.5
127
128- Improve ProgressBar UI
129 - It now shows all the progression bars of the different steps of progression at the same time
130
131## Version 1.3.4
132
133- Improve TestCase error reporting
134 - We know display the full stack trace even for AssertionErrors
135
136- Extends Version
137 - ...with new methods: isOlderThan(Version) and isNewerThan(Version)
138
139## Version 1.3.3
140
141- New Version class
142 - Which can parse versions from the running program
143
144## Version 1.2.3
145
146- Add openResource and getVersion in IOUtils
147 - The file VERSION is supposed to exist
148
149- Give more informartion on AssertErrors
150 - The TestCase were not always helpful in case of AssertExceptions; they now print the stacktrace (they only used to do it for non-assert exceptions)
151
152- Fix configure.sh
153 - The VERSION file was not added, the Main method was not the correct one (so it was not producing working runnable JAR, yet it stated so)
154
155## Version 1.2.2
156
157- Fix bug in Bundle regarding \t handling
158 - ...tests should be written (later)
159
160## Version 1.2.1
161
162- New drawEllipse3D method
163 - ...in UIUtils
164
165## Version 1.1.1
166
167- Add UI component for Progress
168 - Still a WIP, it only show the current progress bar, still not the children bars (it's planned)
169
170## Version 1.1.0
171
172- Add progress reporting, move to ui package
173 - A new progress reporting system (and tests) in the new ui package (some other classes have been moved into ui, too: WrapLayout and UIUtils)
174
175## Version 1.0.0
176
177- Add WrapLayout and UIUtils
178 - A FlowLayout that automatically wrap to the next line (from existing code found on internet) and a method to set a fake-native look & feel
179
180## Version 0.9.7
181
182- Improve toImage and allow non-resetable InputStreams
183 - ...though they are then automatically saved onto disk then re-opened, then the file is deleted at the end of the process -- bad perfs
184 - Worse, it does it even if no EXIF metadata are present (because it cannot know that before reading the Stream, and cannot save a partially, non-resetable Stream to disk)
185
186- Reoarganize some methods from String to IO
187
188## Version 0.9.6
189
190- New test system
191 - Now some unit tests have been added, as well as the support classes
192
193## Version 0.9.5
194
195- Resource bundle bug
196 - UTF-8 strings were sometimes wrangled
197 - It is fixed by using a Bundle#Control, whih sadly is only available in Java 1.6+
198
199## Version 0.9.4
200
201- Compatibility bug
202 - Again... because of some useless imports made there for a wrong jDoc comment
203
204## Version 0.9.3
205
206- Compatibility bug
207 - The library did not work with JDK versions prior to 1.8 because of a dependency on Base64
208 - A new (public domain) class was used instead, which is compatible with Java 1.5 this time
209
210## Version 0.9.2
211
212- Initial version
213 - ...on GIT
214