Files
L'électron rare 8dab7236d4 feat(launcher): SwiftUI menubar app
Context: AV-Live needs a single-click way to boot its two heavy
components (the SuperCollider sound engine and the openFrameworks
oscope-of visualizer) together, with their logs aggregated in one
place. Running them by hand from terminal during a live set is fragile.

Approach: Swift Package Manager + a small build.sh that wraps the
release binary into a real .app bundle (Info.plist with LSUIElement=true
to keep it out of the Dock). The UI uses NSStatusItem + NSPopover so
it works back to macOS 11 (Big Sur) — MenuBarExtra would require 13+
which the current target MBP can't run.

Changes:
- launcher/Package.swift : SwiftPM manifest, single executable target,
  macOS 11 minimum
- AVLiveLauncherApp.swift : @main App + AppDelegate that owns the
  status item, popover and lazily-created log window
- ProcessManager.swift : ObservableObject spawning sclang and oscope-of
  via Foundation Process, capturing stdout/stderr through Pipe +
  readabilityHandler, ring-buffered log array (2000 lines), termination
  handlers that flip @Published flags back. Paths persisted in
  UserDefaults with sane defaults
- MenuBarContent.swift : popover view with two ProcessRow toggles,
  Logs / Paths / Quit, Settings sheet using NSOpenPanel
- LogView.swift : separate window with filter, auto-scroll, color-coded
  source column, monospaced font. #available guard for textSelection
- Info.plist : bundle id cc.saillant.AVLiveLauncher, GPL-3 copyright,
  LSUIElement true, min macOS 11
- build.sh : swift build -c release, copies binary + Info.plist into
  AVLiveLauncher.app, ad-hoc codesigns
- .gitignore + README

Impact: 'cd launcher && ./build.sh && open build/AVLiveLauncher.app'
gives a working .app that brings up the AV stack from the menubar.
Smoke-tested on arm64 — Intel MBP needs a local build or a future
universal -arch x86_64 flag in build.sh.
2026-05-07 12:04:59 +02:00

14 lines
275 B
Swift

// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "AVLiveLauncher",
platforms: [.macOS(.v11)],
targets: [
.executableTarget(
name: "AVLiveLauncher",
path: "Sources/AVLiveLauncher"
)
]
)