@@ -1 +1 @@ | |||||
Subproject commit e288f163bbf3af6ae24e9df6cdd23e755ff1aaf5 | |||||
Subproject commit 06843c20353b0f829ddc52a1e5c801d799d343ef |
@@ -1,6 +1,6 @@ | |||||
dpf_add_plugin(Nekobi | dpf_add_plugin(Nekobi | ||||
TARGETS | TARGETS | ||||
clap dssi lv2 vst2 vst3 | |||||
au clap dssi lv2 vst2 vst3 | |||||
FILES_DSP | FILES_DSP | ||||
DistrhoPluginNekobi.cpp | DistrhoPluginNekobi.cpp | ||||
FILES_UI | FILES_UI | ||||
@@ -1,6 +1,6 @@ | |||||
/* | /* | ||||
* DISTRHO Nekobi Plugin, based on Nekobee by Sean Bolton and others. | * DISTRHO Nekobi Plugin, based on Nekobee by Sean Bolton and others. | ||||
* Copyright (C) 2013-2022 Filipe Coelho <falktx@falktx.com> | |||||
* Copyright (C) 2013-2024 Filipe Coelho <falktx@falktx.com> | |||||
* | * | ||||
* This program is free software; you can redistribute it and/or | * This program is free software; you can redistribute it and/or | ||||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU General Public License as | ||||
@@ -25,6 +25,9 @@ | |||||
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/Nekobi" | #define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/Nekobi" | ||||
#define DISTRHO_PLUGIN_CLAP_ID "studio.kx.distrho.Nekobi" | #define DISTRHO_PLUGIN_CLAP_ID "studio.kx.distrho.Nekobi" | ||||
#define DISTRHO_PLUGIN_BRAND_ID Dstr | |||||
#define DISTRHO_PLUGIN_UNIQUE_ID DNek | |||||
#define DISTRHO_PLUGIN_HAS_UI 1 | #define DISTRHO_PLUGIN_HAS_UI 1 | ||||
#define DISTRHO_PLUGIN_IS_RT_SAFE 1 | #define DISTRHO_PLUGIN_IS_RT_SAFE 1 | ||||
#define DISTRHO_PLUGIN_IS_SYNTH 1 | #define DISTRHO_PLUGIN_IS_SYNTH 1 | ||||
@@ -34,4 +37,6 @@ | |||||
#define DISTRHO_UI_DEFAULT_WIDTH DistrhoArtworkNekobi::backgroundWidth | #define DISTRHO_UI_DEFAULT_WIDTH DistrhoArtworkNekobi::backgroundWidth | ||||
#define DISTRHO_UI_DEFAULT_HEIGHT DistrhoArtworkNekobi::backgroundHeight | #define DISTRHO_UI_DEFAULT_HEIGHT DistrhoArtworkNekobi::backgroundHeight | ||||
#define DPF_VST3_DONT_USE_BRAND_ID | |||||
#endif // DISTRHO_PLUGIN_INFO_H_INCLUDED | #endif // DISTRHO_PLUGIN_INFO_H_INCLUDED |
@@ -80,11 +80,6 @@ protected: | |||||
return d_version(1, 1, 0); | return d_version(1, 1, 0); | ||||
} | } | ||||
int64_t getUniqueId() const noexcept override | |||||
{ | |||||
return d_cconst('D', 'N', 'e', 'k'); | |||||
} | |||||
// ------------------------------------------------------------------- | // ------------------------------------------------------------------- | ||||
// Init | // Init | ||||
@@ -24,6 +24,7 @@ FILES_UI = \ | |||||
UI_TYPE = generic | UI_TYPE = generic | ||||
FILE_BROWSER_DISABLED = true | FILE_BROWSER_DISABLED = true | ||||
SKIP_NATIVE_AUDIO_FALLBACK = true | |||||
include ../../dpf/Makefile.plugins.mk | include ../../dpf/Makefile.plugins.mk | ||||
# -------------------------------------------------------------- | # -------------------------------------------------------------- | ||||
@@ -37,6 +38,6 @@ endif | |||||
# -------------------------------------------------------------- | # -------------------------------------------------------------- | ||||
# Enable all possible plugin types | # Enable all possible plugin types | ||||
all: jack dssi lv2_sep vst2 vst3 clap | |||||
all: au clap dssi jack lv2_sep vst2 vst3 | |||||
# -------------------------------------------------------------- | # -------------------------------------------------------------- |