/[svn]/libgig/trunk/ChangeLog
ViewVC logotype

Contents of /libgig/trunk/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1199 - (show annotations) (download)
Sun May 20 10:11:39 2007 UTC (16 years, 10 months ago) by persson
File size: 14913 byte(s)
* added write support for the 3crc and einf chunks
* two previously unknown fields in dimension definition are now saved
* added constants for gig file versions

1 Version CVS HEAD (?)
2
3 * packaging changes:
4 - added Mac OSX XCode project files (patch by Toshi Nagata)
5 - Dev-C++ (win32) project file is automatically updated with
6 the version info from configure.in
7
8 * src/DLS.cpp, src/DLS.h:
9 - added Sampler::AddSampleLoop() and Sampler::DeleteSampleLoop() methods
10 - fixed write support for big-endian systems
11 - improved handling of fixed length info strings - separate default
12 lengths can be specified for each INFO chunk
13
14 * src/gig.cpp, src/gig.h:
15 - fixed segmentation fault in the gig::File destructor sequence which
16 happened when gig::Group informations were accessed before
17 - fixed write support for big-endian systems
18 - defined lengths of a fixed set of info strings. These strings
19 are saved when the file is written, even if they are empty.
20 - added missing parameter initalizations in sample, region and
21 instrument constructors
22 - clear unused fields when saving samples and regions
23 - fixed write support bugs: v3 dimension limits and chunksize
24 weren't saved, leverage controller of type controlchange
25 couldn't be saved, group name list chunk was placed wrong,
26 dimension region chunks also placed wrong
27 - added initialization of some fixed info strings in file and
28 instrument
29 - write support: files created by libgig will now have the RIFF
30 chunks in correct order
31 - write support: two previously unknown fields in dimension
32 definition are now saved
33 - added constants for gig file versions
34 - write support: the 3crc and einf chunks are now created or
35 updated when a file is saved (3crc contains sample checksums,
36 einf contains file statistics)
37
38 * src/RIFF.cpp, src/RIFF.h:
39 - added File::SetByteOrder method
40
41 Version 3.1.1 (24 Mar 2007)
42
43 * packaging changes:
44 - ported to Windows using native Windows functions for file IO
45 (provided Dev-C++ + mingw project file)
46 - only export relevant files to Doxygen API documentation
47
48 * src/gig.cpp, src/gig.h:
49 - custom velocity splits now works for gig v3 files too
50 - added support for custom splits points for other dimensions than
51 velocity (gig v3 feature)
52 - added "smart midi" and "round robin keyboard" dimensions
53 - added new method File::DeleteGroupOnly() which only deletes the given
54 group but moves all its members to another group, the other method,
55 that is File::DeleteGroup() now removes not just the group, but also
56 all the samples that belong to that group
57 - fixed crash which occured on interfering File::DeleteSample() and
58 File::GetNextSample() calls (due to iterator invalidation)
59 - fixed group names which were not saved
60 - fixed group destructor which did not remove the RIFF chunk associated
61 with the group
62 - added Instrument::MoveRegion method
63 - fixed constructor for Region, which did not initialize correctly
64 when used from Instrument::AddRegion
65 - when saving, override the gig::Regions sample reference simply by
66 the region's first dimension region's sample (avoids an exception
67 when trying to save a new instrument)
68 - fixed AddDimension() method which did not fill out all mandatory
69 dimension definition fields
70
71 * src/DLS.cpp, src/DLS.h:
72 - added Instrument::MoveRegion method
73 - fixed software info field which was wrongly stored on instruments,
74 causing an exception when trying to save a new instrument
75
76 * src/RIFF.cpp, src/RIFF.h:
77 - fixed RIFF::Chunk destructor which did not unregister previously
78 resized chunks, leading to a "zero size chunk" exception when
79 File::Save() was called
80 - added List::MoveSubChunk method
81
82 Version 3.1.0 (24 Nov 2006)
83
84 * packaging changes:
85 - changed deprecated copyright attribute to license;
86 added ldconfig to post-(un)install steps on libgig.spec (RPM)
87
88 * src/gig.cpp, src/gig.h:
89 - added support for more than one set of custom velocity splits
90 inside a region (for example different velocity split levels for
91 pedal up and pedal down)
92 - sample loop parameters are now taken from the DimensionRegion
93 instead of the wave chunk
94 - keyswitching dimension is changed from split type "normal" to
95 "bit"
96 - real support for 24 bit samples - samples are not truncated to
97 16 bits anymore
98 - support for reading of ".art" files. (Merging of .art and .gig
99 files are not implemented yet.)
100 - several fixes for the write support
101 - support for sample groups added
102
103 * src/DLS.cpp, src/DLS.h:
104 - support for reading of ".art" files
105 - removed incorrect use of memccpy in the write support (patch by
106 Jeremy Kerr)
107 - several fixes for the write support
108
109 * src/gigextract.cpp:
110 - real support for 24 bit samples
111
112 * src/gigdump.cpp:
113 - print global file informations
114 - print sample groups
115
116 * general changes:
117 - added CPPUnit test cases (at the moment primarily for automatic check
118 of Gigasampler write support)
119
120 Version 3.0.0 (28 Apr 2006)
121
122 * general changes:
123 - added write support (that is for creating and modifying RIFF, DLS and
124 gig files)
125 - loading DLS and gig files is now much more permissive, DLS and gig
126 files are now loaded even if mandatory RIFF chunks are missing
127 - fixed some memory management errors, one of them was causing a
128 crash when a multi-file gig was deallocated
129
130 * src/gig.cpp, src/gig.h:
131 - fixed the GetVelocityCutoff function, it wasn't always using the
132 VCFVelocityScale parameter when no cutoff controller was defined
133 - support for the gig v3 feature to have a number of dimension
134 splits not equal to a power of two
135 - added write support (highly experimental)
136
137 * src/DLS.cpp, src/DLS.h:
138 - fixed loading of Articulation Connections (<artl> list chunks were
139 seeked instead of ordinary <artl> data chunks)
140 - added write support (highly experimental)
141
142 * src/RIFF.cpp, src/RIFF.h:
143 - added write support
144 - Chunk::LoadChunkData() can now be called again to resize the buffer
145 after a Chunk::Resize() and before the File::Save() call to allow
146 placing the new data in the chunk's write buffer and perform the
147 resize and write operations in one rush
148
149 * src/gigdump.cpp:
150 - fixed to show the correct amount of dimension regions instead of 32
151 (patch by James Wylder)
152
153 * src/dlsdump.cpp:
154 - show for every region the name of the referenced sample
155 - show file name in quotation marks
156
157 Version 2.0.2 (15 Aug 2005)
158
159 * packaging changes:
160 - require automake (>= 1.5) for 'make -f Makefile.cvs'
161 (mandatory for 'dist-bzip2' automake option)
162
163 * src/gig.cpp, src/gig.h:
164 - support for gig v3 multi-file format (.gig, .gx01, .gx02, ...),
165 the extension files are read automatically when the samples are
166 loaded
167 - fixed the 24 bit decompression, the result should now be exact
168 instead of an approximation
169 - added VCFCutoffControllerInvert parameter and GetVelocityCutoff
170 function to DimensionRegion
171
172 * src/DLS.cpp, src/DLS.h:
173 - the upper bits of the pool table indices are read (used as
174 extension file numbers for gig v3)
175
176 * src/RIFF.cpp, src/RIFF.h:
177 - the file name is remembered in the RIFF::File object
178
179 Version 2.0.1 (12 Jun 2005)
180
181 * packaging changes:
182 - include debian/ directory on 'make dist'
183 - create a bzip2 tarball on 'make dist'
184
185 * src/gigextract.cpp:
186 - show also version of libsndfile or build version of libaudiofile when
187 using the -v switch
188 - fixed mutual link dependency to libsndfile / libaudiofile
189
190 * src/gig.cpp, src/gig.h:
191 - added DimensionRegion::GetVelocityRelease function
192
193 Version 2.0.0 (9 May 2005)
194
195 * packaging changes:
196 - fixed conditional linkage of either libsndfile or libaudiofile
197 (if none of the two exist, configure script will abort)
198 - man pages are now auto generated with the correct libgig version
199
200 * src/gig.cpp, src/gig.h:
201 - experimental support for Gigasampler v3 format;
202 64 bit file offsets are truncated to 32 bit, 24 bit samples are
203 truncated to 16 bit, up to 8 dimensions are read, additional
204 articulation informations are ignored at the moment
205 (patch by Andreas Persson)
206 - added some file format compatibility checks
207 - fixed vcf_type_lowpassturbo value (vcf_type_lowpassturbo was actually
208 never used, because the necessary check was made before
209 initialization)
210 - fixed crossfade points order (structure for big endian and little
211 endian systems was interchanged)
212 - fixed some memory leaks (patch by 'Gene', a.k.a Anders Alm)
213 - fixed crash which occured when patches did not have a sample assigned
214 to their region or dimension region (patch by Andreas Persson)
215 - support for compressed mono samples
216 - experimental support for compressed 24 bit samples
217 - fixed decompression on big-endian CPUs
218 - fixed decompression bug that truncated the last block of samples
219 - external decompression buffers can now be used for streaming samples
220 to avoid race conditions in case of multiple streaming threads
221 - added pre-calculated sample attenuation parameter
222 - added v3 "random" and "round robin" dimensions
223 - implemented progress indicator callback mechanism for loading
224 instruments and samples
225 - added functions libraryName() and libraryVersion()
226
227 * src/DLS.cpp, src/DLS.h:
228 - fixed File constructor which caused variable File::Instruments always
229 to be zero
230 - added functions libraryName() and libraryVersion()
231
232 * src/RIFF.cpp, src/RIFF.h:
233 - fixed method List::LoadSubChunks() which did not restore the original
234 position within the body of the given list chunk
235 - added functions libraryName() and libraryVersion()
236
237 * src/rifftree.cpp:
238 - added command line switch -v to show rifftree's revision and the used
239 libgig version
240
241 * src/dlsdump.cpp:
242 - added command line switch -v to show dlsdump's revision and the used
243 libgig version
244
245 * src/gigdump.cpp:
246 - added output of UnityNote, FineTune, Gain, SampleStartOffset an
247 LoopPlayCount
248 - added command line switch -v to show gigdump's revision and the used
249 libgig version
250
251 * src/gigextract.cpp:
252 - support for compressed mono samples and compressed 24 bit samples
253 - added command line switch -v to show gigextract's revision and the
254 used libgig version
255
256 Version 1.0.0 (26 Nov 2004)
257
258 * packaging changes:
259 - renamed 'libgig.pc.in' -> 'gig.pc.in' and renamed pkg-config lib name
260 'libgig' -> 'gig' as it's common practice to omit the 'lib' prefix
261 - fixed man pages automake install rule (which didn't work on Mandrake,
262 SuSE and Fedora)
263 - fixed generation of Doxygen API documentation (now also included in
264 RPM and Debian packages)
265
266 * src/gig.cpp, src/gig.h:
267 - fixed / improved accuracy of all three velocity to volume
268 transformation functions a.k.a. 'nonlinear','linear','special'
269 (patch by Andreas Persson)
270 - denormals are filtered from the velocity to volume tables
271 - bugfix for dimension region switching (wrong handling of the release
272 trigger dimension, no bit range check for dimensions of split type
273 'split_type_bit')
274 - fixed panorama value in DimensionRegion (invalid conversion from
275 signed 7 bit to signed 8 bit)
276 - added class attribute 'Layers' to class 'gig::Region'
277 - symbol prototyping of gig::Region (fixes build failure with qsampler)
278
279 * src/gigextract.cpp:
280 - added support for libsndfile (if libaudiofile and libsndfile are
281 available then libsndfile is preferred)
282
283 * src/gigdump.cpp:
284 - added printout for dimension informations (amount, type, bits, zones)
285 - added printout for velocity response curve parameters
286 - added printout for crossfade definitions
287 - added printout for panorama value for each DimensionRegion
288 - replaced printout of DLS Region layer by printout of amount of
289 Gigasampler layers
290
291 Version 0.7.1 (2 Jul 2004)
292
293 * packaging changes:
294 - added libgig.spec and libgig.pc package configurations for generating
295 Redhat packages
296 - header files included on installation.
297 - autotools-generated files removed from CVS repository.
298 - added support for generating Debian packages
299 - version of shared library can be set in configure.in
300
301 Version 0.7.0 (3 May 2004)
302
303 * general changes:
304 - various big endian specific corrections
305 (successfully tested now on PPC)
306 - minor adjustments to avoid compile errors on some systems
307 (using now pow() instead of powl() and --pedantic g++ compiler switch)
308 - libtoolized the library
309 - added man pages for the command line tools
310 (gigextract, gigdump, dlsdump, rifftree)
311
312 * src/gig.cpp, src/gig.h:
313 - fixed bug in decompression algorithm which caused it not to detect
314 the end of a stream
315 - added method GetVelocityAttenuation() to class 'DimensionRegion' which
316 takes the MIDI key velocity value as an argument and returns the
317 appropriate volume factor (0.0 ... 1.0) for the sample to be played
318 back, the velocity curve transformation functions used for this are
319 only an approximation so far
320 - fixed class attributes 'Sample::LoopStart', 'Sample::LoopEnd' and
321 'Sample::LoopSize' which reflected wrong values
322 - class attributes 'Sample::LoopStart' and 'Sample::LoopEnd' are now
323 measured in sample points instead of byte offset
324 - renamed misleading attribute name 'Sample::MIDIPitchFraction' to
325 'Sample::FineTune'
326 - added class attribute 'Sample::LoopSize'
327 - added method GetInstrument(uint index) to class 'File'
328 - added ReadAndLoop() method to class 'Sample' which is an extension to
329 the normal Read() method to honor the sample's looping information
330 while streaming from disk
331 - changed interface for 'attenuation_ctrl_t', 'eg1_ctrl_t' and
332 'eg2_ctrl_t': replaced this huge enumeration by a structure which
333 reflects the MIDI controller number in case of an ordinary control
334 change controller (this saves a huge switch-case block in the
335 application of the library user)
336 - renamed following attributes in class 'DimensionRegion':
337 'AttenuationContol' -> 'AttenuationController',
338 'InvertAttenuationControl' -> 'InvertAttenuationController',
339 'AttenuationControlTreshold' -> 'AttenuationControllerThreshold'
340 - minor fix in API documentation for method GetVelocityAttenuation() in
341 class 'DimensionRegion'
342
343 * src/RIFF.cpp, src/RIFF.h:
344 - added additional API documentation
345 - minor fix in Chunk::Read() method (only a minor efficiency issue)
346
347 * src/gigdump.cpp:
348 - added printout of samples' looping informations
349
350 Version 0.6.0 (3 Nov 2003)
351
352 * initial release

  ViewVC Help
Powered by ViewVC