From c9bed33c75b4c8025ad8554257a1929bd0be2afd Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Wed, 11 Feb 2026 19:19:07 -0800 Subject: [PATCH] Move libraries to lib/ and PDF to docs/ --- cmd/decktest/main.go | 2 +- cmd/xtouchtest/main.go | 2 +- ...CH-X-TOUCH-EXTENDER-MIDI-Mode-Implementation.pdf | Bin {streamdeck => lib/streamdeck}/streamdeck.go | 0 {xtouch => lib/xtouch}/output.go | 0 {xtouch => lib/xtouch}/xtouch.go | 0 6 files changed, 2 insertions(+), 2 deletions(-) rename Document_BE_X-TOUCH-X-TOUCH-EXTENDER-MIDI-Mode-Implementation.pdf => docs/Document_BE_X-TOUCH-X-TOUCH-EXTENDER-MIDI-Mode-Implementation.pdf (100%) rename {streamdeck => lib/streamdeck}/streamdeck.go (100%) rename {xtouch => lib/xtouch}/output.go (100%) rename {xtouch => lib/xtouch}/xtouch.go (100%) diff --git a/cmd/decktest/main.go b/cmd/decktest/main.go index e058fdf..5329c50 100644 --- a/cmd/decktest/main.go +++ b/cmd/decktest/main.go @@ -8,7 +8,7 @@ import ( "os/signal" "syscall" - "qrun/streamdeck" + "qrun/lib/streamdeck" ) func main() { diff --git a/cmd/xtouchtest/main.go b/cmd/xtouchtest/main.go index 642d2bb..6c604c3 100644 --- a/cmd/xtouchtest/main.go +++ b/cmd/xtouchtest/main.go @@ -9,7 +9,7 @@ import ( "gitlab.com/gomidi/midi/v2" _ "gitlab.com/gomidi/midi/v2/drivers/rtmididrv" - "qrun/xtouch" + "qrun/lib/xtouch" ) var lcdColors = []xtouch.LCDColor{ diff --git a/Document_BE_X-TOUCH-X-TOUCH-EXTENDER-MIDI-Mode-Implementation.pdf b/docs/Document_BE_X-TOUCH-X-TOUCH-EXTENDER-MIDI-Mode-Implementation.pdf similarity index 100% rename from Document_BE_X-TOUCH-X-TOUCH-EXTENDER-MIDI-Mode-Implementation.pdf rename to docs/Document_BE_X-TOUCH-X-TOUCH-EXTENDER-MIDI-Mode-Implementation.pdf diff --git a/streamdeck/streamdeck.go b/lib/streamdeck/streamdeck.go similarity index 100% rename from streamdeck/streamdeck.go rename to lib/streamdeck/streamdeck.go diff --git a/xtouch/output.go b/lib/xtouch/output.go similarity index 100% rename from xtouch/output.go rename to lib/xtouch/output.go diff --git a/xtouch/xtouch.go b/lib/xtouch/xtouch.go similarity index 100% rename from xtouch/xtouch.go rename to lib/xtouch/xtouch.go