From 7902c2683096671bd83b970dd81772576497e0e1 Mon Sep 17 00:00:00 2001 From: randall reichenbach Date: Wed, 17 Jun 2026 18:59:57 -0700 Subject: [PATCH 1/5] v3.1.0: Add CHANGELOG entry, add third party license doc --- CHANGELOG.md | 28 + THIRD_PARTY_LICENSES.md | 1157 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 1185 insertions(+) create mode 100644 THIRD_PARTY_LICENSES.md diff --git a/CHANGELOG.md b/CHANGELOG.md index b9c4d5620..dc1e6fdb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,34 @@ Notable user visible changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [v3.1.0] +### Added +- On-device (LCD) strobe tuner with mute. defaults to longpress on footswitch C +- Sync LCD and MOD-UI using WebSocket bridge (replaces last.json polling) +- Blend mode for parameter blending between snapshots +- Optional autosync for one-time send of MIDI CCs to current analog positions +- New wifi menu with scanning, multiple saved networks and in-progress animation +- Configurable LCD SPI speed via system menu +- Unit and integration tests with test harness +- `deploy.sh` to deploy your local code to the device +- `update.sh` for git pull + uv sync on-device +- `./run_emulator.sh` for a v1/v2/v3; requires [MOD Desktop](https://mod.audio/desktop/) + +### Fixed +- Users can now enter spaces in the letter selector (used for wifi config) +- Reduced footswitch and encoder burst latency +- Fix pedalboard reload detection crash +- Fix analog endpoint clamping +- Fix WiFi open networks and hotspot switching +- Fix menu scrolling for long lists +- Various type safety and dependency fixes (pillow, numpy, pi deps) + +### Changed +- Upgrade Neural Amp Modeler plugin to version 2.0 which includes support for A2 models (and quality scaling) +- Migrate dev dependencies to dependency-groups (uv) +- Add pyright type checking, ruff linting +- Move fonts to `fonts/` directory (DejaVu) + ## [v3.0.5] - 2026-06-12 No functional changes relative to v3.0.4 Prior releases did not correctly declare AGPL-3.0 licensing in accordance with included components. diff --git a/THIRD_PARTY_LICENSES.md b/THIRD_PARTY_LICENSES.md new file mode 100644 index 000000000..1c96772d7 --- /dev/null +++ b/THIRD_PARTY_LICENSES.md @@ -0,0 +1,1157 @@ +# Third-Party Licenses + +This document lists third-party software components included in or distributed with this project's Raspberry Pi OS image and software stack, along with their respective licenses. It is provided to satisfy attribution and license-disclosure obligations for all bundled open source components. + +**This project's own code is licensed under AGPL-3.0-or-later.** Components below are run as independent system services or separate processes (communicating via IPC, D-Bus, sockets, or HTTP) rather than linked into this project's codebase, except where noted. + +## Contents + +- [Core System Components (Cloned / Built from Source)](#core-system-components-cloned--built-from-source) +- [Python Dependencies](#python-dependencies) +- [LV2 Audio Plugins](#lv2-audio-plugins) + +--- + +## Core System Components (Cloned / Built from Source) + +These are the core audio/MIDI services and supporting tools built from source and included in the system image. Each runs as an independent process or service. + +| Component | Version | License | Author / Maintainer | Source | +|---|---|---|---|---| +| amidithru | 1.0-3 | GPL v2+ | BlokasLabs | [github.com/BlokasLabs/amidithru](https://github.com/BlokasLabs/amidithru.git) | +| browsepy | 0.5 | MIT | mod-audio | [github.com/micahvdm/browsepy](https://github.com/micahvdm/browsepy.git) | +| hylia | 1.0.1 | GPL v2+ | FalkTX | [github.com/falkTX/Hylia](https://github.com/falkTX/Hylia.git) | +| jack-example-tools | Debian release 4-4 | GPL 2 | Debian Multimedia Team | [salsa.debian.org/multimedia-team/jack-example-tools](https://salsa.debian.org/multimedia-team/jack-example-tools.git) | +| jack2 | 1.9.22 | GPL 2 | jackaudio | [github.com/jackaudio/jack2](https://github.com/jackaudio/jack2.git) | +| mod-host | 0.10.6 | GPL v3+ | mod-audio | [github.com/mod-audio/mod-host](https://github.com/mod-audio/mod-host) | +| mod-midi-merger | None | ISC | mod-audio | [github.com/mod-audio/mod-midi-merger](https://github.com/mod-audio/mod-midi-merger) | +| mod-ttymidi | None | GPL | mod_audio | [github.com/moddevices/mod-ttymidi](https://github.com/moddevices/mod-ttymidi.git) | +| mod-ui | v0.99.8 | AGPL-3.0 | mod-audio | [github.com/TreeFallSound/mod-ui](https://github.com/TreeFallSound/mod-ui.git) | +| pi-gen | 2025-11-24-raspios-bookworm-arm64 | BSD-3-Clause | RPi-Distro | [github.com/RPi-Distro/pi-gen](https://github.com/RPi-Distro/pi-gen) | +| touchosc2midi | 0.0.12 | MIT | BlokasLabs | [github.com/BlokasLabs/touchosc2midi](https://github.com/BlokasLabs/touchosc2midi.git) | + +> **Note:** `mod-ui` is distributed from this project's own fork (TreeFallSound/mod-ui), tracking upstream mod-audio/mod-ui, AGPL-3.0. + +--- + +## Python Dependencies + +Python packages installed in the runtime environment, extracted via `pip-licenses`. 57 runtime packages are listed below; 24 additional packages used only for development, linting, or documentation are listed separately and are not part of the distributed runtime image. + +### Runtime Dependencies + +| Package | Version | License | Source | +|---|---|---|---| +| aggdraw | 1.3.11 | Python (MIT style) | [link](https://github.com/pytroll/aggdraw) | +| appdirs | 1.4.4 | MIT License | [link](http://github.com/ActiveState/appdirs) | +| async-timeout | 4.0.2 | Apache Software License | [link](https://github.com/aio-libs/async-timeout) | +| backports.shutil-get-terminal-size | 1.0.0 | MIT License | [link](https://github.com/chrippa/backports.shutil_get_terminal_size) | +| blinker | 1.9.0 | MIT License | [link](https://github.com/pallets-eco/blinker/) | +| browsepy | 0.5.6 | MIT License | [link](https://github.com/ergoithz/browsepy) | +| certifi | 2022.9.24, 2026.5.20 | Mozilla Public License 2.0 (MPL 2.0) | [link](https://github.com/certifi/python-certifi) | +| cffi | 2.0.0 | MIT | [link](https://cffi.readthedocs.io/en/latest/whatsnew.html) | +| chardet | 5.1.0 | GNU Lesser General Public License v2 or later (LGPLv2+) | [link](https://github.com/chardet/chardet) | +| charset-normalizer | 3.0.1 | MIT License | [link](https://github.com/Ousret/charset_normalizer) | +| click | 8.4.1 | BSD-3-Clause | [link](https://github.com/pallets/click/) | +| colorzero | 2.0 | BSD License | — | +| Cython | 3.2.5 | Apache-2.0 | [link](https://cython.org/) | +| distro | 1.8.0 | Apache Software License | [link](https://github.com/python-distro/distro) | +| filelock | 3.9.0 | The Unlicense (Unlicense) | [link](https://github.com/tox-dev/py-filelock) | +| Flask | 3.1.3 | BSD-3-Clause | [link](https://github.com/pallets/flask/) | +| gpiozero | 2.0.1 | BSD License | [link](https://gpiozero.readthedocs.io/) | +| idna | 3.3 | BSD License | [link](https://github.com/kjd/idna) | +| ifaddr | 0.1.7 | MIT License | [link](https://github.com/pydron/ifaddr) | +| itsdangerous | 2.2.0 | BSD License | [link](https://github.com/pallets/itsdangerous/) | +| JACK-Client | 0.5.5 | MIT License | [link](http://jackclient-python.readthedocs.io/) | +| Jinja2 | 3.1.6 | BSD License | [link](https://github.com/pallets/jinja/) | +| lgpio | 0.2.2.0 | unlicense.org | [link](http://abyz.me.uk/lg/py_lgpio.html) | +| MarkupSafe | 3.0.3 | BSD-3-Clause | [link](https://github.com/pallets/markupsafe/) | +| mido | 1.1.24 | MIT | [link](https://mido.readthedocs.io/) | +| mod | 0.99.8 | GPLv3 | [link](http://moddevices.com/) | +| netifaces | 0.10.5 | MIT License | [link](https://bitbucket.org/al45tair/netifaces) | +| numpy | 2.4.6 | BSD-3-Clause AND 0BSD AND MIT AND Zlib AND CC0-1.0 | [link](https://numpy.org) | +| packaging | 26.2 | Apache-2.0 OR BSD-2-Clause | [link](https://github.com/pypa/packaging) | +| pigpio | 1.78 | unlicense.org | [link](http://abyz.me.uk/rpi/pigpio/python.html) | +| Pillow | 9.4.0 | Historical Permission Notice and Disclaimer (HPND) | [link](https://python-pillow.org) | +| platformdirs | 2.6.0 | MIT License | [link](https://github.com/platformdirs/platformdirs) | +| pyaml | 26.2.1 | Public Domain | [link](https://github.com/mk-fg/pretty-yaml) | +| pycparser | 3.0 | BSD-3-Clause | [link](https://github.com/eliben/pycparser) | +| pycryptodomex | 3.11.0 | Apache Software License; BSD License; Public Domain | [link](https://www.pycryptodome.org) | +| Pygments | 2.20.0 | BSD-2-Clause | [link](https://pygments.org) | +| pyliblo | 0.10.0 | LGPL | [link](http://das.nasophon.de/pyliblo/) | +| pyserial | 3.0 | BSD License | [link](https://github.com/pyserial/pyserial) | +| pystache | 0.5.4 | MIT License | [link](http://github.com/defunkt/pystache) | +| python-apt | 2.6.0 | GNU GPL | — | +| python-config | 0.1.2 | GNU General Public License v3 (GPLv3) | [link](https://github.com/KonishchevDmitry/python-config) | +| python-rtmidi | 1.5.8 | MIT License | [link](https://github.com/SpotlightKid/python-rtmidi) | +| PyYAML | 6.0.3 | MIT License | [link](https://pyyaml.org/) | +| requests | 2.28.1, 2.34.2 | Apache Software License | [link](https://requests.readthedocs.io) | +| rpi-lgpio | 0.6 | BSD License | [link](https://rpi-lgpio.readthedocs.io/) | +| scandir | 1.10.0 | BSD License | [link](https://github.com/benhoyt/scandir) | +| six | 1.16.0 | MIT License | [link](https://github.com/benjaminp/six) | +| smbus2 | 0.4.2 | MIT License | [link](https://github.com/kplindegaard/smbus2) | +| spidev | 3.5 | MIT License | [link](http://github.com/doceme/py-spidev) | +| ssh-import-id | 5.10 | GPLv3 | [link](https://launchpad.net/ssh-import-id) | +| tornado | 4.3 | Apache Software License | [link](http://www.tornadoweb.org/) | +| touchosc2midi | 0.0.12 | MIT License | [link](https://github.com/velolala/touchosc2midi) | +| unicategories | 0.1.2 | MIT License | [link](https://gitlab.com/ergoithz/unicategories) | +| urllib3 | 1.26.12 | MIT License | [link](https://urllib3.readthedocs.io/) | +| websockets | 16.0 | BSD-3-Clause | [link](https://github.com/python-websockets/websockets) | +| Werkzeug | 3.1.8 | BSD-3-Clause | [link](https://github.com/pallets/werkzeug/) | +| zeroconf | 0.47.3 | GNU Lesser General Public License v2 (LGPLv2); Other/Proprietary License | [link](https://github.com/python-zeroconf/python-zeroconf) | + +### Development / Build / Documentation Tools (not distributed at runtime) + +
+Expand list + +| Package | Version | License | Source | +|---|---|---|---| +| alabaster | 1.0.0 | BSD License | [link](https://alabaster.readthedocs.io/) | +| babel | 2.18.0 | BSD License | [link](https://babel.pocoo.org/) | +| coverage | 7.14.0 | Apache-2.0 | [link](https://github.com/coveragepy/coveragepy) | +| distlib | 0.3.6 | Python Software Foundation License | [link](https://bitbucket.org/pypa/distlib) | +| docopt | 0.6.2 | MIT License | [link](http://docopt.org) | +| docutils | 0.22.4 | BSD License; GNU General Public License (GPL); Public Domain | [link](https://docutils.sourceforge.io) | +| flake8 | 7.3.0 | MIT License | [link](https://github.com/pycqa/flake8) | +| imagesize | 2.0.0 | MIT License | [link](https://github.com/shibukawa/imagesize_py) | +| mccabe | 0.7.0 | MIT License | [link](https://github.com/pycqa/mccabe) | +| meson | 1.5.1 | Apache Software License | [link](https://mesonbuild.com) | +| pep8 | 1.7.1 | MIT License | [link](http://pep8.readthedocs.org/) | +| pycodestyle | 2.14.0 | MIT | [link](https://pycodestyle.pycqa.org/) | +| pyflakes | 3.4.0 | MIT License | [link](https://github.com/PyCQA/pyflakes) | +| roman-numerals | 4.1.0 | 0BSD OR CC0-1.0 | [link](https://github.com/AA-Turner/roman-numerals/blob/master/CHANGES.rst) | +| snowballstemmer | 3.1.0 | BSD-3-Clause | [link](https://github.com/snowballstem/snowball) | +| Sphinx | 9.0.4 | BSD-2-Clause | [link](https://www.sphinx-doc.org/) | +| sphinxcontrib-applehelp | 2.0.0 | BSD License | [link](https://www.sphinx-doc.org/) | +| sphinxcontrib-devhelp | 2.0.0 | BSD License | [link](https://www.sphinx-doc.org/) | +| sphinxcontrib-htmlhelp | 2.1.0 | BSD License | [link](https://www.sphinx-doc.org/) | +| sphinxcontrib-jsmath | 1.0.1 | BSD License | [link](http://sphinx-doc.org/) | +| sphinxcontrib-qthelp | 2.0.0 | BSD License | [link](https://www.sphinx-doc.org/) | +| sphinxcontrib-serializinghtml | 2.0.0 | BSD License | [link](https://www.sphinx-doc.org/) | +| toml | 0.10.2 | MIT License | [link](https://github.com/uiri/toml) | +| virtualenv | 20.17.1+ds | MIT License | [link](https://virtualenv.pypa.io/) | + +
+ +--- + +## LV2 Audio Plugins + + +### Aida DSP + +| Plugin | Version | License | +|--------|---------|---------| +| AIDA-X | 1.1 | http://spdx.org/licenses/GPL-3.0-or-later.html | + +### Antanas Bruzas + +| Plugin | Version | License | +|--------|---------|---------| +| abGate | 2.0 | lgpl | + +### Artican + +| Plugin | Version | License | +|--------|---------|---------| +| The Function | 2.0 | — | +| The Pilgrim | 2.0 | — | + +### Bernhard Rusch + +| Plugin | Version | License | +|--------|---------|---------| +| Molot Lite Mono | 0.1 | gpl | + +### Bollie + +| Plugin | Version | License | +|--------|---------|---------| +| Bollie Delay | 2.6 | gpl | +| Bollie Delay XT | 0.1 | gpl | + +### brummer + +| Plugin | Version | License | +|--------|---------|---------| +| bluesbreaker | 1.0 | — | +| Neural Record | 1.3 | https://spdx.org/licenses/GPL-2.0-or-later | +| PowerAmpImpulses | 1.1 | — | +| PowerAmpTubes | 1.1 | — | +| PreAmpImpulses | 1.1 | — | +| PreAmpTubes | 1.1 | — | +| Ratatouille | 9.5 | https://spdx.org/licenses/BSD-3-Clause | +| Record-Mono | 2.2 | isc | +| Record-Mono Mini | 2.2 | isc | + +### brummer10 + +| Plugin | Version | License | +|--------|---------|---------| +| CollisionDrive | 1.3 | — | +| FatFrog | 35.7 | isc | +| Harmonic Exciter | 1.0 | — | +| LittleFly | 35.0 | isc | +| MetalTone | 1.2 | — | +| Rumor | 1.2 | — | +| VintageAC30 | 1.0 | — | + +### bx5a,romi1502 + +| Plugin | Version | License | +|--------|---------|---------| +| Mr. Freeze | 0.1 | GPL | + +### Calf Studio Gear + +| Plugin | Version | License | +|--------|---------|---------| +| Calf Gate | — | lgpl | + +### Creative Intent + +| Plugin | Version | License | +|--------|---------|---------| +| Temper | 5.0 | — | + +### Damien Zammit + +| Plugin | Version | License | +|--------|---------|---------| +| ZamAutoSat | 2.7 | GPL v2+ | +| ZaMaximX2 | 2.7 | GPL v2+ | +| ZamComp | 2.7 | GPL v2+ | +| ZamCompX2 | 2.7 | GPL v2+ | +| ZamDelay | 2.7 | GPL v2+ | +| ZamEQ2 | 2.7 | GPL v2+ | +| ZamGate | 2.7 | GPL v2+ | +| ZamGateX2 | 2.7 | GPL v2+ | +| ZamGEQ31 | 2.7 | GPL v2+ | +| ZamHeadX2 | 2.14 | GPL v2+ | +| ZamPhono | 2.14 | GPL v2+ | +| ZamTube | 2.7 | GPL v2+ | +| ZaMultiComp | 2.7 | GPL v2+ | +| ZaMultiCompX2 | 2.7 | GPL v2+ | +| ZamVerb | 2.14 | GPL v2+ | + +### Datsounds + +| Plugin | Version | License | +|--------|---------|---------| +| Obxd | 2.0 | — | + +### dcoredump, dcoredump + +| Plugin | Version | License | +|--------|---------|---------| +| Dexed | 0.2 | gpl | + +### DISTRHO + +| Plugin | Version | License | +|--------|---------|---------| +| 3 Band EQ | 2.0 | LGPL | +| 3 Band Splitter | 2.0 | LGPL | +| DIE Fluid Synth | 2.2 | gpl | +| MaBitcrush | 0.1 | ISC | +| MaFreeverb | 0.1 | ISC | +| MaGigaverb | 0.1 | ISC | +| MaPitchshift | 0.1 | ISC | +| Ping Pong Pan | 2.0 | LGPL | + +### dRowAudio + +| Plugin | Version | License | +|--------|---------|---------| +| dRowAudio Tremolo | — | — | +| dRowAudio: Distortion | — | — | +| dRowAudio: Distortion Shaper | — | — | +| dRowAudio: Flanger | — | — | +| dRowAudio: Reverb | — | — | + +### Edgar Lubicz + +| Plugin | Version | License | +|--------|---------|---------| +| [SimSam](https://gitlab.com/edwillys/simsam) | 0.1 | gpl | + +### falkTX + +| Plugin | Version | License | +|--------|---------|---------| +| AirFont320 | 2.0 | LGPL | +| Audio Capture | 0.0 | AGPL-3.0 | +| Audio Gain (Mono) | 2.0 | GPLv2+ | +| Black Pearl 4A | 2.0 | LGPL | +| Black Pearl 4B | 2.0 | LGPL | +| Black Pearl 5 | 2.0 | LGPL | +| Fluid Bass | 2.0 | LGPL | +| Fluid Brass | 2.0 | LGPL | +| Fluid Chromatic Percussion | 2.0 | LGPL | +| Fluid Drums | 2.0 | LGPL | +| Fluid Ensemble | 2.0 | LGPL | +| Fluid Ethnic | 2.0 | LGPL | +| Fluid Guitars | 2.0 | LGPL | +| Fluid Organs | 2.0 | LGPL | +| Fluid Percussion | 2.0 | LGPL | +| Fluid Pianos | 2.0 | LGPL | +| Fluid Pipes | 2.0 | LGPL | +| Fluid Reeds | 2.0 | LGPL | +| Fluid SoundFX | 2.0 | LGPL | +| Fluid Strings | 2.0 | LGPL | +| Fluid SynthFX | 2.0 | LGPL | +| Fluid SynthLeads | 2.0 | LGPL | +| Fluid SynthPads | 2.0 | LGPL | +| FluidGM | 2.0 | LGPL | +| Kars | 2.1 | ISC | +| MIDI File | 150.22 | GPL-2.0 | +| Portal Sink | — | http://spdx.org/licenses/ISC.html | +| Rubberband (Mono) | 8.2 | gpl | + +### Guitarix team + +| Plugin | Version | License | +|--------|---------|---------| +| Gx Studio Preamp Stereo | 28.3 | isc | +| GxAlembic | 28.3 | isc | +| GxAmplifier Stereo | 28.3 | isc | +| GxAmplifier-X | 28.3 | isc | +| GxAutoWah | 28.3 | isc | +| GxAxisFace | 34.0 | isc | +| GxBaJaTubeDriver | 35.0 | isc | +| GxBarkGraphicEQ | 28.3 | isc | +| GxBlueAmp | 35.0 | isc | +| GxBoobTube | 35.0 | isc | +| GxBooster | 28.3 | isc | +| GxBottleRocket | 34.0 | isc | +| GxCabinet | 28.3 | isc | +| GxChorus-Stereo | 28.3 | isc | +| GxClubDrive | 37.0 | isc | +| GxColorSoundTonebender | 28.3 | isc | +| GxCompressor | 28.3 | isc | +| GxCreamMachine | 34.0 | isc | +| GxCrybabyGCB95 | 28.3 | isc | +| GxDelay-Stereo | 28.3 | isc | +| GxDenoiser2 | 35.0 | isc | +| Gxdetune | 28.3 | isc | +| Gxdigital_delay | 28.3 | isc | +| Gxdigital_delay_st | 28.3 | isc | +| GxDistortionPlus | 36.0 | isc | +| GxDOP250 | 34.0 | isc | +| Gxduck_delay | 28.3 | isc | +| Gxduck_delay_st | 28.3 | isc | +| GxEcho-Stereo | 28.3 | isc | +| GxEpic | 35.0 | isc | +| GxEternity | 35.0 | isc | +| GxExpander | 28.3 | isc | +| GxFenderizer | 35.0 | isc | +| GxFlanger | 28.3 | isc | +| GxFuzz | 28.3 | isc | +| GxFuzzFaceFullerMod | 28.3 | isc | +| GxFuzzFaceJH-2 | 28.3 | isc | +| GxFuzzMaster | 28.3 | isc | +| GxFz1b | 34.0 | isc | +| GxFz1s | 34.0 | isc | +| GxGraphicEQ | 28.3 | isc | +| GxGuvnor | 28.3 | isc | +| GxHeathkit | 34.0 | isc | +| GxHighFrequencyBrightener | 28.3 | isc | +| GxHogsFoot | 28.3 | isc | +| GxHornet | 28.3 | isc | +| GxHotBox | 34.0 | isc | +| GxHyperion | 28.3 | isc | +| GxJCM800pre | 28.3 | isc | +| GxJCM800pre ST | 28.3 | isc | +| GxKnightFuzz | 34.0 | isc | +| GxLiquidDrive | 34.0 | isc | +| GxLuna | 35.0 | isc | +| GxMicroAmp | 34.0 | isc | +| GxMole | 28.3 | isc | +| GxMuff | 28.3 | isc | +| GxMultiBandCompressor | 28.3 | isc | +| GxMultiBandDelay | 28.3 | isc | +| GxMultiBandDistortion | 28.3 | isc | +| GxMultiBandEcho | 28.3 | isc | +| GxMultiBandReverb | 28.3 | isc | +| GxOC-2 | 28.3 | isc | +| GxOsMutantes | 28.3 | isc | +| GxOverDriver | 28.3 | isc | +| GxPhaser | 28.3 | isc | +| GxPlexi | 35.0 | isc | +| GxPushPull | 28.3 | isc | +| GxQuack | 34.0 | isc | +| GxRangemaster | 28.3 | isc | +| GxRedeye Vibro Chump | 28.3 | isc | +| GxReverb-Stereo | 28.3 | isc | +| Gxroom_simulator | 28.3 | isc | +| GxSaturator | 28.3 | isc | +| GxScreamingBird | 28.3 | isc | +| GxSD1 | 34.0 | isc | +| GxSD2Lead | 34.0 | isc | +| GxShakaTube | 35.0 | isc | +| Gxshimmizita | 28.3 | isc | +| GxSloopyBlue | 35.0 | isc | +| GxSlowGear | 34.0 | isc | +| GxSunFace | 34.0 | isc | +| GxSupersonic | 35.0 | isc | +| GxSuppaToneBender | 28.3 | isc | +| GxSustainer | 28.3 | isc | +| GxSVT | 34.0 | isc | +| Gxswitched_tremolo | 28.3 | isc | +| GxSwitchlessWah | 1.0 | isc | +| GxTiltTone | 28.3 | isc | +| GxTimRay | 35.0 | isc | +| GxToneMachine | 34.0 | isc | +| GxToneMender | 28.3 | isc | +| GxTremolo | 28.3 | isc | +| GxTubeDistortion | 35.0 | isc | +| GxTubeScreamer | 28.3 | isc | +| GxTubeTremelo | 28.3 | isc | +| GxTubeVibrato | 28.3 | isc | +| GxUltraCab | 35.0 | isc | +| GxUVox720k | 34.0 | isc | +| GxValveCaster | 38.1 | isc | +| GxVBassPreAmp | 34.0 | isc | +| GxVintageFuzzMaster | 28.4 | isc | +| GxVMK2 | 34.0 | isc | +| GxVoodooFuzz | 28.3 | isc | +| GxVoxTonebender | 28.3 | isc | +| GxWah | 28.3 | isc | +| GxWahwah | 28.3 | isc | +| GxZita_rev1-Stereo | 28.3 | isc | +| GxZoom | 34.0 | isc | +| XDarkTerror | 35.0 | isc | +| XTinyTerror | 35.0 | isc | + +### GuitarML + +| Plugin | Version | License | +|--------|---------|---------| +| TS-M1N3 | 2.1 | — | + +### Hannes Braun + +| Plugin | Version | License | +|--------|---------|---------| +| Acceleration2 | 2.0 | MIT | +| ADClip7 | 2.0 | MIT | +| Baxandall | 2.0 | MIT | +| Capacitor | 2.0 | MIT | +| Capacitor2 | 2.0 | MIT | +| Channel8 | 2.0 | MIT | +| ClipOnly | 2.0 | MIT | +| ClipOnly2 | 2.0 | MIT | +| Console7Buss | 2.0 | MIT | +| Console7Cascade | 2.0 | MIT | +| Console7Channel | 2.0 | MIT | +| Console7Crunch | 2.0 | MIT | +| DeBess | 2.0 | MIT | +| Dyno | 2.0 | MIT | +| EdIsDim | 2.0 | MIT | +| EveryTrim | 2.0 | MIT | +| Galactic | 2.0 | MIT | +| Mackity | 2.0 | MIT | +| MidSide | 2.0 | MIT | +| Mojo | 2.0 | MIT | +| MV | 2.0 | MIT | +| Nikola | 2.0 | MIT | +| PocketVerbs | 2.0 | MIT | +| Pressure5 | 2.0 | MIT | +| Sidepass | 2.0 | MIT | +| Spiral | 2.0 | MIT | +| StarChild | 2.0 | MIT | +| Vibrato | 2.0 | MIT | + +### Igor Brkic + +| Plugin | Version | License | +|--------|---------|---------| +| VocProc | — | gpl | + +### J.Velcl@seznam.cz + +| Plugin | Version | License | +|--------|---------|---------| +| WOW | 0.0 | — | + +### Janos Buttgereit + +| Plugin | Version | License | +|--------|---------|---------| +| Schrammel OJD | 8.9 | — | + +### Jatin Chowdhury + +| Plugin | Version | License | +|--------|---------|---------| +| ChowCentaur | 2.4 | — | + +### Jean Pierre Cimalando + +| Plugin | Version | License | +|--------|---------|---------| +| Rézonateur | 0.0 | http://spdx.org/licenses/BSL-1.0 | +| Rézonateur stereo | 0.0 | http://spdx.org/licenses/BSL-1.0 | +| String machine | 0.0 | http://spdx.org/licenses/GPL-2.0-or-later | +| String machine chorus | 0.0 | http://spdx.org/licenses/GPL-2.0-or-later | +| String machine stereo chorus | 0.0 | http://spdx.org/licenses/GPL-2.0-or-later | + +### Lkjb + +| Plugin | Version | License | +|--------|---------|---------| +| Luftikus | — | — | +| ReFine | 2.1 | — | + +### LSP LV2 + +| Plugin | Version | License | +|--------|---------|---------| +| LSP IR Mono | 0.2 | lgpl | + +### Luciano Dato + +| Plugin | Version | License | +|--------|---------|---------| +| Noise repellent | — | LGPL-3.0 | + +### Martin Eastwood, falkTX + +| Plugin | Version | License | +|--------|---------|---------| +| MVerb | 2.0 | GPL v3+ | + +### Matt Tytel + +| Plugin | Version | License | +|--------|---------|---------| +| Helm | — | — | + +### Mayank Sanganeria + +| Plugin | Version | License | +|--------|---------|---------| +| Granulator | 1.0 | gpl | + +### Micah John + +| Plugin | Version | License | +|--------|---------|---------| +| Amp Profiler | — | isc | + +### Michael Willis + +| Plugin | Version | License | +|--------|---------|---------| +| Dragonfly Early Reflections | 4.6 | gpl-3.0.html | +| Dragonfly Plate Reverb | 4.6 | gpl-3.0.html | +| Dragonfly Room Reverb | 4.6 | gpl-3.0.html | + +### Michael Willis and Rob vd Berg + +| Plugin | Version | License | +|--------|---------|---------| +| Dragonfly Hall Reverb | 4.6 | gpl-3.0.html | + +### Mike Oliphant + +| Plugin | Version | License | +|--------|---------|---------| +| Neural Amp Modeler | 2.0 | gpl-3-0 | + +### Milk Brewster + +| Plugin | Version | License | +|--------|---------|---------| +| MIDI Gain | — | — | + +### MOD + +| Plugin | Version | License | +|--------|---------|---------| +| Arpeggiator | 1.2 | https://spdx.org/licenses/GPL-2.0-or-later | +| Attenuverter Booster | 3.0 | GPL v2+ | +| Audio to CV | 3.0 | — | +| AudioToCV Pitch | 2.0 | http://spdx.org/licenses/GPL-3.0-or-later.html | +| Cabinet Loader | 2.0 | http://spdx.org/licenses/ISC.html | +| Control to CV | 3.0 | GPL v2+ | +| Convolution Loader | 2.0 | http://spdx.org/licenses/ISC.html | +| CV ABS | 1.0 | GPL v2+ | +| CV Clock | 3.0 | — | +| CV Gate | 1.0 | GPL v2+ | +| CV meter | 1.0 | GPL v2+ | +| CV Parameter Modulation | 1.0 | GPL v2+ | +| CV Range Divider | 3.0 | GPL v2+ | +| CV Round | 1.0 | GPL v2+ | +| CV Switchbox 1-2 | 1.0 | — | +| CV Switchbox 1-3 | 1.0 | — | +| CV Switchbox 2-1 | 1.0 | — | +| CV Switchbox 3-1 | 1.0 | — | +| IR loader cabsim | 1.0 | isc | +| Logic Operators | 2.0 | Custom | +| MIDI SwitchBox 1-2 2C | 2.0 | GPLv2+ | +| MIDI SwitchBox 1-3 | 2.0 | GPLv2+ | +| MIDI SwitchBox 2-1 | 2.0 | GPLv2+ | +| MIDI SwitchBox 2-1 2C | 2.0 | GPLv2+ | +| MIDI SwitchBox 3-1 | 2.0 | GPLv2+ | +| MIDI to CV Poly | 1.1 | — | +| Mixer | 2.0 | GPLv3.0 | +| Mixer Stereo | 2.0 | GPLv3.0 | +| Random Generator | 1.0 | GPL v2+ | +| Slew Rate Limiter | 1.0 | — | +| Switchbox 1-2 ST | 1.1 | file:///home/pistomp/.lv2/switchbox_1-2_st.lv2/GPL | +| Switchbox 2-1 | 1.1 | file:///home/pistomp/.lv2/switchbox_2-1.lv2/GPL | +| Switchbox 2-1 ST | 1.1 | file:///home/pistomp/.lv2/switchbox_2-1_st.lv2/GPL | +| Volume | 1.0 | GPL v2+ | +| Volume 2x2 | 1.0 | GPL v2+ | + +### MOD Devices + +| Plugin | Version | License | +|--------|---------|---------| +| Compressor | 1.1 | http://spdx.org/licenses/ISC.html | +| Compressor Advanced | 1.1 | http://spdx.org/licenses/ISC.html | +| Noise Gate | 1.1 | http://spdx.org/licenses/ISC.html | +| Noise Gate Advanced | 1.1 | http://spdx.org/licenses/ISC.html | +| Noise Maker - ME | 1.1 | — | + +### MOD Team + +| Plugin | Version | License | +|--------|---------|---------| +| 2Voices | 0.4 | GPL | +| BandPassFilter | 0.0 | GPL | +| C* AmpVTS - Tube amp + Tone stack | 9.24 | gpl | +| C* AutoFilter | 9.24 | gpl | +| C* CabinetIII - Idealised loudspeaker cabinet emulation | 9.24 | gpl | +| C* CabinetIV - Idealised loudspeaker cabinet emulation | 9.24 | gpl | +| C* CEO - Chief Executive Oscillator | 9.24 | gpl | +| C* ChorusI - Mono chorus/flanger | 9.24 | gpl | +| C* Click - Metronome | 9.24 | gpl | +| C* Compress - Mono compressor | 9.24 | gpl | +| C* CompressX2 - Stereo compressor | 9.24 | gpl | +| C* Eq10 - 10-band equalizer | 9.24 | gpl | +| C* Eq10X2 - 10-band equalizer | 9.24 | gpl | +| C* Fractal - Audio stream from deterministic chaos | 9.24 | gpl | +| C* Narrower - Stereo image width reduction | 9.24 | gpl | +| C* Noisegate - Attenuate noise resident in silence | 9.24 | gpl | +| C* PhaserII - Mono phaser modulated by a Lorenz fractal | 9.24 | gpl | +| C* Plate - Versatile plate reverb | 9.24 | gpl | +| C* PlateX2 - Stereo in/out Versatile plate reverb | 9.24 | gpl | +| C* Saturate | 9.24 | gpl | +| C* Scape - Stereo delay + Filters | 9.24 | gpl | +| C* Sin - Sine wave generator | 9.24 | gpl | +| C* Spice | 9.24 | gpl | +| C* SpiceX2 | 9.24 | gpl | +| C* ToneStack - Tone stack emulation | 9.24 | gpl | +| C* White - White noise generator | 9.24 | gpl | +| C* Wider - Stereo image Synthesis | 9.24 | gpl | +| Capo | 0.4 | GPL | +| CrossOver 2 | 1.0 | GPL | +| CrossOver 3 | 1.0 | GPL | +| Drop | 0.2 | GPL | +| DS1 | 0.0 | GPL | +| Gain | 1.0 | GPL | +| Gain 2x2 | 1.0 | GPL | +| Harmonizer | — | GPL | +| Harmonizer2 | — | GPL | +| HarmonizerCS | — | GPL | +| HighPassFilter | 0.0 | GPL | +| LowPassFilter | 0.0 | GPL | +| MIDI SwitchBox 1-2 | 2.0 | GPLv2+ | +| MIDI to CV mono | 3.1 | — | +| Open Big Muff | 0.0 | GPL | +| Peak To CC | 0.0 | GPLv2+ | +| SooperLooper | 0.9 | gpl | +| SooperLooper 2x2 | 0.9 | gpl | +| Super Capo | — | GPL | +| Super Whammy | — | GPL | +| Switchbox 1-2 | 1.1 | GPL | +| SwitchTrigger4 | 1.1 | GPL | +| TAP AutoPanner | 7.2 | gpl | +| TAP Chorus/Flanger | 7.2 | gpl | +| TAP DeEsser | 7.2 | gpl | +| TAP Equalizer | 7.2 | gpl | +| TAP Equalizer/BW | 7.2 | gpl | +| TAP Fractal Doubler | 7.2 | gpl | +| TAP Mono Dynamics | 7.2 | gpl | +| TAP Pink/Fractal Noise | 7.2 | gpl | +| TAP Pitch Shifter | 7.2 | gpl | +| TAP Reflector | 7.3 | gpl | +| TAP Reverberator | 7.2 | gpl | +| TAP Rotary Speaker | 7.3 | gpl | +| TAP Scaling Limiter | 7.2 | gpl | +| TAP Sigmoid Booster | 7.2 | gpl | +| TAP Stereo Dynamics | 7.2 | gpl | +| TAP Stereo Echo | 7.3 | gpl | +| TAP Tremolo | 7.3 | gpl | +| TAP Tubewarmth | 7.2 | gpl | +| TAP Vibrato | 7.2 | gpl | +| ToggleSwitch | 1.1 | GPL | + +### ndc Plugs + +| Plugin | Version | License | +|--------|---------|---------| +| Amplitude Imposer | 0.1 | MIT | +| Cycle Shifter | 0.1 | MIT | +| Soul Force | 0.1 | MIT | + +### Nedko Arnaudov + +| Plugin | Version | License | +|--------|---------|---------| +| Vocoder | — | gpl | + +### Nick Dowell + +| Plugin | Version | License | +|--------|---------|---------| +| amsynth | 1.5 | gpl | + +### OpenAV + +| Plugin | Version | License | +|--------|---------|---------| +| Sorcer | 2.0 | — | + +### Paul Ferrand + +| Plugin | Version | License | +|--------|---------|---------| +| batteur | 1.0 | https://spdx.org/licenses/ISC | + +### Pjotr Lasschuit + +| Plugin | Version | License | +|--------|---------|---------| +| [Freakclip](https://github.com/pjotrompet) | 1.2 | gpl | +| [Freaktail](https://github.com/pjotrompet) | 1.0 | gpl | +| [Prefreak](https://github.com/pjotrompet) | 0.1 | gpl | + +### Plainweave Software + +| Plugin | Version | License | +|--------|---------|---------| +| JuceOPL | 2.0 | — | + +### remaincalm.org + +| Plugin | Version | License | +|--------|---------|---------| +| avocado | 2.0 | LGPL3 | +| floaty | 2.0 | LGPL3 | +| mud | 2.0 | LGPL3 | +| paranoia | 2.0 | LGPL3 | + +### Resonant DSP + +| Plugin | Version | License | +|--------|---------|---------| +| Swanky Amp | 2.4 | — | + +### Robin Gareus + +| Plugin | Version | License | +|--------|---------|---------| +| Instrument Tuner | 0.0 | gpl | +| Level Meter | 0.0 | gpl | +| MIDI Clock Generator | 0.0 | gpl | +| MIDI Generator | 512.0 | gpl | +| MIDI Step Sequencer16x8 | 777.5 | gpl | +| MIDI Step Sequencer32x8 | 777.5 | gpl | +| MIDI Step Sequencer8x16 | 777.5 | gpl | +| MIDI Step Sequencer8x4 | 777.5 | gpl | +| MIDI Step Sequencer8x8 | 777.5 | gpl | +| MIDI Timecode (MTC) Generator | 0.0 | gpl | +| No Delay Line | 514.0 | gpl | +| setBfree DSP Tonewheel Organ | 2058.0 | gpl | +| setBfree Organ Overdrive | 2058.0 | gpl | +| setBfree Organ Reverb | 2058.0 | gpl | +| setBfree Whirl Speaker | 2058.0 | gpl | +| setBfree Whirl Speaker (Old version) | 2058.0 | gpl | +| setBfree Whirl Speaker - Extended Version | 2058.0 | gpl | +| Spectrum Analyzer | 517.21 | gpl | +| Stereo Balance Control | 1538.0 | gpl | +| Stereo X-Fade | 516.0 | gpl | +| TinyGain Mono | 770.0 | gpl | +| x42-Autotune | 2049.11 | gpl | +| x42-eq - Parametric Equalizer Mono | 1.1 | gpl | + +### Sean Bolton, falkTX + +| Plugin | Version | License | +|--------|---------|---------| +| Nekobi | 2.1 | GPL v2+ | + +### sensorium + +| Plugin | Version | License | +|--------|---------|---------| +| TheCloud | 0.1 | GPL3 | + +### SHIRO + +| Plugin | Version | License | +|--------|---------|---------| +| Harmless | 2.0 | ISC | +| Larynx | 2.0 | ISC | +| Modulay | 2.0 | ISC | +| Pitchotto | 2.0 | ISC | +| Shiroverb | 2.0 | ISC | + +### Spencer Jackson + +| Plugin | Version | License | +|--------|---------|---------| +| the infamous bent delay | 0.1 | GPL-2.0 | +| the infamous ewham | 0.1 | GPL-2.0 | +| the infamous Hip2B | 0.1 | GPL-2.0 | +| the infamous mindi | 0.1 | GPL-2.0 | +| the infamous power cut | 0.1 | GPL-2.0 | +| the infamous stuck | 0.1 | GPL-2.0 | + +### Steve Harris + +| Plugin | Version | License | +|--------|---------|---------| +| AM pitchshifter | — | gpl | +| Bode frequency shifter | — | gpl | +| Comb delay line, noninterpolating | — | gpl | +| Crossover distortion | — | gpl | +| Decimator | — | gpl | +| Gate | — | gpl | +| Glame Bandpass Analog Filter | — | gpl | +| Glame Bandpass Filter | — | gpl | +| GLAME Butterworth Lowpass | — | gpl | +| GVerb | — | gpl | +| Karaoke | — | gpl | +| Multivoice Chorus | — | gpl | +| Reverse Delay | — | gpl | +| Ringmod with LFO | — | gpl | +| SC1 | — | gpl | +| State Variable Filter | — | gpl | +| Tape Delay Simulation | — | gpl | +| Valve saturation | — | gpl | + +### TAL + +| Plugin | Version | License | +|--------|---------|---------| +| TAL-Reverb-II | — | — | + +### TAL-Togu Audio Line + +| Plugin | Version | License | +|--------|---------|---------| +| Tal-Dub-3 | — | — | +| Tal-Filter | — | — | +| Tal-Filter-2 | — | — | +| Tal-Reverb | — | — | +| Tal-Reverb-III | — | — | +| Tal-Vocoder-II | — | — | + +### tumbetoene + +| Plugin | Version | License | +|--------|---------|---------| +| Wolpertinger | 33.0 | — | + +### VeJa plugins + +| Plugin | Version | License | +|--------|---------|---------| +| Bass Cabinets | 1.0 | — | + +### VeJa Plugins + +| Plugin | Version | License | +|--------|---------|---------| +| British 1960A | 1.0 | — | +| Cabinet | 1.1 | — | +| Compressor | 1.1 | — | + +### Vitling + +| Plugin | Version | License | +|--------|---------|---------| +| Crypt | 0.3 | — | + +### ZynAddSubFX Team + +| Plugin | Version | License | +|--------|---------|---------| +| ZynAddSubFX | 7.6 | GPL v2 | +| ZynAlienWah | 7.0 | GPL v2 | +| ZynChorus | 7.0 | GPL v2 | +| ZynDistortion | 7.0 | GPL v2 | +| ZynDynamicFilter | 7.0 | GPL v2 | +| ZynEcho | 7.0 | GPL v2 | +| ZynPhaser | 7.0 | GPL v2 | +| ZynReverb | 7.0 | GPL v2 | + +### Unknown / Unattributed + +| Plugin | Version | License | +|--------|---------|---------| +| Aether | 2.1 | MIT | +| ALO | 0.9 | isc | +| AMS VCF | 1.0 | isc | +| Analogue Oscillator | — | gpl | +| Bitta | 2.0 | gpl | +| Delayorama | — | gpl | +| DIE Compressor | 2.2 | gpl | +| DIE Delay | 4.2 | GPL v2+ | +| DIE EQ | 2.2 | GPL v2+ | +| DIE Expander | 2.2 | gpl | +| DIE Reverb | 2.4 | gpl | +| Filta | 2.0 | gpl | +| Fuzz | 0.0 | — | +| Granulator - Mono | — | isc | +| Guitar Midi | — | isc | +| Invada Compressor (mono) | 2.1 | gpl | +| Invada Test Tones | 2.1 | gpl | +| Loopor | — | isc | +| MDA Ambience | 0.3 | gpl | +| MDA Bandisto | 0.5 | gpl | +| MDA BeatBox | 0.2 | gpl | +| MDA Combo | 0.4 | gpl | +| MDA De-ess | 0.2 | gpl | +| MDA Degrade | 0.2 | gpl | +| MDA Delay | 0.4 | gpl | +| MDA Detune | 0.4 | gpl | +| MDA Dither | 0.2 | gpl | +| MDA DubDelay | 0.7 | gpl | +| MDA DX10 | 0.3 | gpl | +| MDA Dynamics | 0.2 | gpl | +| MDA ePiano | 0.4 | gpl | +| MDA Image | 0.3 | gpl | +| MDA JX10 | 0.2 | gpl | +| MDA Leslie | 0.3 | gpl | +| MDA Limiter | 0.2 | gpl | +| MDA Loudness | 0.1 | gpl | +| MDA MultiBand | 0.3 | gpl | +| MDA Overdrive | 0.4 | gpl | +| MDA Piano | 0.1 | gpl | +| MDA RePsycho! | 0.1 | gpl | +| MDA RezFilter | 0.1 | gpl | +| MDA RingMod | 0.2 | gpl | +| MDA RoundPan | 0.2 | gpl | +| MDA Shepard | 0.4 | gpl | +| MDA Splitter | 0.2 | gpl | +| MDA Stereo | 0.2 | gpl | +| MDA SubSynth | 0.3 | gpl | +| MDA TalkBox | 0.2 | gpl | +| MDA TestTone | 0.2 | gpl | +| MDA ThruZero | 0.3 | gpl | +| MDA Transient | 0.1 | gpl | +| MDA VocInput | 0.2 | gpl | +| MDA Vocoder | 0.4 | gpl | +| MIDI Chord | 1033.31 | gpl | +| MIDI display | 1.0 | GPLv3+ | +| Notes | 2.0 | Artistic-2.0 | +| Rec VCO | 0.0 | gpl-2.0 | +| reverb | 0.0 | gpl-2.0 | +| rkr EQ | 0.0 | — | +| setBfree MIDI controller | 1.0 | GPLv2+ | +| Square | 0.0 | — | +| Triceratops | — | gpl-3.0 | +| x42 - IR Convolver Mono | 1.1 | gpl | + +
+Full plugin list by project (bundle variants) + +**AMS VCF**: AMS Envelope, AMS LFO2 - Freq, AMS VCA Exp, AMS VCA Lin, AMS VCF, AMS VCO3 + +**Audio Capture**: Audio Capture, Audio Playback + +**Audio Gain (Mono)**: Audio Gain (Mono), Audio Gain (Stereo) + +**Calf Gate**: Calf Bass Enhancer, Calf Compensation Delay Line, Calf Compressor, Calf Crusher, Calf Envelope Filter, Calf Equalizer 5 Band, Calf Exciter, Calf Filter, Calf Flanger, Calf Gate, Calf Mono Compressor, Calf Monosynth, Calf Multi Chorus, Calf Organ, Calf Phaser, Calf Pulsator, Calf Reverb, Calf Saturator, Calf Vintage Delay, Calf Wavetable + +**Comb delay line, noninterpolating**: Comb delay line, cubic spline interpolation, Comb delay line, linear interpolation, Comb delay line, noninterpolating + +**DIE Compressor**: DIE Compressor, DIE Compressor (stereo) + +**DIE Expander**: DIE Expander, DIE Expander (stereo) + +**Filta**: Filta, Kuiza, Roomy + +**Fuzz**: Fuzz, rkr Distortion, rkr Flanger/Chorus, rkr Parametric EQ, rkr Reverb + +**GLAME Butterworth Lowpass**: GLAME Butterworth Highpass, GLAME Butterworth Lowpass, Glame Butterworth X-over Filter + +**Granulator - Mono**: Downsampler - Mono, Downsampler - Stereo, Granulator - Mono, Granulator - Stereo + +**Invada Compressor (mono)**: Invada Compressor (mono), Invada Compressor (stereo), Invada Delay Munge (mono in), Invada Delay Munge (sum L+R in), Invada Stereo Phaser (mono in), Invada Stereo Phaser (stereo in), Invada Stereo Phaser (sum L+R in) + +**Invada Test Tones**: Invada Early Reflection Reverb (mono in), Invada Early Reflection Reverb (sum L+R in), Invada High Pass Filter (mono), Invada High Pass Filter (stereo), Invada Input Module, Invada Low Pass Filter (mono), Invada Low Pass Filter (stereo), Invada Test Tones, Invada Tube Distortion (mono), Invada Tube Distortion (stereo) + +**LSP IR Mono**: LSP IR Mono, LSP IR Stereo + +**MIDI Chord**: MIDI CC Map, MIDI CC to Note, MIDI Channel Filter, MIDI Channel Map, MIDI Channel Unisono, MIDI Chord, MIDI Chromatic Transpose, MIDI Delayline, MIDI Duplicate Blocker, MIDI Enforce Scale, MIDI Event Filter, MIDI Key-Range Filter, MIDI Keysplit, MIDI Monophonic Legato, MIDI N-Tap Delay, MIDI Note Toggle, MIDI Note Transpose, MIDI Note to CC, MIDI Note/Channel Map, MIDI Quantization, MIDI Remove Active Sensing, MIDI Scale CC Value, MIDI Simple Channel Filter, MIDI Sostenuto, MIDI Strum, MIDI Velocity Adjust, MIDI Velocity Randomization, MIDI Velocity-Range Filter + +**MIDI File**: Audio File, MIDI File + +**MIDI Gain**: MIDI Channel A/B, MIDI Channel Filter, MIDI Channelize, MIDI Gain, MIDI Join, MIDI Split, MIDI Transpose + +**Portal Sink**: Portal Sink, Portal Source + +**Rec VCO**: 4-Band Parametric Filter, CS Phaser 1, Moog High-Pass Filter 1, Moog Low-Pass Filter 1, Moog Low-Pass Filter 2, Moog Low-Pass Filter 3, Moog Low-Pass Filter 4, Pulse VCO, Rec VCO, Saw VCO, reverb-amb + +**Record-Mono**: Record-Mono, Record-Quad, Record-Stereo + +**Record-Mono Mini**: Record-Mono Mini, Record-Quad Mini, Record-Stereo Mini + +**reverb**: Auto-wah, CS Chorus 1, CS Chorus 2, CS Phaser 1 with LFO, Triple chorus, reverb + +**Ringmod with LFO**: Ringmod with LFO, Ringmod with two inputs + +**rkr EQ**: rkr AlienWah, rkr Analog Phaser, rkr Arpie, rkr Cabinet, rkr Coil Crafter, rkr CompBand, rkr Compressor, rkr Derelict, rkr DistBand, rkr Dual Flange, rkr EQ, rkr Echo, rkr Echotron, rkr Echoverse, rkr Exciter, rkr Expander, rkr Harmonizer (no midi), rkr Infinity, rkr MuTroMojo, rkr Musical Delay, rkr OpticalTrem, rkr Shelf Boost, rkr Shuffle, rkr StereoHarmonizer (no midi), rkr StompBox, rkr Sustainer, rkr Synthfilter, rkr Valve, rkr VaryBand, rkr Vibe, rkr Vocoder, rkr WahWah + +**Rubberband (Mono)**: Rubberband (Mono), Rubberband (Stereo) + +**Square**: Sawtooth, Square, Triangle + +**the infamous stuck**: the infamous stuck, the infamous stuck stacker + +**TinyGain Mono**: TinyGain Mono, TinyGain Stereo + +**x42 - IR Convolver Mono**: x42 - IR Convolver Mono, x42 - IR Convolver Stereo + +**x42-Autotune**: x42-Autotune, x42-Autotune (microtonal), x42-Autotune (scales) + +**x42-eq - Parametric Equalizer Mono**: x42-eq - Parametric Equalizer Mono, x42-eq - Parametric Equalizer Stereo + +
+ +### ⚠️ Plugins with no license declared (56) + +These require manual license verification: + +- The Function +- The Pilgrim +- bluesbreaker +- PowerAmpImpulses +- PowerAmpTubes +- PreAmpImpulses +- PreAmpTubes +- CollisionDrive +- Harmonic Exciter +- MetalTone +- Rumor +- VintageAC30 +- Temper +- Obxd +- dRowAudio Tremolo +- dRowAudio: Distortion +- dRowAudio: Distortion Shaper +- dRowAudio: Flanger +- dRowAudio: Reverb +- TS-M1N3 +- WOW +- Schrammel OJD +- ChowCentaur +- Luftikus +- ReFine +- Helm +- MIDI Gain +- Audio to CV +- CV Clock +- CV Switchbox 1-2 +- CV Switchbox 1-3 +- CV Switchbox 2-1 +- CV Switchbox 3-1 +- MIDI to CV Poly +- Slew Rate Limiter +- Noise Maker - ME +- MIDI to CV mono +- Sorcer +- JuceOPL +- Swanky Amp +- TAL-Reverb-II +- Tal-Dub-3 +- Tal-Filter +- Tal-Filter-2 +- Tal-Reverb +- Tal-Reverb-III +- Tal-Vocoder-II +- Wolpertinger +- Bass Cabinets +- British 1960A +- Cabinet +- Compressor +- Crypt +- Fuzz +- rkr EQ +- Square + +### ⚠️ Plugins with no author declared (63) + +- Aether +- ALO +- AMS VCF +- Analogue Oscillator +- Bitta +- Delayorama +- DIE Compressor +- DIE Delay +- DIE EQ +- DIE Expander +- DIE Reverb +- Filta +- Fuzz +- Granulator - Mono +- Guitar Midi +- Invada Compressor (mono) +- Invada Test Tones +- Loopor +- MDA Ambience +- MDA Bandisto +- MDA BeatBox +- MDA Combo +- MDA De-ess +- MDA Degrade +- MDA Delay +- MDA Detune +- MDA Dither +- MDA DubDelay +- MDA DX10 +- MDA Dynamics +- MDA ePiano +- MDA Image +- MDA JX10 +- MDA Leslie +- MDA Limiter +- MDA Loudness +- MDA MultiBand +- MDA Overdrive +- MDA Piano +- MDA RePsycho! +- MDA RezFilter +- MDA RingMod +- MDA RoundPan +- MDA Shepard +- MDA Splitter +- MDA Stereo +- MDA SubSynth +- MDA TalkBox +- MDA TestTone +- MDA ThruZero +- MDA Transient +- MDA VocInput +- MDA Vocoder +- MIDI Chord +- MIDI display +- Notes +- Rec VCO +- reverb +- rkr EQ +- setBfree MIDI controller +- Square +- Triceratops +- x42 - IR Convolver Mono + +--- +_662 plugin variants across 510 projects from 62 authors/vendors._ From a75bedbe5032509ca189ccec4cb21ac9ee6c9593 Mon Sep 17 00:00:00 2001 From: randall reichenbach Date: Wed, 17 Jun 2026 22:40:59 -0700 Subject: [PATCH 2/5] manual updates, add disclaimers --- THIRD_PARTY_LICENSES.md | 662 +++++++++++++++++----------------------- 1 file changed, 275 insertions(+), 387 deletions(-) diff --git a/THIRD_PARTY_LICENSES.md b/THIRD_PARTY_LICENSES.md index 1c96772d7..5b7635c0b 100644 --- a/THIRD_PARTY_LICENSES.md +++ b/THIRD_PARTY_LICENSES.md @@ -2,8 +2,12 @@ This document lists third-party software components included in or distributed with this project's Raspberry Pi OS image and software stack, along with their respective licenses. It is provided to satisfy attribution and license-disclosure obligations for all bundled open source components. +> **Scope:** This file covers the contents of the **pi-gen-pistomp built OS image** released for download — the full system that runs on the device, including the OS, system services (jack2, mod-host, mod-ui, etc.), Python runtime dependencies, and LV2 plugins. It does **not** describe the contents of this Git repository, which contains only this project's own Python source code, licensed under AGPL-3.0-or-later. The components below are not part of the repository itself; they are installed, built, or bundled into the image by the pi-gen-pistomp build process. + **This project's own code is licensed under AGPL-3.0-or-later.** Components below are run as independent system services or separate processes (communicating via IPC, D-Bus, sockets, or HTTP) rather than linked into this project's codebase, except where noted. +> **A note on accuracy:** This file was compiled largely through automated extraction — `pip-licenses` for Python dependencies, `lilv`/TTL metadata inspection for LV2 plugins, and manual verification where automated tools returned incomplete or ambiguous results. Open source metadata is not always accurate or complete at the source, and errors or omissions may exist despite best efforts to verify each entry. If you are a rights holder or maintainer and believe an entry here is missing, incorrect, or needs attribution changes, please [open an issue](../../issues) or contact the maintainer of this repository. + ## Contents - [Core System Components (Cloned / Built from Source)](#core-system-components-cloned--built-from-source) @@ -98,7 +102,7 @@ Python packages installed in the runtime environment, extracted via `pip-license | urllib3 | 1.26.12 | MIT License | [link](https://urllib3.readthedocs.io/) | | websockets | 16.0 | BSD-3-Clause | [link](https://github.com/python-websockets/websockets) | | Werkzeug | 3.1.8 | BSD-3-Clause | [link](https://github.com/pallets/werkzeug/) | -| zeroconf | 0.47.3 | GNU Lesser General Public License v2 (LGPLv2); Other/Proprietary License | [link](https://github.com/python-zeroconf/python-zeroconf) | +| zeroconf | 0.47.3 | LGPL-2.1-or-later | [link](https://github.com/python-zeroconf/python-zeroconf) | ### Development / Build / Documentation Tools (not distributed at runtime) @@ -149,7 +153,7 @@ Python packages installed in the runtime environment, extracted via `pip-license | Plugin | Version | License | |--------|---------|---------| -| abGate | 2.0 | lgpl | +| abGate | 2.0 | LGPL | ### Artican @@ -158,18 +162,30 @@ Python packages installed in the runtime environment, extracted via `pip-license | The Function | 2.0 | — | | The Pilgrim | 2.0 | — | + ### Aurelien Leblond +| Plugin | Version | License | +|--------|---------|---------| +| AMS VCF | 1.0 | isc | +| Granulator - Mono | 0.0 | isc | + ### Bernhard Rusch | Plugin | Version | License | |--------|---------|---------| -| Molot Lite Mono | 0.1 | gpl | +| Molot Lite Mono | 0.1 | GPL | + +### Blokas Labs +| Plugin | Version | License | +|--------|---------|---------| +| Invada Compressor (mono) | 2.1 | GPL v2 | +| Invada Test Tones | 2.1 | GPL v2 | ### Bollie | Plugin | Version | License | |--------|---------|---------| -| Bollie Delay | 2.6 | gpl | -| Bollie Delay XT | 0.1 | gpl | +| Bollie Delay | 2.6 | GPL | +| Bollie Delay XT | 0.1 | GPL | ### brummer @@ -207,7 +223,7 @@ Python packages installed in the runtime environment, extracted via `pip-license | Plugin | Version | License | |--------|---------|---------| -| Calf Gate | — | lgpl | +| Calf Gate | — | LGPL | ### Creative Intent @@ -241,11 +257,33 @@ Python packages installed in the runtime environment, extracted via `pip-license |--------|---------|---------| | Obxd | 2.0 | — | -### dcoredump, dcoredump +### David Robillard (FOMP) +| Plugin | Version | License | +|--------|---------|---------| +| 4-Band Parametric Filter | 0.0 | GPL-2.0 | +| CS Phaser 1 | 0.0 | GPL-2.0 | +| Moog High-Pass Filter 1 | 0.0 | GPL-2.0 | +| Moog Low-Pass Filter 1 | 0.0 | GPL-2.0 | +| Moog Low-Pass Filter 2 | 0.0 | GPL-2.0 | +| Moog Low-Pass Filter 3 | 0.0 | GPL-2.0 | +| Moog Low-Pass Filter 4 | 0.0 | GPL-2.0 | +| Pulse VCO | 0.0 | GPL-2.0 | +| Rec VCO | 0.0 | GPL-2.0 | +| reverb | 0.0 | GPL-2.0 | +| reverb-amb | 0.0 | GPL-2.0 | +| Saw VCO | 0.0 | GPL-2.0 | +| Square | 0.0 | GPL-2.0 | + +### dcoredump | Plugin | Version | License | |--------|---------|---------| -| Dexed | 0.2 | gpl | +| Dexed | 0.2 | GPL | + +### devcurmudgeon +| Plugin | Version | License | +|--------|---------|---------| +| ALO | 0.9 | MIT | ### DISTRHO @@ -253,13 +291,18 @@ Python packages installed in the runtime environment, extracted via `pip-license |--------|---------|---------| | 3 Band EQ | 2.0 | LGPL | | 3 Band Splitter | 2.0 | LGPL | -| DIE Fluid Synth | 2.2 | gpl | +| DIE Fluid Synth | 2.2 | GPL | | MaBitcrush | 0.1 | ISC | | MaFreeverb | 0.1 | ISC | | MaGigaverb | 0.1 | ISC | | MaPitchshift | 0.1 | ISC | | Ping Pong Pan | 2.0 | LGPL | +### Dougal-s +| Plugin | Version | License | +|--------|---------|---------| +| Aether | 2.1 | MIT | + ### dRowAudio | Plugin | Version | License | @@ -274,7 +317,7 @@ Python packages installed in the runtime environment, extracted via `pip-license | Plugin | Version | License | |--------|---------|---------| -| [SimSam](https://gitlab.com/edwillys/simsam) | 0.1 | gpl | +| [SimSam](https://gitlab.com/edwillys/simsam) | 0.1 | GPL | ### falkTX @@ -307,7 +350,13 @@ Python packages installed in the runtime environment, extracted via `pip-license | Kars | 2.1 | ISC | | MIDI File | 150.22 | GPL-2.0 | | Portal Sink | — | http://spdx.org/licenses/ISC.html | -| Rubberband (Mono) | 8.2 | gpl | +| Rubberband (Mono) | 8.2 | GPL | + +### geraldmwangi + +| Plugin | Version | License | +|--------|---------|---------| +| Guitar Midi | 0.0 | LGPL | ### Guitarix team @@ -428,7 +477,7 @@ Python packages installed in the runtime environment, extracted via `pip-license | Plugin | Version | License | |--------|---------|---------| -| TS-M1N3 | 2.1 | — | +| TS-M1N3 | 2.1 | GPL-3.0 | ### Hannes Braun @@ -463,11 +512,16 @@ Python packages installed in the runtime environment, extracted via `pip-license | StarChild | 2.0 | MIT | | Vibrato | 2.0 | MIT | +### Hanspeter Portner +| Plugin | Version | License | +|--------|---------|---------| +| Notes | 2.0 | Artistic-2.0 | + ### Igor Brkic | Plugin | Version | License | |--------|---------|---------| -| VocProc | — | gpl | +| VocProc | 0.2 | GPLv2 | ### J.Velcl@seznam.cz @@ -478,14 +532,14 @@ Python packages installed in the runtime environment, extracted via `pip-license ### Janos Buttgereit | Plugin | Version | License | -|--------|---------|---------| -| Schrammel OJD | 8.9 | — | +|--------|---------|--------- +| Schrammel OJD | 8.9 | GPL v3 | ### Jatin Chowdhury | Plugin | Version | License | |--------|---------|---------| -| ChowCentaur | 2.4 | — | +| ChowCentaur | 2.4 | BSD-3-Clause | ### Jean Pierre Cimalando @@ -501,14 +555,14 @@ Python packages installed in the runtime environment, extracted via `pip-license | Plugin | Version | License | |--------|---------|---------| -| Luftikus | — | — | +| Luftikus | 1.2.1 | GPL v2 | | ReFine | 2.1 | — | ### LSP LV2 | Plugin | Version | License | |--------|---------|---------| -| LSP IR Mono | 0.2 | lgpl | +| LSP IR Mono | 0.2 | LGPL | ### Luciano Dato @@ -526,39 +580,39 @@ Python packages installed in the runtime environment, extracted via `pip-license | Plugin | Version | License | |--------|---------|---------| -| Helm | — | — | +| Helm | v0.9.0 | GPL v3 | ### Mayank Sanganeria | Plugin | Version | License | |--------|---------|---------| -| Granulator | 1.0 | gpl | +| Granulator | 1.0 | GPL | ### Micah John | Plugin | Version | License | |--------|---------|---------| -| Amp Profiler | — | isc | +| Amp Profiler | — | GPL v3 | ### Michael Willis | Plugin | Version | License | |--------|---------|---------| -| Dragonfly Early Reflections | 4.6 | gpl-3.0.html | -| Dragonfly Plate Reverb | 4.6 | gpl-3.0.html | -| Dragonfly Room Reverb | 4.6 | gpl-3.0.html | +| Dragonfly Early Reflections | 4.6 | GPL-3.0 | +| Dragonfly Plate Reverb | 4.6 | GPL-3.0 | +| Dragonfly Room Reverb | 4.6 | GPL-3.0 | ### Michael Willis and Rob vd Berg | Plugin | Version | License | |--------|---------|---------| -| Dragonfly Hall Reverb | 4.6 | gpl-3.0.html | +| Dragonfly Hall Reverb | 4.6 | GPL-3.0 | ### Mike Oliphant | Plugin | Version | License | |--------|---------|---------| -| Neural Amp Modeler | 2.0 | gpl-3-0 | +| Neural Amp Modeler | 2.0 | GPL-3-0 | ### Milk Brewster @@ -578,31 +632,31 @@ Python packages installed in the runtime environment, extracted via `pip-license | Control to CV | 3.0 | GPL v2+ | | Convolution Loader | 2.0 | http://spdx.org/licenses/ISC.html | | CV ABS | 1.0 | GPL v2+ | -| CV Clock | 3.0 | — | +| CV Clock | 3.0 | GPL v2+ | | CV Gate | 1.0 | GPL v2+ | | CV meter | 1.0 | GPL v2+ | | CV Parameter Modulation | 1.0 | GPL v2+ | | CV Range Divider | 3.0 | GPL v2+ | | CV Round | 1.0 | GPL v2+ | -| CV Switchbox 1-2 | 1.0 | — | -| CV Switchbox 1-3 | 1.0 | — | -| CV Switchbox 2-1 | 1.0 | — | -| CV Switchbox 3-1 | 1.0 | — | +| CV Switchbox 1-2 | 1.0 | GPL v2+ | +| CV Switchbox 1-3 | 1.0 | GPL v2+ | +| CV Switchbox 2-1 | 1.0 | GPL v2+ | +| CV Switchbox 3-1 | 1.0 | GPL v2+ | | IR loader cabsim | 1.0 | isc | -| Logic Operators | 2.0 | Custom | +| Logic Operators | 2.0 | GPL v2+ | | MIDI SwitchBox 1-2 2C | 2.0 | GPLv2+ | | MIDI SwitchBox 1-3 | 2.0 | GPLv2+ | | MIDI SwitchBox 2-1 | 2.0 | GPLv2+ | | MIDI SwitchBox 2-1 2C | 2.0 | GPLv2+ | | MIDI SwitchBox 3-1 | 2.0 | GPLv2+ | -| MIDI to CV Poly | 1.1 | — | +| MIDI to CV Poly | 1.1 | GPL v2+ | | Mixer | 2.0 | GPLv3.0 | | Mixer Stereo | 2.0 | GPLv3.0 | | Random Generator | 1.0 | GPL v2+ | -| Slew Rate Limiter | 1.0 | — | -| Switchbox 1-2 ST | 1.1 | file:///home/pistomp/.lv2/switchbox_1-2_st.lv2/GPL | -| Switchbox 2-1 | 1.1 | file:///home/pistomp/.lv2/switchbox_2-1.lv2/GPL | -| Switchbox 2-1 ST | 1.1 | file:///home/pistomp/.lv2/switchbox_2-1_st.lv2/GPL | +| Slew Rate Limiter | 1.0 | GPL v2+ | +| Switchbox 1-2 ST | 1.1 | GPL v2+ | +| Switchbox 2-1 | 1.1 | GPL v2+ | +| Switchbox 2-1 ST | 1.1 | GPL v2+ | | Volume | 1.0 | GPL v2+ | | Volume 2x2 | 1.0 | GPL v2+ | @@ -622,31 +676,31 @@ Python packages installed in the runtime environment, extracted via `pip-license |--------|---------|---------| | 2Voices | 0.4 | GPL | | BandPassFilter | 0.0 | GPL | -| C* AmpVTS - Tube amp + Tone stack | 9.24 | gpl | -| C* AutoFilter | 9.24 | gpl | -| C* CabinetIII - Idealised loudspeaker cabinet emulation | 9.24 | gpl | -| C* CabinetIV - Idealised loudspeaker cabinet emulation | 9.24 | gpl | -| C* CEO - Chief Executive Oscillator | 9.24 | gpl | -| C* ChorusI - Mono chorus/flanger | 9.24 | gpl | -| C* Click - Metronome | 9.24 | gpl | -| C* Compress - Mono compressor | 9.24 | gpl | -| C* CompressX2 - Stereo compressor | 9.24 | gpl | -| C* Eq10 - 10-band equalizer | 9.24 | gpl | -| C* Eq10X2 - 10-band equalizer | 9.24 | gpl | -| C* Fractal - Audio stream from deterministic chaos | 9.24 | gpl | -| C* Narrower - Stereo image width reduction | 9.24 | gpl | -| C* Noisegate - Attenuate noise resident in silence | 9.24 | gpl | -| C* PhaserII - Mono phaser modulated by a Lorenz fractal | 9.24 | gpl | -| C* Plate - Versatile plate reverb | 9.24 | gpl | -| C* PlateX2 - Stereo in/out Versatile plate reverb | 9.24 | gpl | -| C* Saturate | 9.24 | gpl | -| C* Scape - Stereo delay + Filters | 9.24 | gpl | -| C* Sin - Sine wave generator | 9.24 | gpl | -| C* Spice | 9.24 | gpl | -| C* SpiceX2 | 9.24 | gpl | -| C* ToneStack - Tone stack emulation | 9.24 | gpl | -| C* White - White noise generator | 9.24 | gpl | -| C* Wider - Stereo image Synthesis | 9.24 | gpl | +| C* AmpVTS - Tube amp + Tone stack | 9.24 | GPL | +| C* AutoFilter | 9.24 | GPL | +| C* CabinetIII - Idealised loudspeaker cabinet emulation | 9.24 | GPL | +| C* CabinetIV - Idealised loudspeaker cabinet emulation | 9.24 | GPL | +| C* CEO - Chief Executive Oscillator | 9.24 | GPL | +| C* ChorusI - Mono chorus/flanger | 9.24 | GPL | +| C* Click - Metronome | 9.24 | GPL | +| C* Compress - Mono compressor | 9.24 | GPL | +| C* CompressX2 - Stereo compressor | 9.24 | GPL | +| C* Eq10 - 10-band equalizer | 9.24 | GPL | +| C* Eq10X2 - 10-band equalizer | 9.24 | GPL | +| C* Fractal - Audio stream from deterministic chaos | 9.24 | GPL | +| C* Narrower - Stereo image width reduction | 9.24 | GPL | +| C* Noisegate - Attenuate noise resident in silence | 9.24 | GPL | +| C* PhaserII - Mono phaser modulated by a Lorenz fractal | 9.24 | GPL | +| C* Plate - Versatile plate reverb | 9.24 | GPL | +| C* PlateX2 - Stereo in/out Versatile plate reverb | 9.24 | GPL | +| C* Saturate | 9.24 | GPL | +| C* Scape - Stereo delay + Filters | 9.24 | GPL | +| C* Sin - Sine wave generator | 9.24 | GPL | +| C* Spice | 9.24 | GPL | +| C* SpiceX2 | 9.24 | GPL | +| C* ToneStack - Tone stack emulation | 9.24 | GPL | +| C* White - White noise generator | 9.24 | GPL | +| C* Wider - Stereo image Synthesis | 9.24 | GPL | | Capo | 0.4 | GPL | | CrossOver 2 | 1.0 | GPL | | CrossOver 3 | 1.0 | GPL | @@ -659,35 +713,70 @@ Python packages installed in the runtime environment, extracted via `pip-license | HarmonizerCS | — | GPL | | HighPassFilter | 0.0 | GPL | | LowPassFilter | 0.0 | GPL | +| MDA Ambience | 0.3 | GPL | +| MDA Bandisto | 0.5 | GPL | +| MDA BeatBox | 0.2 | GPL | +| MDA Combo | 0.4 | GPL | +| MDA De-ess | 0.2 | GPL | +| MDA Degrade | 0.2 | GPL | +| MDA Delay | 0.4 | GPL | +| MDA Detune | 0.4 | GPL | +| MDA Dither | 0.2 | GPL | +| MDA DubDelay | 0.7 | GPL | +| MDA DX10 | 0.3 | GPL | +| MDA Dynamics | 0.2 | GPL | +| MDA ePiano | 0.4 | GPL | +| MDA Image | 0.3 | GPL | +| MDA JX10 | 0.2 | GPL | +| MDA Leslie | 0.3 | GPL | +| MDA Limiter | 0.2 | GPL | +| MDA Loudness | 0.1 | GPL | +| MDA MultiBand | 0.3 | GPL | +| MDA Overdrive | 0.4 | GPL | +| MDA Piano | 0.1 | GPL | +| MDA RePsycho! | 0.1 | GPL | +| MDA RezFilter | 0.1 | GPL | +| MDA RingMod | 0.2 | GPL | +| MDA RoundPan | 0.2 | GPL | +| MDA Shepard | 0.4 | GPL | +| MDA Splitter | 0.2 | GPL | +| MDA Stereo | 0.2 | GPL | +| MDA SubSynth | 0.3 | GPL | +| MDA TalkBox | 0.2 | GPL | +| MDA TestTone | 0.2 | GPL | +| MDA ThruZero | 0.3 | GPL | +| MDA Transient | 0.1 | GPL | +| MDA VocInput | 0.2 | GPL | +| MDA Vocoder | 0.4 | GPL | | MIDI SwitchBox 1-2 | 2.0 | GPLv2+ | | MIDI to CV mono | 3.1 | — | | Open Big Muff | 0.0 | GPL | | Peak To CC | 0.0 | GPLv2+ | -| SooperLooper | 0.9 | gpl | -| SooperLooper 2x2 | 0.9 | gpl | +| SooperLooper | 0.9 | GPL | +| SooperLooper 2x2 | 0.9 | GPL | | Super Capo | — | GPL | | Super Whammy | — | GPL | | Switchbox 1-2 | 1.1 | GPL | | SwitchTrigger4 | 1.1 | GPL | -| TAP AutoPanner | 7.2 | gpl | -| TAP Chorus/Flanger | 7.2 | gpl | -| TAP DeEsser | 7.2 | gpl | -| TAP Equalizer | 7.2 | gpl | -| TAP Equalizer/BW | 7.2 | gpl | -| TAP Fractal Doubler | 7.2 | gpl | -| TAP Mono Dynamics | 7.2 | gpl | -| TAP Pink/Fractal Noise | 7.2 | gpl | -| TAP Pitch Shifter | 7.2 | gpl | -| TAP Reflector | 7.3 | gpl | -| TAP Reverberator | 7.2 | gpl | -| TAP Rotary Speaker | 7.3 | gpl | -| TAP Scaling Limiter | 7.2 | gpl | -| TAP Sigmoid Booster | 7.2 | gpl | -| TAP Stereo Dynamics | 7.2 | gpl | -| TAP Stereo Echo | 7.3 | gpl | -| TAP Tremolo | 7.3 | gpl | -| TAP Tubewarmth | 7.2 | gpl | -| TAP Vibrato | 7.2 | gpl | +| TAP AutoPanner | 7.2 | GPL | +| TAP Chorus/Flanger | 7.2 | GPL | +| TAP DeEsser | 7.2 | GPL | +| TAP Equalizer | 7.2 | GPL | +| TAP Equalizer/BW | 7.2 | GPL | +| TAP Fractal Doubler | 7.2 | GPL | +| TAP Mono Dynamics | 7.2 | GPL | +| TAP Pink/Fractal Noise | 7.2 | GPL | +| TAP Pitch Shifter | 7.2 | GPL | +| TAP Reflector | 7.3 | GPL | +| TAP Reverberator | 7.2 | GPL | +| TAP Rotary Speaker | 7.3 | GPL | +| TAP Scaling Limiter | 7.2 | GPL | +| TAP Sigmoid Booster | 7.2 | GPL | +| TAP Stereo Dynamics | 7.2 | GPL | +| TAP Stereo Echo | 7.3 | GPL | +| TAP Tremolo | 7.3 | GPL | +| TAP Tubewarmth | 7.2 | GPL | +| TAP Vibrato | 7.2 | GPL | | ToggleSwitch | 1.1 | GPL | ### ndc Plugs @@ -702,19 +791,26 @@ Python packages installed in the runtime environment, extracted via `pip-license | Plugin | Version | License | |--------|---------|---------| -| Vocoder | — | gpl | +| Vocoder | — | GPL | + +### Nick Bailey +| Plugin | Version | License | +|--------|---------|---------| +| Triceratops | 0.0 | GPL-3.0 | ### Nick Dowell | Plugin | Version | License | |--------|---------|---------| -| amsynth | 1.5 | gpl | +| amsynth | 1.5 | GPL | ### OpenAV | Plugin | Version | License | |--------|---------|---------| -| Sorcer | 2.0 | — | +| Bitta | 2.0 | GPL v2 | +| Filta | 2.0 | GPL | +| Sorcer | 2.0 | GPL v3 | ### Paul Ferrand @@ -726,9 +822,9 @@ Python packages installed in the runtime environment, extracted via `pip-license | Plugin | Version | License | |--------|---------|---------| -| [Freakclip](https://github.com/pjotrompet) | 1.2 | gpl | -| [Freaktail](https://github.com/pjotrompet) | 1.0 | gpl | -| [Prefreak](https://github.com/pjotrompet) | 0.1 | gpl | +| [Freakclip](https://github.com/pjotrompet) | 1.2 | GPL | +| [Freaktail](https://github.com/pjotrompet) | 1.0 | GPL | +| [Prefreak](https://github.com/pjotrompet) | 0.1 | GPL | ### Plainweave Software @@ -736,6 +832,47 @@ Python packages installed in the runtime environment, extracted via `pip-license |--------|---------|---------| | JuceOPL | 2.0 | — | +### Rakarrack Team + +| Plugin | Version | License | +|--------|---------|---------| +| rkr AlienWah | 0.0 | GPL v2 | +| rkr Analog Phaser | 0.0 | GPL v2 | +| rkr Arpie | 0.0 | GPL v2 | +| rkr Cabinet | 0.0 | GPL v2 | +| rkr Coil Crafter | 0.0 | GPL v2 | +| rkr CompBand | 0.0 | GPL v2 | +| rkr Compressor | 0.0 | GPL v2 | +| rkr Derelict | 0.0 | GPL v2 | +| rkr Distortion | 0.0 | GPL v2 | +| rkr DistBand | 0.0 | GPL v2 | +| rkr Dual Flange | 0.0 | GPL v2 | +| rkr EQ | 0.0 | GPL v2 | +| rkr Echo | 0.0 | GPL v2 | +| rkr Echotron | 0.0 | GPL v2 | +| rkr Echoverse | 0.0 | GPL v2 | +| rkr Exciter | 0.0 | GPL v2 | +| rkr Expander | 0.0 | GPL v2 | +| rkr Flanger/Chorus | 0.0 | GPL v2 | +| rkr Harmonizer (no midi) | 0.0 | GPL v2 | +| rkr Infinity | 0.0 | GPL v2 | +| rkr MuTroMojo | 0.0 | GPL v2 | +| rkr Musical Delay | 0.0 | GPL v2 | +| rkr OpticalTrem | 0.0 | GPL v2 | +| rkr Parametric EQ | 0.0 | GPL v2 | +| rkr Reverb | 0.0 | GPL v2 | +| rkr Shelf Boost | 0.0 | GPL v2 | +| rkr Shuffle | 0.0 | GPL v2 | +| rkr StereoHarmonizer (no midi) | 0.0 | GPL v2 | +| rkr StompBox | 0.0 | GPL v2 | +| rkr Sustainer | 0.0 | GPL v2 | +| rkr Synthfilter | 0.0 | GPL v2 | +| rkr Valve | 0.0 | GPL v2 | +| rkr VaryBand | 0.0 | GPL v2 | +| rkr Vibe | 0.0 | GPL v2 | +| rkr Vocoder | 0.0 | GPL v2 | +| rkr WahWah | 0.0 | GPL v2 | + ### remaincalm.org | Plugin | Version | License | @@ -755,29 +892,30 @@ Python packages installed in the runtime environment, extracted via `pip-license | Plugin | Version | License | |--------|---------|---------| -| Instrument Tuner | 0.0 | gpl | -| Level Meter | 0.0 | gpl | -| MIDI Clock Generator | 0.0 | gpl | -| MIDI Generator | 512.0 | gpl | -| MIDI Step Sequencer16x8 | 777.5 | gpl | -| MIDI Step Sequencer32x8 | 777.5 | gpl | -| MIDI Step Sequencer8x16 | 777.5 | gpl | -| MIDI Step Sequencer8x4 | 777.5 | gpl | -| MIDI Step Sequencer8x8 | 777.5 | gpl | -| MIDI Timecode (MTC) Generator | 0.0 | gpl | -| No Delay Line | 514.0 | gpl | -| setBfree DSP Tonewheel Organ | 2058.0 | gpl | -| setBfree Organ Overdrive | 2058.0 | gpl | -| setBfree Organ Reverb | 2058.0 | gpl | -| setBfree Whirl Speaker | 2058.0 | gpl | -| setBfree Whirl Speaker (Old version) | 2058.0 | gpl | -| setBfree Whirl Speaker - Extended Version | 2058.0 | gpl | -| Spectrum Analyzer | 517.21 | gpl | -| Stereo Balance Control | 1538.0 | gpl | -| Stereo X-Fade | 516.0 | gpl | -| TinyGain Mono | 770.0 | gpl | -| x42-Autotune | 2049.11 | gpl | -| x42-eq - Parametric Equalizer Mono | 1.1 | gpl | +| Instrument Tuner | 0.0 | GPL | +| Level Meter | 0.0 | GPL | +| MIDI Chord | 1033.31 | GPL | +| MIDI Clock Generator | 0.0 | GPL | +| MIDI Generator | 512.0 | GPL | +| MIDI Step Sequencer16x8 | 777.5 | GPL | +| MIDI Step Sequencer32x8 | 777.5 | GPL | +| MIDI Step Sequencer8x16 | 777.5 | GPL | +| MIDI Step Sequencer8x4 | 777.5 | GPL | +| MIDI Step Sequencer8x8 | 777.5 | GPL | +| MIDI Timecode (MTC) Generator | 0.0 | GPL | +| No Delay Line | 514.0 | GPL | +| setBfree DSP Tonewheel Organ | 2058.0 | GPL | +| setBfree Organ Overdrive | 2058.0 | GPL | +| setBfree Organ Reverb | 2058.0 | GPL | +| setBfree Whirl Speaker | 2058.0 | GPL | +| setBfree Whirl Speaker (Old version) | 2058.0 | GPL | +| setBfree Whirl Speaker - Extended Version | 2058.0 | GPL | +| Spectrum Analyzer | 517.21 | GPL | +| Stereo Balance Control | 1538.0 | GPL | +| Stereo X-Fade | 516.0 | GPL | +| TinyGain Mono | 770.0 | GPL | +| x42-Autotune | 2049.11 | GPL | +| x42-eq - Parametric Equalizer Mono | 1.1 | GPL | ### Sean Bolton, falkTX @@ -816,24 +954,24 @@ Python packages installed in the runtime environment, extracted via `pip-license | Plugin | Version | License | |--------|---------|---------| -| AM pitchshifter | — | gpl | -| Bode frequency shifter | — | gpl | -| Comb delay line, noninterpolating | — | gpl | -| Crossover distortion | — | gpl | -| Decimator | — | gpl | -| Gate | — | gpl | -| Glame Bandpass Analog Filter | — | gpl | -| Glame Bandpass Filter | — | gpl | -| GLAME Butterworth Lowpass | — | gpl | -| GVerb | — | gpl | -| Karaoke | — | gpl | -| Multivoice Chorus | — | gpl | -| Reverse Delay | — | gpl | -| Ringmod with LFO | — | gpl | -| SC1 | — | gpl | -| State Variable Filter | — | gpl | -| Tape Delay Simulation | — | gpl | -| Valve saturation | — | gpl | +| AM pitchshifter | — | GPL | +| Bode frequency shifter | — | GPL | +| Comb delay line, noninterpolating | — | GPL | +| Crossover distortion | — | GPL | +| Decimator | — | GPL | +| Gate | — | GPL | +| Glame Bandpass Analog Filter | — | GPL | +| Glame Bandpass Filter | — | GPL | +| GLAME Butterworth Lowpass | — | GPL | +| GVerb | — | GPL | +| Karaoke | — | GPL | +| Multivoice Chorus | — | GPL | +| Reverse Delay | — | GPL | +| Ringmod with LFO | — | GPL | +| SC1 | — | GPL | +| State Variable Filter | — | GPL | +| Tape Delay Simulation | — | GPL | +| Valve saturation | — | GPL | ### TAL @@ -876,7 +1014,7 @@ Python packages installed in the runtime environment, extracted via `pip-license | Plugin | Version | License | |--------|---------|---------| -| Crypt | 0.3 | — | +| Crypt | 0.3 | GPL v3 | ### ZynAddSubFX Team @@ -892,266 +1030,16 @@ Python packages installed in the runtime environment, extracted via `pip-license | ZynReverb | 7.0 | GPL v2 | ### Unknown / Unattributed - | Plugin | Version | License | |--------|---------|---------| -| Aether | 2.1 | MIT | -| ALO | 0.9 | isc | -| AMS VCF | 1.0 | isc | -| Analogue Oscillator | — | gpl | -| Bitta | 2.0 | gpl | -| Delayorama | — | gpl | -| DIE Compressor | 2.2 | gpl | +| Analogue Oscillator | — | GPL | +| Delayorama | — | GPL | +| DIE Compressor | 2.2 | GPL | | DIE Delay | 4.2 | GPL v2+ | | DIE EQ | 2.2 | GPL v2+ | -| DIE Expander | 2.2 | gpl | -| DIE Reverb | 2.4 | gpl | -| Filta | 2.0 | gpl | -| Fuzz | 0.0 | — | -| Granulator - Mono | — | isc | -| Guitar Midi | — | isc | -| Invada Compressor (mono) | 2.1 | gpl | -| Invada Test Tones | 2.1 | gpl | +| DIE Expander | 2.2 | GPL | +| DIE Reverb | 2.4 | GPL | | Loopor | — | isc | -| MDA Ambience | 0.3 | gpl | -| MDA Bandisto | 0.5 | gpl | -| MDA BeatBox | 0.2 | gpl | -| MDA Combo | 0.4 | gpl | -| MDA De-ess | 0.2 | gpl | -| MDA Degrade | 0.2 | gpl | -| MDA Delay | 0.4 | gpl | -| MDA Detune | 0.4 | gpl | -| MDA Dither | 0.2 | gpl | -| MDA DubDelay | 0.7 | gpl | -| MDA DX10 | 0.3 | gpl | -| MDA Dynamics | 0.2 | gpl | -| MDA ePiano | 0.4 | gpl | -| MDA Image | 0.3 | gpl | -| MDA JX10 | 0.2 | gpl | -| MDA Leslie | 0.3 | gpl | -| MDA Limiter | 0.2 | gpl | -| MDA Loudness | 0.1 | gpl | -| MDA MultiBand | 0.3 | gpl | -| MDA Overdrive | 0.4 | gpl | -| MDA Piano | 0.1 | gpl | -| MDA RePsycho! | 0.1 | gpl | -| MDA RezFilter | 0.1 | gpl | -| MDA RingMod | 0.2 | gpl | -| MDA RoundPan | 0.2 | gpl | -| MDA Shepard | 0.4 | gpl | -| MDA Splitter | 0.2 | gpl | -| MDA Stereo | 0.2 | gpl | -| MDA SubSynth | 0.3 | gpl | -| MDA TalkBox | 0.2 | gpl | -| MDA TestTone | 0.2 | gpl | -| MDA ThruZero | 0.3 | gpl | -| MDA Transient | 0.1 | gpl | -| MDA VocInput | 0.2 | gpl | -| MDA Vocoder | 0.4 | gpl | -| MIDI Chord | 1033.31 | gpl | | MIDI display | 1.0 | GPLv3+ | -| Notes | 2.0 | Artistic-2.0 | -| Rec VCO | 0.0 | gpl-2.0 | -| reverb | 0.0 | gpl-2.0 | -| rkr EQ | 0.0 | — | -| setBfree MIDI controller | 1.0 | GPLv2+ | -| Square | 0.0 | — | -| Triceratops | — | gpl-3.0 | -| x42 - IR Convolver Mono | 1.1 | gpl | -
-Full plugin list by project (bundle variants) - -**AMS VCF**: AMS Envelope, AMS LFO2 - Freq, AMS VCA Exp, AMS VCA Lin, AMS VCF, AMS VCO3 - -**Audio Capture**: Audio Capture, Audio Playback - -**Audio Gain (Mono)**: Audio Gain (Mono), Audio Gain (Stereo) - -**Calf Gate**: Calf Bass Enhancer, Calf Compensation Delay Line, Calf Compressor, Calf Crusher, Calf Envelope Filter, Calf Equalizer 5 Band, Calf Exciter, Calf Filter, Calf Flanger, Calf Gate, Calf Mono Compressor, Calf Monosynth, Calf Multi Chorus, Calf Organ, Calf Phaser, Calf Pulsator, Calf Reverb, Calf Saturator, Calf Vintage Delay, Calf Wavetable - -**Comb delay line, noninterpolating**: Comb delay line, cubic spline interpolation, Comb delay line, linear interpolation, Comb delay line, noninterpolating - -**DIE Compressor**: DIE Compressor, DIE Compressor (stereo) - -**DIE Expander**: DIE Expander, DIE Expander (stereo) - -**Filta**: Filta, Kuiza, Roomy - -**Fuzz**: Fuzz, rkr Distortion, rkr Flanger/Chorus, rkr Parametric EQ, rkr Reverb - -**GLAME Butterworth Lowpass**: GLAME Butterworth Highpass, GLAME Butterworth Lowpass, Glame Butterworth X-over Filter - -**Granulator - Mono**: Downsampler - Mono, Downsampler - Stereo, Granulator - Mono, Granulator - Stereo - -**Invada Compressor (mono)**: Invada Compressor (mono), Invada Compressor (stereo), Invada Delay Munge (mono in), Invada Delay Munge (sum L+R in), Invada Stereo Phaser (mono in), Invada Stereo Phaser (stereo in), Invada Stereo Phaser (sum L+R in) - -**Invada Test Tones**: Invada Early Reflection Reverb (mono in), Invada Early Reflection Reverb (sum L+R in), Invada High Pass Filter (mono), Invada High Pass Filter (stereo), Invada Input Module, Invada Low Pass Filter (mono), Invada Low Pass Filter (stereo), Invada Test Tones, Invada Tube Distortion (mono), Invada Tube Distortion (stereo) - -**LSP IR Mono**: LSP IR Mono, LSP IR Stereo - -**MIDI Chord**: MIDI CC Map, MIDI CC to Note, MIDI Channel Filter, MIDI Channel Map, MIDI Channel Unisono, MIDI Chord, MIDI Chromatic Transpose, MIDI Delayline, MIDI Duplicate Blocker, MIDI Enforce Scale, MIDI Event Filter, MIDI Key-Range Filter, MIDI Keysplit, MIDI Monophonic Legato, MIDI N-Tap Delay, MIDI Note Toggle, MIDI Note Transpose, MIDI Note to CC, MIDI Note/Channel Map, MIDI Quantization, MIDI Remove Active Sensing, MIDI Scale CC Value, MIDI Simple Channel Filter, MIDI Sostenuto, MIDI Strum, MIDI Velocity Adjust, MIDI Velocity Randomization, MIDI Velocity-Range Filter - -**MIDI File**: Audio File, MIDI File - -**MIDI Gain**: MIDI Channel A/B, MIDI Channel Filter, MIDI Channelize, MIDI Gain, MIDI Join, MIDI Split, MIDI Transpose - -**Portal Sink**: Portal Sink, Portal Source - -**Rec VCO**: 4-Band Parametric Filter, CS Phaser 1, Moog High-Pass Filter 1, Moog Low-Pass Filter 1, Moog Low-Pass Filter 2, Moog Low-Pass Filter 3, Moog Low-Pass Filter 4, Pulse VCO, Rec VCO, Saw VCO, reverb-amb - -**Record-Mono**: Record-Mono, Record-Quad, Record-Stereo - -**Record-Mono Mini**: Record-Mono Mini, Record-Quad Mini, Record-Stereo Mini - -**reverb**: Auto-wah, CS Chorus 1, CS Chorus 2, CS Phaser 1 with LFO, Triple chorus, reverb - -**Ringmod with LFO**: Ringmod with LFO, Ringmod with two inputs - -**rkr EQ**: rkr AlienWah, rkr Analog Phaser, rkr Arpie, rkr Cabinet, rkr Coil Crafter, rkr CompBand, rkr Compressor, rkr Derelict, rkr DistBand, rkr Dual Flange, rkr EQ, rkr Echo, rkr Echotron, rkr Echoverse, rkr Exciter, rkr Expander, rkr Harmonizer (no midi), rkr Infinity, rkr MuTroMojo, rkr Musical Delay, rkr OpticalTrem, rkr Shelf Boost, rkr Shuffle, rkr StereoHarmonizer (no midi), rkr StompBox, rkr Sustainer, rkr Synthfilter, rkr Valve, rkr VaryBand, rkr Vibe, rkr Vocoder, rkr WahWah - -**Rubberband (Mono)**: Rubberband (Mono), Rubberband (Stereo) - -**Square**: Sawtooth, Square, Triangle - -**the infamous stuck**: the infamous stuck, the infamous stuck stacker - -**TinyGain Mono**: TinyGain Mono, TinyGain Stereo - -**x42 - IR Convolver Mono**: x42 - IR Convolver Mono, x42 - IR Convolver Stereo - -**x42-Autotune**: x42-Autotune, x42-Autotune (microtonal), x42-Autotune (scales) - -**x42-eq - Parametric Equalizer Mono**: x42-eq - Parametric Equalizer Mono, x42-eq - Parametric Equalizer Stereo - -
- -### ⚠️ Plugins with no license declared (56) - -These require manual license verification: - -- The Function -- The Pilgrim -- bluesbreaker -- PowerAmpImpulses -- PowerAmpTubes -- PreAmpImpulses -- PreAmpTubes -- CollisionDrive -- Harmonic Exciter -- MetalTone -- Rumor -- VintageAC30 -- Temper -- Obxd -- dRowAudio Tremolo -- dRowAudio: Distortion -- dRowAudio: Distortion Shaper -- dRowAudio: Flanger -- dRowAudio: Reverb -- TS-M1N3 -- WOW -- Schrammel OJD -- ChowCentaur -- Luftikus -- ReFine -- Helm -- MIDI Gain -- Audio to CV -- CV Clock -- CV Switchbox 1-2 -- CV Switchbox 1-3 -- CV Switchbox 2-1 -- CV Switchbox 3-1 -- MIDI to CV Poly -- Slew Rate Limiter -- Noise Maker - ME -- MIDI to CV mono -- Sorcer -- JuceOPL -- Swanky Amp -- TAL-Reverb-II -- Tal-Dub-3 -- Tal-Filter -- Tal-Filter-2 -- Tal-Reverb -- Tal-Reverb-III -- Tal-Vocoder-II -- Wolpertinger -- Bass Cabinets -- British 1960A -- Cabinet -- Compressor -- Crypt -- Fuzz -- rkr EQ -- Square - -### ⚠️ Plugins with no author declared (63) - -- Aether -- ALO -- AMS VCF -- Analogue Oscillator -- Bitta -- Delayorama -- DIE Compressor -- DIE Delay -- DIE EQ -- DIE Expander -- DIE Reverb -- Filta -- Fuzz -- Granulator - Mono -- Guitar Midi -- Invada Compressor (mono) -- Invada Test Tones -- Loopor -- MDA Ambience -- MDA Bandisto -- MDA BeatBox -- MDA Combo -- MDA De-ess -- MDA Degrade -- MDA Delay -- MDA Detune -- MDA Dither -- MDA DubDelay -- MDA DX10 -- MDA Dynamics -- MDA ePiano -- MDA Image -- MDA JX10 -- MDA Leslie -- MDA Limiter -- MDA Loudness -- MDA MultiBand -- MDA Overdrive -- MDA Piano -- MDA RePsycho! -- MDA RezFilter -- MDA RingMod -- MDA RoundPan -- MDA Shepard -- MDA Splitter -- MDA Stereo -- MDA SubSynth -- MDA TalkBox -- MDA TestTone -- MDA ThruZero -- MDA Transient -- MDA VocInput -- MDA Vocoder -- MIDI Chord -- MIDI display -- Notes -- Rec VCO -- reverb -- rkr EQ -- setBfree MIDI controller -- Square -- Triceratops -- x42 - IR Convolver Mono - ---- -_662 plugin variants across 510 projects from 62 authors/vendors._ +--- \ No newline at end of file From e3b7091d6cd878785b1f3c848a4ef60563f7086f Mon Sep 17 00:00:00 2001 From: Randall Reichenbach Date: Thu, 18 Jun 2026 09:12:25 -0700 Subject: [PATCH 3/5] Update CHANGELOG.md Co-authored-by: Cameron Gorrie --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc1e6fdb1..7b80c7dcd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Unit and integration tests with test harness - `deploy.sh` to deploy your local code to the device - `update.sh` for git pull + uv sync on-device -- `./run_emulator.sh` for a v1/v2/v3; requires [MOD Desktop](https://mod.audio/desktop/) +- `./run_emulator.sh [v1|v2|v3]`; v3 default; requires [MOD Desktop](https://mod.audio/desktop/) ### Fixed - Users can now enter spaces in the letter selector (used for wifi config) From 6f3c3db170e18a5fe9a0086b8ef59a4fea6745fc Mon Sep 17 00:00:00 2001 From: Randall Reichenbach Date: Thu, 18 Jun 2026 09:12:36 -0700 Subject: [PATCH 4/5] Update CHANGELOG.md Co-authored-by: Cameron Gorrie --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b80c7dcd..e6ffaef73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [v3.1.0] ### Added -- On-device (LCD) strobe tuner with mute. defaults to longpress on footswitch C +- On-device (LCD) strobe tuner with mute. Defaults to longpress on footswitch C - Sync LCD and MOD-UI using WebSocket bridge (replaces last.json polling) - Blend mode for parameter blending between snapshots - Optional autosync for one-time send of MIDI CCs to current analog positions From 52608d878df601742f7686fdb8e2604ebb4b65e6 Mon Sep 17 00:00:00 2001 From: Randall Reichenbach Date: Thu, 18 Jun 2026 09:12:50 -0700 Subject: [PATCH 5/5] Update THIRD_PARTY_LICENSES.md Co-authored-by: Cameron Gorrie --- THIRD_PARTY_LICENSES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/THIRD_PARTY_LICENSES.md b/THIRD_PARTY_LICENSES.md index 5b7635c0b..c157cb41d 100644 --- a/THIRD_PARTY_LICENSES.md +++ b/THIRD_PARTY_LICENSES.md @@ -40,7 +40,7 @@ These are the core audio/MIDI services and supporting tools built from source an ## Python Dependencies -Python packages installed in the runtime environment, extracted via `pip-licenses`. 57 runtime packages are listed below; 24 additional packages used only for development, linting, or documentation are listed separately and are not part of the distributed runtime image. +Python packages installed in the runtime environment, extracted via `pip-licenses`. Runtime packages are listed below; additional packages used only for development, linting, or documentation are listed separately and are not part of the distributed runtime image. ### Runtime Dependencies