├── .github └── workflows │ └── archive.yaml ├── .gitignore ├── .swcrc ├── .tool-versions ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── companion ├── HELP.md └── manifest.json ├── eslint.config.mjs ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── src ├── actions │ ├── channels.ts │ └── projectScenes.ts ├── defaults.ts ├── feedbacks.ts ├── index.ts ├── mixes.ts ├── presets.ts ├── types │ ├── Config.ts │ └── OptionSets.ts └── util │ ├── FunctionDebouncer.ts │ ├── actionsUtils.ts │ └── channelUtils.ts └── tsconfig.json /.github/workflows/archive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/.github/workflows/archive.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /pkg/ 3 | bitfocus-presonus-studiolive-*.tgz 4 | node_modules/ 5 | .DS_Store -------------------------------------------------------------------------------- /.swcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/.swcrc -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 22.21.0 2 | -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/README.md -------------------------------------------------------------------------------- /companion/HELP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/companion/HELP.md -------------------------------------------------------------------------------- /companion/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/companion/manifest.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /src/actions/channels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/src/actions/channels.ts -------------------------------------------------------------------------------- /src/actions/projectScenes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/src/actions/projectScenes.ts -------------------------------------------------------------------------------- /src/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/src/defaults.ts -------------------------------------------------------------------------------- /src/feedbacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/src/feedbacks.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/mixes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/src/mixes.ts -------------------------------------------------------------------------------- /src/presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/src/presets.ts -------------------------------------------------------------------------------- /src/types/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/src/types/Config.ts -------------------------------------------------------------------------------- /src/types/OptionSets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/src/types/OptionSets.ts -------------------------------------------------------------------------------- /src/util/FunctionDebouncer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/src/util/FunctionDebouncer.ts -------------------------------------------------------------------------------- /src/util/actionsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/src/util/actionsUtils.ts -------------------------------------------------------------------------------- /src/util/channelUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/src/util/channelUtils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/featherbear/bitfocus-companion-module-presonus-studiolive/HEAD/tsconfig.json --------------------------------------------------------------------------------