Skip to content

Commit 1af933c

Browse files
committed
v1.0.13 (update) Morpher supporting per-device snapshots for MACRO mode
1 parent 3340089 commit 1af933c

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

src/lep/value/MacroValueSet.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,14 @@ lep.MacroValueSet = lep.util.extendClass(lep.ValueSet, {
1313

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

16-
cursorDevice.addNameObserver(40, 'unknown device', function(deviceName) {
16+
cursorDevice.addNameObserver(50, 'unknown device', function(deviceName) {
1717
self.deviceName(deviceName);
1818
});
19+
20+
/** @Override */
21+
this.dynamicId = ko.computed(function() {
22+
return '' + self.id + '_' + self.name + '__' + self.deviceName();
23+
});
1924
}
2025

2126
});
193 Bytes
Binary file not shown.

stable-version-for-download/history.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11

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

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

0 commit comments

Comments
 (0)