Cleanup, tweak issue template

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2024-04-04 17:30:01 +02:00
parent 0f405dd45b
commit 6414fd36c4
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0
4 changed files with 6 additions and 8 deletions

View file

@ -5,7 +5,7 @@ body:
id: version id: version
attributes: attributes:
label: Version label: Version
value: "23.10" value: "24.04"
validations: validations:
required: true required: true
- type: dropdown - type: dropdown
@ -14,7 +14,7 @@ body:
label: Plugin type label: Plugin type
multiple: true multiple: true
options: options:
- Native - Native / JACK
- AU - AU
- CLAP - CLAP
- LV2 - LV2
@ -31,7 +31,7 @@ body:
- type: input - type: input
id: daw-host id: daw-host
attributes: attributes:
label: "DAW / host" label: "DAW / Host (if applicable)"
validations: validations:
required: false required: false
- type: textarea - type: textarea

View file

@ -10,10 +10,11 @@ include $(ROOT)/Makefile.base.mk
# Set version # Set version
# also set in: # also set in:
# .github/ISSUE_TEMPLATE/bug.yaml
# src/CardinalCommon.cpp `CARDINAL_VERSION` # src/CardinalCommon.cpp `CARDINAL_VERSION`
# src/CardinalPlugin.cpp `getVersion` # src/CardinalPlugin.cpp `getVersion`
# utils/macOS/Info_{JACK,Native}.plist # 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 VERSION = 24.04
# -------------------------------------------------------------- # --------------------------------------------------------------

View file

@ -1030,6 +1030,7 @@ STARLINGVIA_CUSTOM = Scanner Scale Wavetable
# -------------------------------------------------------------- # --------------------------------------------------------------
# stocaudio # stocaudio
PLUGIN_FILES += $(filter-out stocaudio/src/plugin.cpp,$(wildcard stocaudio/src/*.cpp)) PLUGIN_FILES += $(filter-out stocaudio/src/plugin.cpp,$(wildcard stocaudio/src/*.cpp))
# -------------------------------------------------------------- # --------------------------------------------------------------

View file

@ -3008,8 +3008,6 @@ static void initStatic__StarlingVia()
if (spl.ok()) if (spl.ok())
{ {
#define modelScanner modelStarlingViaScanner #define modelScanner modelStarlingViaScanner
#define Scale starlingViaScale
#define Wavetable starlingViaWavetable
p->addModel(modelMeta); p->addModel(modelMeta);
p->addModel(modelGateseq); p->addModel(modelGateseq);
p->addModel(modelScanner); p->addModel(modelScanner);
@ -3020,8 +3018,6 @@ static void initStatic__StarlingVia()
p->addModel(modelSync3XL); p->addModel(modelSync3XL);
p->addModel(modelSync3XLLevels); p->addModel(modelSync3XLLevels);
#undef modelScanner #undef modelScanner
#undef Scale
#undef Wavetable
} }
} }