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