├── .gitignore ├── LICENSE.md ├── README.md ├── browser ├── index.html └── mock │ ├── electron.js │ ├── fs.js │ └── require.js ├── desktop ├── icon.icns ├── icon.ico ├── icon.png ├── icon.svg ├── main.js ├── package-lock.json ├── package.json └── sources │ ├── index.html │ ├── links │ ├── fonts.css │ ├── main.css │ ├── reset.css │ ├── style.css │ └── theme.css │ ├── media │ └── fonts │ │ ├── input_mono_medium.ttf │ │ └── input_mono_regular.ttf │ └── scripts │ ├── commander.js │ ├── interface.channel.js │ ├── interface.effect.js │ ├── interface.js │ ├── lib │ ├── controller.js │ └── theme.js │ ├── listener.js │ ├── mixer.js │ ├── pilot.js │ ├── recorder.js │ └── transpose.js └── resources ├── device.jpg └── preview.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/README.md -------------------------------------------------------------------------------- /browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/browser/index.html -------------------------------------------------------------------------------- /browser/mock/electron.js: -------------------------------------------------------------------------------- 1 | export let remote = {}; 2 | -------------------------------------------------------------------------------- /browser/mock/fs.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /browser/mock/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/browser/mock/require.js -------------------------------------------------------------------------------- /desktop/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/icon.icns -------------------------------------------------------------------------------- /desktop/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/icon.ico -------------------------------------------------------------------------------- /desktop/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/icon.png -------------------------------------------------------------------------------- /desktop/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/icon.svg -------------------------------------------------------------------------------- /desktop/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/main.js -------------------------------------------------------------------------------- /desktop/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/package-lock.json -------------------------------------------------------------------------------- /desktop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/package.json -------------------------------------------------------------------------------- /desktop/sources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/sources/index.html -------------------------------------------------------------------------------- /desktop/sources/links/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/sources/links/fonts.css -------------------------------------------------------------------------------- /desktop/sources/links/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/sources/links/main.css -------------------------------------------------------------------------------- /desktop/sources/links/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/sources/links/reset.css -------------------------------------------------------------------------------- /desktop/sources/links/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/sources/links/style.css -------------------------------------------------------------------------------- /desktop/sources/links/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/sources/links/theme.css -------------------------------------------------------------------------------- /desktop/sources/media/fonts/input_mono_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/sources/media/fonts/input_mono_medium.ttf -------------------------------------------------------------------------------- /desktop/sources/media/fonts/input_mono_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/sources/media/fonts/input_mono_regular.ttf -------------------------------------------------------------------------------- /desktop/sources/scripts/commander.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/sources/scripts/commander.js -------------------------------------------------------------------------------- /desktop/sources/scripts/interface.channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/sources/scripts/interface.channel.js -------------------------------------------------------------------------------- /desktop/sources/scripts/interface.effect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/sources/scripts/interface.effect.js -------------------------------------------------------------------------------- /desktop/sources/scripts/interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/sources/scripts/interface.js -------------------------------------------------------------------------------- /desktop/sources/scripts/lib/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/sources/scripts/lib/controller.js -------------------------------------------------------------------------------- /desktop/sources/scripts/lib/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/sources/scripts/lib/theme.js -------------------------------------------------------------------------------- /desktop/sources/scripts/listener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/sources/scripts/listener.js -------------------------------------------------------------------------------- /desktop/sources/scripts/mixer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/sources/scripts/mixer.js -------------------------------------------------------------------------------- /desktop/sources/scripts/pilot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/sources/scripts/pilot.js -------------------------------------------------------------------------------- /desktop/sources/scripts/recorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/sources/scripts/recorder.js -------------------------------------------------------------------------------- /desktop/sources/scripts/transpose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/desktop/sources/scripts/transpose.js -------------------------------------------------------------------------------- /resources/device.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/resources/device.jpg -------------------------------------------------------------------------------- /resources/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hundredrabbits/Pilot/HEAD/resources/preview.jpg --------------------------------------------------------------------------------