Skip to content

Commit

Permalink
Version: 2.16
Browse files Browse the repository at this point in the history
  • Loading branch information
jmamma committed Sep 8, 2018
1 parent 1fdad95 commit ea62f0d
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
MCL 2.16 08/08/2018

Changes:

Improvements to the behaviour of Parameter Locks.

- Track parameters with paramter locks now have their correct default
values detected. The default value is restored when the sequencer is
stopped, or on next trig without a lock.

Previously, saving the current kit or writing track to the current
pattern would incorrectly cause the 'default' parameter value to change
to the last parameter lock value sent.

SeqStepPage:

- TrigLocks are now cleared when a trig is set, not when a trig is deleted.

Bug fixes:

- MDExploit track switching improved.

MCL 2.15 01/08/2018

##### Important #######
Expand Down
2 changes: 1 addition & 1 deletion avr/cores/megacommand/MCL/MCL.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

#include "DSP.h"

#define VERSION 2015
#define VERSION 2016

#define CALLBACK_TIMEOUT 500
#define GUI_NAME_TIMEOUT 800
Expand Down
2 changes: 1 addition & 1 deletion avr/cores/megacommand/MCL/MCLGfx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ void MCLGfx::splashscreen() {
oled_display.display();
#else
char str1[17] = "MEGACOMMAND LIVE";
char str2[17] = "V2.15";
char str2[17] = "V2.16";
str1[16] = '\0';
LCD.goLine(0);
LCD.puts(str1);
Expand Down

0 comments on commit ea62f0d

Please sign in to comment.