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