├── .gitignore ├── README.md ├── app └── app.html ├── gulpfile.js ├── package.json ├── screenshot.png ├── scripts ├── travis-build.sh └── windows-build.bat ├── src ├── app.js ├── background.js ├── env.js ├── helpers │ ├── context_menu.js │ ├── external_links.js │ └── window.js ├── menu │ ├── dev_menu_template.js │ └── edit_menu_template.js └── stylesheets │ ├── background-repeat.png │ ├── fira-sans.less │ └── main.less └── tasks ├── build_app.js ├── bundle.js ├── start.js └── utils.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/README.md -------------------------------------------------------------------------------- /app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/app/app.html -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/screenshot.png -------------------------------------------------------------------------------- /scripts/travis-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/scripts/travis-build.sh -------------------------------------------------------------------------------- /scripts/windows-build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/scripts/windows-build.bat -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/src/app.js -------------------------------------------------------------------------------- /src/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/src/background.js -------------------------------------------------------------------------------- /src/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/src/env.js -------------------------------------------------------------------------------- /src/helpers/context_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/src/helpers/context_menu.js -------------------------------------------------------------------------------- /src/helpers/external_links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/src/helpers/external_links.js -------------------------------------------------------------------------------- /src/helpers/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/src/helpers/window.js -------------------------------------------------------------------------------- /src/menu/dev_menu_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/src/menu/dev_menu_template.js -------------------------------------------------------------------------------- /src/menu/edit_menu_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/src/menu/edit_menu_template.js -------------------------------------------------------------------------------- /src/stylesheets/background-repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/src/stylesheets/background-repeat.png -------------------------------------------------------------------------------- /src/stylesheets/fira-sans.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/src/stylesheets/fira-sans.less -------------------------------------------------------------------------------- /src/stylesheets/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/src/stylesheets/main.less -------------------------------------------------------------------------------- /tasks/build_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/tasks/build_app.js -------------------------------------------------------------------------------- /tasks/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/tasks/bundle.js -------------------------------------------------------------------------------- /tasks/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/tasks/start.js -------------------------------------------------------------------------------- /tasks/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastl-instruments/60Knobs-Editor/HEAD/tasks/utils.js --------------------------------------------------------------------------------