Reorganize top-level directories with clearer naming convention

app -> app-desktop-macos, presets -> app-presets, server -> remote-server,
daw-config-reaper -> osc-config-daw, plugin-reaper-realearn -> plugin-reaper-relearn.
Updated run.py and presets.py path references accordingly.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Paul Lipscomb
2026-07-15 17:51:05 -04:00
parent e58f06d9fa
commit 7ecc718f5d
2256 changed files with 11 additions and 5 deletions
@@ -0,0 +1,34 @@
--- name: APC mini - Playtime
--- realearn_version: 2.16.0-pre.8
--- author: helgoboss
--- device_manufacturer: Akai
--- device_name: APC mini
--- description: |
--- This main preset turns the APC mini into a capable device for controlling Playtime. Hold Shift
--- to access advanced functions.
--- used_schemes: [akai/apc-mini]
--- required_features: [playtime]
--!strict
local commons = require("akai/apc-lib/playtime-commons")
return commons.create_compartment {
use_column_stop_buttons = true,
stop_column_if_slot_empty = true,
mute_track_button_id = "row4/play",
arm_track_button_id = "row3/play",
column_count = 8,
row_count = 8,
up_button_id = "col1/stop",
down_button_id = "col2/stop",
left_button_id = "col3/stop",
right_button_id = "col4/stop",
volume_button_id = "col5/stop",
pan_button_id = "col6/stop",
send_button_id = "col7/stop",
device_button_id = "col8/stop",
stop_all_clips_button_id = "row8/play",
stop_all_clips_need_shift = true,
}