Skip to content

Commit 3e96237

Browse files
committed
Update to latest ELSE
1 parent 7df2302 commit 3e96237

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

Libraries/pd-else

Submodule pd-else updated 453 files

Source/Components/DraggableNumber.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class DraggableNumber : public Component, public TextEditor::Listener
104104

105105
void focusLost(FocusChangeType const cause) override
106106
{
107-
textEditorTextChanged (*editor);
107+
if(editor) textEditorTextChanged (*editor);
108108
onInteraction(false);
109109
}
110110

Source/Pd/Setup.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1159,7 +1159,6 @@ void receiver_setup();
11591159
void rescale_setup();
11601160
void rescale_tilde_setup();
11611161
void resonant_tilde_setup();
1162-
void resonant2_tilde_setup();
11631162
void retrieve_setup();
11641163
void rint_setup();
11651164
void rint_tilde_setup();
@@ -1270,7 +1269,6 @@ void pm6_tilde_setup();
12701269
void var_setup();
12711270
void conv_tilde_setup();
12721271
void fm_tilde_setup();
1273-
void vcf2_tilde_setup();
12741272
void setup_mpe0x2ein();
12751273
void velvet_tilde_setup();
12761274
void popmenu_setup();
@@ -1648,7 +1646,6 @@ void Setup::initialiseELSE()
16481646
rescale_setup();
16491647
rescale_tilde_setup();
16501648
resonant_tilde_setup();
1651-
resonant2_tilde_setup();
16521649
retrieve_setup();
16531650
rint_setup();
16541651
rint_tilde_setup();
@@ -1764,7 +1761,6 @@ void Setup::initialiseELSE()
17641761
var_setup();
17651762
conv_tilde_setup();
17661763
fm_tilde_setup();
1767-
vcf2_tilde_setup();
17681764
setup_mpe0x2ein();
17691765
#if ENABLE_FFMPEG
17701766
setup_play0x2efile_tilde();

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 = "-16";
48+
static inline String const versionSuffix = "-18";
4949
static inline File const versionDataDir = appDataDir.getChildFile("Versions").getChildFile(ProjectInfo::versionString + versionSuffix);
5050
};
5151

0 commit comments

Comments
 (0)