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