Browse Source

Cleanup, tweak issue template

Signed-off-by: falkTX <falktx@falktx.com>
tags/24.04
falkTX 1 year ago
parent
commit
6414fd36c4
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
4 changed files with 6 additions and 8 deletions
  1. +3
    -3
      .github/ISSUE_TEMPLATE/bug.yaml
  2. +2
    -1
      Makefile
  3. +1
    -0
      plugins/Makefile
  4. +0
    -4
      plugins/plugins.cpp

+ 3
- 3
.github/ISSUE_TEMPLATE/bug.yaml 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


+ 2
- 1
Makefile 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


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


+ 1
- 0
plugins/Makefile 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))


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


+ 0
- 4
plugins/plugins.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
} }
} }




Loading…
Cancel
Save