From a3779576a2831784bca6e67a69ff7a9d3d0b6f3d Mon Sep 17 00:00:00 2001 From: rl2939 <60378449+rl2939@users.noreply.github.com> Date: Tue, 10 Feb 2026 13:06:20 -0500 Subject: [PATCH] Update Autinn. --- plugins/Autinn | 2 +- plugins/Makefile | 2 +- plugins/plugins.cpp | 14 ++++++++++++++ 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/plugins/Autinn b/plugins/Autinn index bc880d9..3bd00a2 160000 --- a/plugins/Autinn +++ b/plugins/Autinn @@ -1 +1 @@ -Subproject commit bc880d9d8fb59016de61e3253aff2b543d7bb665 +Subproject commit 3bd00a2a3ac08b4832fe577b3d0312478f6e2cf2 diff --git a/plugins/Makefile b/plugins/Makefile index 68c1558..f5bcb5e 100644 --- a/plugins/Makefile +++ b/plugins/Makefile @@ -531,7 +531,7 @@ MINIPLUGIN_FILES += AudibleInstruments/eurorack/stmlib/utils/random.cc PLUGIN_FILES += $(wildcard Autinn/src/*.cpp) -AUTINN_CUSTOM = Chord Vibrato +AUTINN_CUSTOM = Chord Vibrato Snare # -------------------------------------------------------------- # Axioma diff --git a/plugins/plugins.cpp b/plugins/plugins.cpp index 80759e2..25e80ee 100644 --- a/plugins/plugins.cpp +++ b/plugins/plugins.cpp @@ -106,6 +106,7 @@ extern Model* modelBlank; */ #define modelChord modelAutinnChord #define modelVibrato modelAutinnVibrato +#define modelSnare modelAutinnSnare extern Model* modelJette; extern Model* modelFlora; extern Model* modelOxcart; @@ -130,8 +131,14 @@ extern Model* modelFil; extern Model* modelNap; extern Model* modelMelody; extern Model* modelChord; +extern Model* modelKicker; +extern Model* modelSnare; +extern Model* modelCoil; +extern Model* modelGeiger; +extern Model* modelSaw2; #undef modelChord #undef modelVibrato +#undef modelSnare // Axioma #include "Axioma/src/plugin.hpp" @@ -1554,6 +1561,7 @@ static void initStatic__Autinn() { #define modelChord modelAutinnChord #define modelVibrato modelAutinnVibrato +#define modelSnare modelAutinnSnare p->addModel(modelAmp); p->addModel(modelDeadband); p->addModel(modelBass); @@ -1578,8 +1586,14 @@ static void initStatic__Autinn() p->addModel(modelNap); p->addModel(modelMelody); p->addModel(modelChord); + p->addModel(modelKicker); + p->addModel(modelSnare); + p->addModel(modelCoil); + p->addModel(modelGeiger); + p->addModel(modelSaw2); #undef modelChord #undef modelVibrato +#undef modelSnare } }