Skip to content

Commit eae568c

Browse files
committed
Update ELSE
1 parent 7153e16 commit eae568c

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

Libraries/pd-else

Submodule pd-else updated 156 files

Source/Pd/Setup.cpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -966,6 +966,7 @@ void zerox_tilde_setup();
966966
void above_tilde_setup();
967967
void add_tilde_setup();
968968
void adsr_tilde_setup();
969+
void asr_tilde_setup();
969970
void setup_allpass0x2e2nd_tilde();
970971
void setup_allpass0x2erev_tilde();
971972
void args_setup();
@@ -1026,6 +1027,7 @@ void setup_ctl0x2ein();
10261027
void setup_ctl0x2eout();
10271028
void cusp_tilde_setup();
10281029
void datetime_setup();
1030+
void dir_setup();
10291031
void db2lin_tilde_setup();
10301032
void decay_tilde_setup();
10311033
void decay2_tilde_setup();
@@ -1194,6 +1196,8 @@ void susloop_tilde_setup();
11941196
void suspedal_setup();
11951197
void svfilter_tilde_setup();
11961198
void symbol2any_setup();
1199+
void smooth_tilde_setup();
1200+
void smooth2_tilde_setup();
11971201
void tanh_tilde_setup();
11981202
void tabplayer_tilde_setup();
11991203
void tabreader_setup();
@@ -1456,6 +1460,7 @@ void Setup::initialiseELSE()
14561460
above_tilde_setup();
14571461
add_tilde_setup();
14581462
adsr_tilde_setup();
1463+
asr_tilde_setup();
14591464
setup_allpass0x2e2nd_tilde();
14601465
setup_allpass0x2erev_tilde();
14611466
args_setup();
@@ -1517,6 +1522,7 @@ void Setup::initialiseELSE()
15171522
setup_ctl0x2eout();
15181523
cusp_tilde_setup();
15191524
datetime_setup();
1525+
dir_setup();
15201526
db2lin_tilde_setup();
15211527
decay_tilde_setup();
15221528
decay2_tilde_setup();
@@ -1686,6 +1692,8 @@ void Setup::initialiseELSE()
16861692
suspedal_setup();
16871693
svfilter_tilde_setup();
16881694
symbol2any_setup();
1695+
smooth_tilde_setup();
1696+
smooth2_tilde_setup();
16891697
tanh_tilde_setup();
16901698
tabplayer_tilde_setup();
16911699
tabreader_setup();

Source/Sidebar/Palettes.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ class Palettes final : public Component
856856

857857
PluginEditor* editor;
858858

859-
File palettesFile = ProjectInfo::appDataDir.getChildFile(".palettes_test_5");
859+
File palettesFile = ProjectInfo::appDataDir.getChildFile(".palettes_test_6");
860860
// File palettesFile = ProjectInfo::appDataDir.getChildFile(".palettes"); // TODO: move palette location once we have finished all the default palettes
861861

862862
ValueTree objectTree;
@@ -887,7 +887,7 @@ class Palettes final : public Component
887887
{ "gendyn osc", "#X obj 0 0 else/gendyn.m~" },
888888
{ "pluck", "#X obj 0 0 else/pluck.m~" },
889889
{ "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~" },
891891
{ "8-step sequencer", "#X obj 0 0 else/seq8.m~" },
892892
{ "adsr", "#X obj 0 0 else/adsr.m~" },
893893
} },

Source/Utility/Config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ struct ProjectInfo {
4545
#else
4646
static inline File const appDataDir = File::getSpecialLocation(File::SpecialLocationType::userDocumentsDirectory).getChildFile("plugdata");
4747
#endif
48-
static inline String const versionSuffix = "-18";
48+
static inline String const versionSuffix = "-19";
4949
static inline File const versionDataDir = appDataDir.getChildFile("Versions").getChildFile(ProjectInfo::versionString + versionSuffix);
5050
};
5151

0 commit comments

Comments
 (0)