Skip to content

Commit 6414fd3

Browse files
committed
Cleanup, tweak issue template
Signed-off-by: falkTX <falktx@falktx.com>
1 parent 0f405dd commit 6414fd3

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

.github/ISSUE_TEMPLATE/bug.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ body:
55
id: version
66
attributes:
77
label: Version
8-
value: "23.10"
8+
value: "24.04"
99
validations:
1010
required: true
1111
- type: dropdown
@@ -14,7 +14,7 @@ body:
1414
label: Plugin type
1515
multiple: true
1616
options:
17-
- Native
17+
- Native / JACK
1818
- AU
1919
- CLAP
2020
- LV2
@@ -31,7 +31,7 @@ body:
3131
- type: input
3232
id: daw-host
3333
attributes:
34-
label: "DAW / host"
34+
label: "DAW / Host (if applicable)"
3535
validations:
3636
required: false
3737
- type: textarea

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ include $(ROOT)/Makefile.base.mk
1010
# Set version
1111

1212
# also set in:
13+
# .github/ISSUE_TEMPLATE/bug.yaml
1314
# src/CardinalCommon.cpp `CARDINAL_VERSION`
1415
# src/CardinalPlugin.cpp `getVersion`
1516
# utils/macOS/Info_{JACK,Native}.plist
16-
# src/CardinalCommon.cpp src/CardinalPlugin.cpp utils/macOS/Info_{JACK,Native}.plist
17+
# .github/ISSUE_TEMPLATE/bug.yaml src/CardinalCommon.cpp src/CardinalPlugin.cpp utils/macOS/Info_{JACK,Native}.plist
1718
VERSION = 24.04
1819

1920
# --------------------------------------------------------------

plugins/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1030,6 +1030,7 @@ STARLINGVIA_CUSTOM = Scanner Scale Wavetable
10301030

10311031
# --------------------------------------------------------------
10321032
# stocaudio
1033+
10331034
PLUGIN_FILES += $(filter-out stocaudio/src/plugin.cpp,$(wildcard stocaudio/src/*.cpp))
10341035

10351036
# --------------------------------------------------------------

plugins/plugins.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -3008,8 +3008,6 @@ static void initStatic__StarlingVia()
30083008
if (spl.ok())
30093009
{
30103010
#define modelScanner modelStarlingViaScanner
3011-
#define Scale starlingViaScale
3012-
#define Wavetable starlingViaWavetable
30133011
p->addModel(modelMeta);
30143012
p->addModel(modelGateseq);
30153013
p->addModel(modelScanner);
@@ -3020,8 +3018,6 @@ static void initStatic__StarlingVia()
30203018
p->addModel(modelSync3XL);
30213019
p->addModel(modelSync3XLLevels);
30223020
#undef modelScanner
3023-
#undef Scale
3024-
#undef Wavetable
30253021
}
30263022
}
30273023

0 commit comments

Comments
 (0)