From 6414fd36c48d897a54cf21896b4ba693be6f8fe6 Mon Sep 17 00:00:00 2001 From: falkTX Date: Thu, 4 Apr 2024 17:30:01 +0200 Subject: [PATCH] Cleanup, tweak issue template Signed-off-by: falkTX --- .github/ISSUE_TEMPLATE/bug.yaml | 6 +++--- Makefile | 3 ++- plugins/Makefile | 1 + plugins/plugins.cpp | 4 ---- 4 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml index e010766..21d67a5 100644 --- a/.github/ISSUE_TEMPLATE/bug.yaml +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -5,7 +5,7 @@ body: id: version attributes: label: Version - value: "23.10" + value: "24.04" validations: required: true - type: dropdown @@ -14,7 +14,7 @@ body: label: Plugin type multiple: true options: - - Native + - Native / JACK - AU - CLAP - LV2 @@ -31,7 +31,7 @@ body: - type: input id: daw-host attributes: - label: "DAW / host" + label: "DAW / Host (if applicable)" validations: required: false - type: textarea diff --git a/Makefile b/Makefile index 109c4e6..c9f010f 100644 --- a/Makefile +++ b/Makefile @@ -10,10 +10,11 @@ include $(ROOT)/Makefile.base.mk # Set version # also set in: +# .github/ISSUE_TEMPLATE/bug.yaml # src/CardinalCommon.cpp `CARDINAL_VERSION` # src/CardinalPlugin.cpp `getVersion` # utils/macOS/Info_{JACK,Native}.plist -# src/CardinalCommon.cpp src/CardinalPlugin.cpp utils/macOS/Info_{JACK,Native}.plist +# .github/ISSUE_TEMPLATE/bug.yaml src/CardinalCommon.cpp src/CardinalPlugin.cpp utils/macOS/Info_{JACK,Native}.plist VERSION = 24.04 # -------------------------------------------------------------- diff --git a/plugins/Makefile b/plugins/Makefile index 40cb2cd..ac9d0fb 100644 --- a/plugins/Makefile +++ b/plugins/Makefile @@ -1030,6 +1030,7 @@ STARLINGVIA_CUSTOM = Scanner Scale Wavetable # -------------------------------------------------------------- # stocaudio + PLUGIN_FILES += $(filter-out stocaudio/src/plugin.cpp,$(wildcard stocaudio/src/*.cpp)) # -------------------------------------------------------------- diff --git a/plugins/plugins.cpp b/plugins/plugins.cpp index 60e1307..eb86948 100644 --- a/plugins/plugins.cpp +++ b/plugins/plugins.cpp @@ -3008,8 +3008,6 @@ static void initStatic__StarlingVia() if (spl.ok()) { #define modelScanner modelStarlingViaScanner -#define Scale starlingViaScale -#define Wavetable starlingViaWavetable p->addModel(modelMeta); p->addModel(modelGateseq); p->addModel(modelScanner); @@ -3020,8 +3018,6 @@ static void initStatic__StarlingVia() p->addModel(modelSync3XL); p->addModel(modelSync3XLLevels); #undef modelScanner -#undef Scale -#undef Wavetable } }