-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update carla and dpf, get macOS behaviour the same level as others
Signed-off-by: falkTX <[email protected]>
- Loading branch information
Showing
9 changed files
with
51 additions
and
71 deletions.
There are no files selected for viewing
Submodule carla
updated
13 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* DISTRHO Ildaeil Plugin | ||
* Copyright (C) 2021-2023 Filipe Coelho <[email protected]> | ||
* Copyright (C) 2021-2024 Filipe Coelho <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License as | ||
|
@@ -585,15 +585,15 @@ class IldaeilPlugin : public IldaeilBasePlugin | |
|
||
int64_t getUniqueId() const override | ||
{ | ||
#if ILDAEIL_STANDALONE | ||
#if ILDAEIL_STANDALONE | ||
return d_cconst('d', 'I', 'l', 'd'); | ||
#elif DISTRHO_PLUGIN_IS_SYNTH | ||
#elif DISTRHO_PLUGIN_IS_SYNTH | ||
return d_cconst('d', 'I', 'l', 'S'); | ||
#elif DISTRHO_PLUGIN_WANT_MIDI_OUTPUT | ||
#elif DISTRHO_PLUGIN_WANT_MIDI_OUTPUT | ||
return d_cconst('d', 'I', 'l', 'M'); | ||
#else | ||
#else | ||
return d_cconst('d', 'I', 'l', 'F'); | ||
#endif | ||
#endif | ||
} | ||
|
||
/* -------------------------------------------------------------------------------------------------------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* DISTRHO Ildaeil Plugin | ||
* Copyright (C) 2021-2023 Filipe Coelho <[email protected]> | ||
* Copyright (C) 2021-2024 Filipe Coelho <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License as | ||
|
@@ -23,6 +23,8 @@ | |
#define DISTRHO_PLUGIN_URI "https://distrho.kx.studio/plugins/ildaeil#fx" | ||
#define DISTRHO_PLUGIN_CLAP_ID "studio.kx.distrho.ildaeil#fx" | ||
|
||
#define DISTRHO_PLUGIN_BRAND_ID Dstr | ||
#define DISTRHO_PLUGIN_UNIQUE_ID ilda | ||
#define DISTRHO_PLUGIN_CLAP_FEATURES "audio-effect", "stereo" | ||
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:UtilityPlugin" | ||
#define DISTRHO_PLUGIN_VST3_CATEGORIES "Fx|Stereo" | ||
|
@@ -45,6 +47,8 @@ | |
#define DISTRHO_UI_DEFAULT_WIDTH kInitialWidth | ||
#define DISTRHO_UI_DEFAULT_HEIGHT kInitialHeight | ||
|
||
#define DPF_VST3_DONT_USE_BRAND_ID | ||
|
||
#define ILDAEIL_STANDALONE 0 | ||
|
||
static constexpr const uint kInitialWidth = 520; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* DISTRHO Ildaeil Plugin | ||
* Copyright (C) 2021-2023 Filipe Coelho <[email protected]> | ||
* Copyright (C) 2021-2024 Filipe Coelho <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License as | ||
|
@@ -23,6 +23,8 @@ | |
#define DISTRHO_PLUGIN_URI "https://distrho.kx.studio/plugins/ildaeil#synth" | ||
#define DISTRHO_PLUGIN_CLAP_ID "studio.kx.distrho.ildaeil#synth" | ||
|
||
#define DISTRHO_PLUGIN_BRAND_ID Dstr | ||
#define DISTRHO_PLUGIN_UNIQUE_ID ilda | ||
#define DISTRHO_PLUGIN_CLAP_FEATURES "instrument", "stereo" | ||
#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:InstrumentPlugin" | ||
#define DISTRHO_PLUGIN_VST3_CATEGORIES "Instrument|Stereo" | ||
|
@@ -45,6 +47,8 @@ | |
#define DISTRHO_UI_DEFAULT_WIDTH kInitialWidth | ||
#define DISTRHO_UI_DEFAULT_HEIGHT kInitialHeight | ||
|
||
#define DPF_VST3_DONT_USE_BRAND_ID | ||
|
||
#define ILDAEIL_STANDALONE 0 | ||
|
||
static constexpr const uint kInitialWidth = 520; | ||
|