Skip to content

Commit

Permalink
v1.0.13 (update) Morpher supporting per-device snapshots for MACRO mode
Browse files Browse the repository at this point in the history
  • Loading branch information
justlep committed Aug 4, 2016
1 parent 3340089 commit 1af933c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
7 changes: 6 additions & 1 deletion src/lep/value/MacroValueSet.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,14 @@ lep.MacroValueSet = lep.util.extendClass(lep.ValueSet, {

this.deviceName = ko.observable('');

cursorDevice.addNameObserver(40, 'unknown device', function(deviceName) {
cursorDevice.addNameObserver(50, 'unknown device', function(deviceName) {
self.deviceName(deviceName);
});

/** @Override */
this.dynamicId = ko.computed(function() {
return '' + self.id + '_' + self.name + '__' + self.deviceName();
});
}

});
Binary file modified stable-version-for-download/LeP's Controller Scripts v1.0.13.zip
Binary file not shown.
7 changes: 4 additions & 3 deletions stable-version-for-download/history.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@

v1.0.13 (04-Aug-2016)
- Params mode now recalls the last selected parameter page per device
- BCR2000: Params mode on the lower 3 knob rows allows controlling 3*8 parameters simultaneously (even for non-fixed parameter pages)
- BCR2000 + BCF2000: Morpher for Params mode will now morph parameters of ALL pages (i.e. up to 12*8 parameters simultaneously)
- BCR2000: the lower 3 encoder rows in PARAM mode now allow controlling 3*8 parameters simultaneously (incl. non-fixed parameter pages)
- BCR2000 + BCF2000: PARAM mode now recalls the last selected parameter page per device
- BCR2000 + BCF2000: Morpher for PARAM mode will now morph parameters of ALL pages (i.e. up to 12*8 parameters) simultaneously
- BCF2000 + BCF2000: Morpher for PARAM and MACRO mode will recall snapshots per device

v1.0.12 (06-May-2016)
- fixed BCR2000 auto-switch to preset 29 via sysex
Expand Down

0 comments on commit 1af933c

Please sign in to comment.