Merge pull request #258 from openAVproductions/release_1.2

Release 1.2.0, closes https://github.com/openAVproductions/openAV-Luppp/milestone/5
main
Harry van Haaren 2018-07-24 22:32:40 +01:00 committed by GitHub
commit abb0bfc923
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 8 deletions

View File

@ -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:

View File

@ -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}")

View File

@ -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
```

View File

@ -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)