--- libgig/trunk/ChangeLog 2020/05/19 14:55:48 3774 +++ libgig/trunk/ChangeLog 2021/05/09 10:37:39 3878 @@ -1,4 +1,4 @@ -Version SVN trunk (?) +Version 4.3.0 (9 May 2021) * general changes: - Require at least a C++11 compliant compiler. @@ -39,6 +39,10 @@ GetScriptPatchVariable(), SetScriptPatchVariable(), UnsetScriptPatchVariable(); stored persistently as new 'SCPV' RIFF chunk as child of our '3LS ' list chunk on Instrument level. + - Fixed undefined behaviour when modifying script slots on an instrument + that had been cloned and not been saved yet (e.g. unintended modification + of original instrument's script slots, and crash on Instrument destruction + due to double free of pScriptRefs). * src/Serialization.cpp, src/Serialization.h: - Fixed broken Archive(RawData) constructor which always threw an @@ -50,6 +54,19 @@ - Added new method Archive::operation() which allows applications to distinguish between serialization vs. deserialization in their serialize() method implementations. + - Added built-in support for C++ Array<> objects (a.k.a. std::vector from + the STL). + - Member offsets are now signed and for (newly added support of) member + variables on the heap -1 is always used as offset instead. + - Added built-in support for C++ Set<> objects (a.k.a. std::set from the + STL). + - DataType: Added optional 2nd custom type name. + - Added built-in support for C++ Map<> objects (a.k.a. std::map from the + STL). + + * src/helper.h: + - Fix compile error with GCC 9 due to ignored result value of vasprintf() + function call. * src/tools/gigdump.cpp: - Print dimension region properties LFO1WaveForm, LFO2WaveForm,