Browse Source

Preparations for AU release, cleanup

Signed-off-by: falkTX <falktx@falktx.com>
master
falkTX 1 year ago
parent
commit
7536d2ad75
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
5 changed files with 10 additions and 9 deletions
  1. +1
    -1
      dpf
  2. +1
    -1
      plugins/Nekobi/CMakeLists.txt
  3. +6
    -1
      plugins/Nekobi/DistrhoPluginInfo.h
  4. +0
    -5
      plugins/Nekobi/DistrhoPluginNekobi.hpp
  5. +2
    -1
      plugins/Nekobi/Makefile

+ 1
- 1
dpf

@@ -1 +1 @@
Subproject commit e288f163bbf3af6ae24e9df6cdd23e755ff1aaf5
Subproject commit 06843c20353b0f829ddc52a1e5c801d799d343ef

+ 1
- 1
plugins/Nekobi/CMakeLists.txt View File

@@ -1,6 +1,6 @@
dpf_add_plugin(Nekobi
TARGETS
clap dssi lv2 vst2 vst3
au clap dssi lv2 vst2 vst3
FILES_DSP
DistrhoPluginNekobi.cpp
FILES_UI


+ 6
- 1
plugins/Nekobi/DistrhoPluginInfo.h View File

@@ -1,6 +1,6 @@
/*
* 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
* 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_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_IS_RT_SAFE 1
#define DISTRHO_PLUGIN_IS_SYNTH 1
@@ -34,4 +37,6 @@
#define DISTRHO_UI_DEFAULT_WIDTH DistrhoArtworkNekobi::backgroundWidth
#define DISTRHO_UI_DEFAULT_HEIGHT DistrhoArtworkNekobi::backgroundHeight

#define DPF_VST3_DONT_USE_BRAND_ID

#endif // DISTRHO_PLUGIN_INFO_H_INCLUDED

+ 0
- 5
plugins/Nekobi/DistrhoPluginNekobi.hpp View File

@@ -80,11 +80,6 @@ protected:
return d_version(1, 1, 0);
}
int64_t getUniqueId() const noexcept override
{
return d_cconst('D', 'N', 'e', 'k');
}
// -------------------------------------------------------------------
// Init


+ 2
- 1
plugins/Nekobi/Makefile View File

@@ -24,6 +24,7 @@ FILES_UI = \

UI_TYPE = generic
FILE_BROWSER_DISABLED = true
SKIP_NATIVE_AUDIO_FALLBACK = true
include ../../dpf/Makefile.plugins.mk

# --------------------------------------------------------------
@@ -37,6 +38,6 @@ endif
# --------------------------------------------------------------
# Enable all possible plugin types

all: jack dssi lv2_sep vst2 vst3 clap
all: au clap dssi jack lv2_sep vst2 vst3

# --------------------------------------------------------------

Loading…
Cancel
Save