commit 77aaacb5b961b7bf49d1c9307766a06a13ad6fdd
parent c10fc711c78f3496680171142e714e9fb6908054
Author: fundamental <mark.d.mccurry@gmail.com>
Date: Sat, 12 Mar 2016 10:48:27 -0500
Prepare 2.5.4 Release
Diffstat:
7 files changed, 20 insertions(+), 6 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 2.8)
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/")
project(zynaddsubfx)
-set(VERSION "2.5.3")
+set(VERSION "2.5.4")
#Include RTOSC
diff --git a/HISTORY.txt b/HISTORY.txt
@@ -1,3 +1,17 @@
+2.5.4 (12 March 2016)
+ - Add realtime automation for subnote parameters
+ - Add FLTK UI for LV2 plugins
+ - Add support for '~' in bank paths
+ - Fix VST crashes
+ - Fix VST loading issues
+ - Fix Microtonal copy/paste
+ - Fix GCC 5.3.0 build issues
+ - Fix autosave disable flag
+ - Fix license headers
+ - Fix plugin library directory
+ - Fix uninitialized filter bug in subnote
+ - Fix broken instrument send
+
2.5.3 (8 Feb 2016)
- Add LV2&VST support via DPF
- Add autosave
diff --git a/src/Misc/XMLwrapper.cpp b/src/Misc/XMLwrapper.cpp
@@ -89,7 +89,7 @@ XMLwrapper::XMLwrapper()
{
version.Major = 2;
version.Minor = 5;
- version.Revision = 3;
+ version.Revision = 4;
minimal = true;
diff --git a/src/Plugin/AbstractFX.hpp b/src/Plugin/AbstractFX.hpp
@@ -97,7 +97,7 @@ protected:
uint32_t getVersion() const noexcept override
{
// TODO: use config.h or globals.h
- return d_version(2, 5, 3);
+ return d_version(2, 5, 4);
}
/* --------------------------------------------------------------------------------------------------------
diff --git a/src/Plugin/ZynAddSubFX/ZynAddSubFX.cpp b/src/Plugin/ZynAddSubFX/ZynAddSubFX.cpp
@@ -191,7 +191,7 @@ protected:
uint32_t getVersion() const noexcept override
{
// TODO: use config.h or globals.h
- return d_version(2, 5, 3);
+ return d_version(2, 5, 4);
}
/**
diff --git a/src/Tests/guitar-adnote.xmz b/src/Tests/guitar-adnote.xmz
@@ -2,7 +2,7 @@
<?xml version="1.0f" encoding="UTF-8"?>
<!DOCTYPE ZynAddSubFX-data>
<ZynAddSubFX-data version-major="2" version-minor="5"
-version-revision="3" ZynAddSubFX-author="Nasca Octavian Paul">
+version-revision="4" ZynAddSubFX-author="Nasca Octavian Paul">
<INFORMATION>
<par_bool name="PADsynth_used" value="yes" />
</INFORMATION>
diff --git a/src/main.cpp b/src/main.cpp
@@ -3,7 +3,7 @@
main.cpp - Main file of the synthesizer
Copyright (C) 2002-2005 Nasca Octavian Paul
- Copyright (C) 2012-2014 Mark McCurry
+ Copyright (C) 2012-2016 Mark McCurry
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License