Skip to content

Commit

Permalink
Merge pull request #258 from openAVproductions/release_1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
harryhaaren committed Jul 24, 2018
2 parents 7ab4a9b + 4aaaea8 commit abb0bfc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
9 changes: 6 additions & 3 deletions 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
Expand All @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Expand Up @@ -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}")

Expand Down
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -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
```


Expand Down
2 changes: 1 addition & 1 deletion meson.build
Expand Up @@ -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)
Expand Down

0 comments on commit abb0bfc

Please sign in to comment.