Skip to content

Commit

Permalink
Update carla and dpf submodules, update Befaco plugin
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Sep 21, 2024
1 parent ae610b3 commit 1c659cb
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion carla
Submodule carla updated 68 files
+2 −2 .github/workflows/build.yml
+3 −6 .github/workflows/cmake.yml
+3 −3 .github/workflows/dpf.yml
+1 −1 .github/workflows/release.yml
+1 −0 .gitignore
+9 −0 Makefile
+1 −1 Makefile.print.mk
+1 −1 README.md
+98 −25 source/Makefile.deps.mk
+1 −1 source/backend/engine/CarlaEngineOsc.hpp
+18 −7 source/backend/engine/CarlaEngineOscHandlers.cpp
+2 −1 source/backend/utils/Makefile
+1 −0 source/bridges-plugin/Makefile
+18 −26 source/frontend/Makefile
+8 −17 source/frontend/bigmeter-ui
+4 −16 source/frontend/carla
+4 −16 source/frontend/carla-control
+4 −16 source/frontend/carla-jack-multi
+4 −16 source/frontend/carla-jack-single
+4 −16 source/frontend/carla-patchbay
+12 −18 source/frontend/carla-plugin
+4 −16 source/frontend/carla-rack
+18 −25 source/frontend/carla_app.py
+8 −17 source/frontend/carla_backend_qt.py
+7 −17 source/frontend/carla_frontend.py
+73 −32 source/frontend/carla_host.py
+8 −17 source/frontend/carla_host_control.py
+16 −20 source/frontend/carla_settings.py
+19 −25 source/frontend/carla_shared.py
+12 −19 source/frontend/carla_skin.py
+32 −21 source/frontend/carla_widgets.py
+31 −28 source/frontend/midipattern-ui
+10 −18 source/frontend/notes-ui
+10 −18 source/frontend/patchcanvas/__init__.py
+12 −19 source/frontend/patchcanvas/canvasbezierline.py
+12 −19 source/frontend/patchcanvas/canvasbezierlinemov.py
+14 −19 source/frontend/patchcanvas/canvasbox.py
+10 −18 source/frontend/patchcanvas/canvasboxshadow.py
+10 −18 source/frontend/patchcanvas/canvasfadeanimation.py
+15 −20 source/frontend/patchcanvas/canvasicon.py
+12 −19 source/frontend/patchcanvas/canvasline.py
+12 −19 source/frontend/patchcanvas/canvaslinemov.py
+26 −20 source/frontend/patchcanvas/canvasport.py
+8 −17 source/frontend/patchcanvas/canvasportglow.py
+12 −19 source/frontend/patchcanvas/patchcanvas.py
+13 −20 source/frontend/patchcanvas/scene.py
+10 −18 source/frontend/patchcanvas/theme.py
+8 −17 source/frontend/patchcanvas/utils.py
+263 −0 source/frontend/qt_compat.py
+8 −17 source/frontend/utils/qsafesettings.py
+32 −25 source/frontend/widgets/canvaspreviewframe.py
+10 −18 source/frontend/widgets/collapsablewidget.py
+12 −19 source/frontend/widgets/commondial.py
+12 −19 source/frontend/widgets/digitalpeakmeter.py
+30 −34 source/frontend/widgets/draggablegraphicsview.py
+14 −20 source/frontend/widgets/ledbutton.py
+17 −21 source/frontend/widgets/paramspinbox.py
+33 −22 source/frontend/widgets/pianoroll.py
+16 −21 source/frontend/widgets/pixmapdial.py
+12 −19 source/frontend/widgets/pixmapkeyboard.py
+14 −21 source/frontend/widgets/racklistwidget.py
+14 −20 source/frontend/widgets/scalablebutton.py
+17 −23 source/frontend/widgets/scalabledial.py
+18 −21 source/frontend/xycontroller-ui
+2 −12 source/plugin/Makefile
+36 −6 source/theme/CarlaStyle.cpp
+73 −63 source/theme/Makefile
+4 −0 source/utils/CarlaUtils.hpp
2 changes: 1 addition & 1 deletion dpf
Submodule dpf updated 1 files
+568 −156 distrho/extra/WebViewImpl.cpp
2 changes: 1 addition & 1 deletion plugins/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ MINIPLUGIN_FILES += BaconPlugs/src/Style.cpp
# --------------------------------------------------------------
# Befaco

PLUGIN_FILES += $(filter-out Befaco/src/plugin.cpp,$(wildcard Befaco/src/*.cpp))
PLUGIN_FILES += $(filter-out Befaco/src/plugin.cpp Befaco/src/MidiThing.cpp,$(wildcard Befaco/src/*.cpp))
PLUGIN_FILES += $(wildcard Befaco/src/noise-plethora/*/*.cpp)

# modules/types which are present in other plugins
Expand Down
4 changes: 4 additions & 0 deletions plugins/plugins.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1590,9 +1590,13 @@ static void initStatic__Befaco()
p->addModel(modelMotionMTR);
p->addModel(modelBurst);
p->addModel(modelVoltio);
p->addModel(modelOctaves);
#undef modelADSR
#undef modelMixer
#undef modelBurst

// NOTE disabled in Cardinal due to MIDI usage
spl.removeModule("MidiThingV2");
}
}

Expand Down
1 change: 1 addition & 0 deletions src/custom/dep.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,7 @@ static const struct {
{ kModeBefaco, "/Befaco/res/panels/SpringReverb.svg" },
{ kModeBefaco, "/Befaco/res/panels/StereoStrip.svg" },
{ kModeBefaco, "/Befaco/res/panels/Voltio.svg" },
{ kModeBefaco, "/Befaco/res/panels/Octaves.svg" },
// GPLv3+
{ kModeCardinal, "/Cardinal/res/AudioFile.svg" },
{ kModeCardinal, "/Cardinal/res/AudioToCVPitch.svg" },
Expand Down

0 comments on commit 1c659cb

Please sign in to comment.