Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions debpkgs/mod-ui/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
mod-ui (3.0-13) trixie; urgency=medium

* Add mod-ui-owned session recording: toolbar record button, 32-bit
float WAV capture to Audio Recordings/ (no clipping, no duration
cap), multi-tab WebSocket sync, and a crash watchdog. Fixes
jack_capture exiting instantly under systemd (missing --no-stdin).

-- Cam Gorrie <sastraxi@gmail.com> Thu, 23 Jul 2026 03:20:40 +0000

mod-ui (3.0-12) trixie; urgency=medium

* Fix broken pedalboard thumbnails on save: modtools.pedalboard used
Expand Down
6 changes: 3 additions & 3 deletions stage2/01-sys-tweaks/00-packages-nr
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ python3-pip
# raspberrypi-sys-mods goes here (no-install-recommends) so its Recommends
# (userconf-pi, rfkill) don't get pulled in. userconf-pi is not available
# on Trixie and is not needed because DISABLE_FIRST_BOOT_USER_RENAME=1;
# rfkill is pulled in by other packages already. rpi-eeprom and
# ssh-import-id, also Recommends of raspberrypi-sys-mods, are explicitly
# listed in 00-packages.
# rfkill is listed explicitly in 05-pistomp/00-packages (Bluetooth needs it
# to unblock the radio). rpi-eeprom and ssh-import-id, also Recommends of
# raspberrypi-sys-mods, are explicitly listed in 00-packages.
raspberrypi-sys-mods
1 change: 1 addition & 0 deletions stage2/05-pistomp/00-packages
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
jack-example-tools
liblilv-dev
rfkill
rtirq-init
8 changes: 8 additions & 0 deletions stage2/05-pistomp/01-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ install -Dm 644 files/60-ondemand-governor.rules ${ROOTFS_DIR}/etc/udev/rules.d/

# Realtime priority + memlock limits for audio group (non-service processes)
install -Dm 644 files/99-audio.conf ${ROOTFS_DIR}/etc/security/limits.d/99-audio.conf

# Bluetooth: Experimental BLE-MIDI plugin creates ALSA seq ports
install -Dm 644 files/bluetooth-main.conf ${ROOTFS_DIR}/etc/bluetooth/main.conf
# Drop-in: clear the rfkill soft-block before bluetoothd powers the adapter
# (Pi 5 BT can boot soft-blocked). Harmless when BT is disabled — never runs.
mkdir -p "${ROOTFS_DIR}/etc/systemd/system/bluetooth.service.d"
install -v -m 644 files/services/bluetooth-rfkill-unblock.conf \
"${ROOTFS_DIR}/etc/systemd/system/bluetooth.service.d/rfkill-unblock.conf"
install -m 755 files/wait-for-jack.sh ${ROOTFS_DIR}/usr/local/bin/wait-for-jack.sh
install -m 755 files/wifi-mac-check.sh ${ROOTFS_DIR}/usr/local/bin/wifi-mac-check.sh

Expand Down
Loading
Loading