├── .babelrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── app ├── AppBridge.js ├── AppCapturer.js ├── IconGenerator.js ├── ImageUtils.js ├── WebsiteManager.js ├── builder.js ├── index.js ├── is.js ├── preload.js ├── preload_embedded.js └── wrapper.js ├── assets ├── MacInstaller.PNG ├── atom.ico ├── electron.icns └── icon.png ├── package.json ├── renderer ├── css │ └── font-awesome.min.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 └── index.html ├── src ├── Overview.vue ├── app.js ├── assets │ ├── asset-overview.vue │ ├── icon-generator.vue │ ├── screenshot-container.vue │ └── screenshot-tool.vue ├── installer-view.vue ├── launchfox-embedded.vue ├── mocks │ └── website.js ├── more-tools.vue ├── publish │ ├── publish-form-github.vue │ ├── publish-form-launchfox.vue │ ├── publish-form-s3.vue │ └── publish-overview.vue ├── storage.js ├── store.js ├── toolkit.js ├── website-builder-view.vue └── widgets │ ├── fx-toast.vue │ ├── loading-button.vue │ ├── server-error.vue │ └── sticky-footer.vue └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /app/AppBridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/app/AppBridge.js -------------------------------------------------------------------------------- /app/AppCapturer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/app/AppCapturer.js -------------------------------------------------------------------------------- /app/IconGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/app/IconGenerator.js -------------------------------------------------------------------------------- /app/ImageUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/app/ImageUtils.js -------------------------------------------------------------------------------- /app/WebsiteManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/app/WebsiteManager.js -------------------------------------------------------------------------------- /app/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/app/builder.js -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/app/index.js -------------------------------------------------------------------------------- /app/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/app/is.js -------------------------------------------------------------------------------- /app/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/app/preload.js -------------------------------------------------------------------------------- /app/preload_embedded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/app/preload_embedded.js -------------------------------------------------------------------------------- /app/wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/app/wrapper.js -------------------------------------------------------------------------------- /assets/MacInstaller.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/assets/MacInstaller.PNG -------------------------------------------------------------------------------- /assets/atom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/assets/atom.ico -------------------------------------------------------------------------------- /assets/electron.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/assets/electron.icns -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/assets/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/package.json -------------------------------------------------------------------------------- /renderer/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/renderer/css/font-awesome.min.css -------------------------------------------------------------------------------- /renderer/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/renderer/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /renderer/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/renderer/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /renderer/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/renderer/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /renderer/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/renderer/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /renderer/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/renderer/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /renderer/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/renderer/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/renderer/index.html -------------------------------------------------------------------------------- /src/Overview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/Overview.vue -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/app.js -------------------------------------------------------------------------------- /src/assets/asset-overview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/assets/asset-overview.vue -------------------------------------------------------------------------------- /src/assets/icon-generator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/assets/icon-generator.vue -------------------------------------------------------------------------------- /src/assets/screenshot-container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/assets/screenshot-container.vue -------------------------------------------------------------------------------- /src/assets/screenshot-tool.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/assets/screenshot-tool.vue -------------------------------------------------------------------------------- /src/installer-view.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/installer-view.vue -------------------------------------------------------------------------------- /src/launchfox-embedded.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/launchfox-embedded.vue -------------------------------------------------------------------------------- /src/mocks/website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/mocks/website.js -------------------------------------------------------------------------------- /src/more-tools.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/more-tools.vue -------------------------------------------------------------------------------- /src/publish/publish-form-github.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/publish/publish-form-github.vue -------------------------------------------------------------------------------- /src/publish/publish-form-launchfox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/publish/publish-form-launchfox.vue -------------------------------------------------------------------------------- /src/publish/publish-form-s3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/publish/publish-form-s3.vue -------------------------------------------------------------------------------- /src/publish/publish-overview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/publish/publish-overview.vue -------------------------------------------------------------------------------- /src/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/storage.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/store.js -------------------------------------------------------------------------------- /src/toolkit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/toolkit.js -------------------------------------------------------------------------------- /src/website-builder-view.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/website-builder-view.vue -------------------------------------------------------------------------------- /src/widgets/fx-toast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/widgets/fx-toast.vue -------------------------------------------------------------------------------- /src/widgets/loading-button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/widgets/loading-button.vue -------------------------------------------------------------------------------- /src/widgets/server-error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/widgets/server-error.vue -------------------------------------------------------------------------------- /src/widgets/sticky-footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/src/widgets/sticky-footer.vue -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilippLgh/electron-toolkit/HEAD/webpack.config.js --------------------------------------------------------------------------------