File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -966,6 +966,7 @@ void zerox_tilde_setup();
966
966
void above_tilde_setup ();
967
967
void add_tilde_setup ();
968
968
void adsr_tilde_setup ();
969
+ void asr_tilde_setup ();
969
970
void setup_allpass0x2e2nd_tilde ();
970
971
void setup_allpass0x2erev_tilde ();
971
972
void args_setup ();
@@ -1026,6 +1027,7 @@ void setup_ctl0x2ein();
1026
1027
void setup_ctl0x2eout ();
1027
1028
void cusp_tilde_setup ();
1028
1029
void datetime_setup ();
1030
+ void dir_setup ();
1029
1031
void db2lin_tilde_setup ();
1030
1032
void decay_tilde_setup ();
1031
1033
void decay2_tilde_setup ();
@@ -1194,6 +1196,8 @@ void susloop_tilde_setup();
1194
1196
void suspedal_setup ();
1195
1197
void svfilter_tilde_setup ();
1196
1198
void symbol2any_setup ();
1199
+ void smooth_tilde_setup ();
1200
+ void smooth2_tilde_setup ();
1197
1201
void tanh_tilde_setup ();
1198
1202
void tabplayer_tilde_setup ();
1199
1203
void tabreader_setup ();
@@ -1456,6 +1460,7 @@ void Setup::initialiseELSE()
1456
1460
above_tilde_setup ();
1457
1461
add_tilde_setup ();
1458
1462
adsr_tilde_setup ();
1463
+ asr_tilde_setup ();
1459
1464
setup_allpass0x2e2nd_tilde ();
1460
1465
setup_allpass0x2erev_tilde ();
1461
1466
args_setup ();
@@ -1517,6 +1522,7 @@ void Setup::initialiseELSE()
1517
1522
setup_ctl0x2eout ();
1518
1523
cusp_tilde_setup ();
1519
1524
datetime_setup ();
1525
+ dir_setup ();
1520
1526
db2lin_tilde_setup ();
1521
1527
decay_tilde_setup ();
1522
1528
decay2_tilde_setup ();
@@ -1686,6 +1692,8 @@ void Setup::initialiseELSE()
1686
1692
suspedal_setup ();
1687
1693
svfilter_tilde_setup ();
1688
1694
symbol2any_setup ();
1695
+ smooth_tilde_setup ();
1696
+ smooth2_tilde_setup ();
1689
1697
tanh_tilde_setup ();
1690
1698
tabplayer_tilde_setup ();
1691
1699
tabreader_setup ();
Original file line number Diff line number Diff line change @@ -856,7 +856,7 @@ class Palettes final : public Component
856
856
857
857
PluginEditor* editor;
858
858
859
- File palettesFile = ProjectInfo::appDataDir.getChildFile(" .palettes_test_5 " );
859
+ File palettesFile = ProjectInfo::appDataDir.getChildFile(" .palettes_test_6 " );
860
860
// File palettesFile = ProjectInfo::appDataDir.getChildFile(".palettes"); // TODO: move palette location once we have finished all the default palettes
861
861
862
862
ValueTree objectTree;
@@ -887,7 +887,7 @@ class Palettes final : public Component
887
887
{ " gendyn osc" , " #X obj 0 0 else/gendyn.m~" },
888
888
{ " pluck" , " #X obj 0 0 else/pluck.m~" },
889
889
{ " brane" , " #X obj 0 0 else/brane.m~" },
890
- { " instrument " , " #X obj 0 0 else/instrument .m~" },
890
+ { " sfont " , " #X obj 0 0 else/sfont .m~" },
891
891
{ " 8-step sequencer" , " #X obj 0 0 else/seq8.m~" },
892
892
{ " adsr" , " #X obj 0 0 else/adsr.m~" },
893
893
} },
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ struct ProjectInfo {
45
45
#else
46
46
static inline File const appDataDir = File::getSpecialLocation(File::SpecialLocationType::userDocumentsDirectory).getChildFile(" plugdata" );
47
47
#endif
48
- static inline String const versionSuffix = " -18 " ;
48
+ static inline String const versionSuffix = " -19 " ;
49
49
static inline File const versionDataDir = appDataDir.getChildFile(" Versions" ).getChildFile(ProjectInfo::versionString + versionSuffix);
50
50
};
51
51
You can’t perform that action at this time.
0 commit comments