You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add song detune modulator. Fix behavior of "N" key to be undo-able properly, and add new patterns to the song if needed. Max volume is now in line with beepbox's. Add jummbox_offline.html.
option({selected: true,disabled: true,hidden: false},"File"),// todo: "hidden" should be true but looks wrong on mac chrome, adds checkmark next to first visible option. :(
373
373
option({value: "new"},"+ New Blank Song"),
@@ -1601,6 +1601,7 @@ namespace beepbox {
1601
1601
settingList.push("tempo");
1602
1602
settingList.push("reverb");
1603
1603
settingList.push("next bar");
1604
+
settingList.push("song detune");
1604
1605
}
1605
1606
// Populate mod setting options for instrument scope.
1606
1607
else{
@@ -1736,6 +1737,12 @@ namespace beepbox {
1736
1737
else
1737
1738
needReset=true;
1738
1739
break;
1740
+
caseModSetting.mstSongDetune:
1741
+
if(modStatus==ModStatus.msForSong)
1742
+
setIndex=5;
1743
+
else
1744
+
needReset=true;
1745
+
break;
1739
1746
caseModSetting.mstNone:
1740
1747
default:
1741
1748
break;
@@ -1984,32 +1991,54 @@ namespace beepbox {
1984
1991
// Find lowest-index unused pattern for current channel
0 commit comments