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