diff --git a/CHANGELOG b/CHANGELOG index 0101c0e..1dbf324 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,18 +1,20 @@ -NEW VERSION: DAY DATE 2018 +1.2: Tuesday 24th July 2018 Features: -> clear clip with MIDI -> build with meson -> space triggers special clip -> manual BPM input (right click on Tap-Button) - -> avoid noise on all controls Improvements: + -> avoid noise on all controls -> reduce default metronome volume -> make label code consistent - -> mute compiler warnings + -> fix compiler warnings -> remove all hard coded scene numbers -> add some debug outputs + -> metronome fancy fades + -> better icon file Fixes: -> fix several leaks and errors @@ -23,6 +25,7 @@ Fixes: -> fix input signal flow -> fix input volume for clip recording -> fix timing issues after changing playspeed + -> fix scenes losing names once a scene is played 1.1.1: Sunday 9th April 2017 Cleanup: diff --git a/CMakeLists.txt b/CMakeLists.txt index f0aa217..977cf9f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,8 +4,8 @@ cmake_minimum_required (VERSION 2.6) project (LUPPP) set(LUPPP_VERSION_MAJOR "1") -set(LUPPP_VERSION_MINOR "1") -set(LUPPP_VERSION_PATCH "1") +set(LUPPP_VERSION_MINOR "2") +set(LUPPP_VERSION_PATCH "0") set(LUPPP_VERSION "${LUPPP_VERSION_MAJOR}.${LUPPP_VERSION_MINOR}.${LUPPP_VERSION_PATCH}") diff --git a/README.md b/README.md index 5654c56..7ea2dcd 100644 --- a/README.md +++ b/README.md @@ -32,9 +32,10 @@ Install Run the following commands from the top directory to configure & install Luppp: ```bash +meson build cd build -./compile.sh -./run.sh +ninja +./luppp ``` diff --git a/meson.build b/meson.build index 4fe900c..050e1b1 100644 --- a/meson.build +++ b/meson.build @@ -4,7 +4,7 @@ project( 'openav_luppp', ['c','cpp'], ]) conf_data = configuration_data() -conf_data.set('version', '1.1.1') +conf_data.set('version', '1.2.0') if(get_option('tests') == true)