├── .babelrc ├── .electron-vue ├── build.js ├── dev-client.js ├── dev-runner.js ├── webpack.main.config.js ├── webpack.renderer.config.js └── webpack.web.config.js ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── README.md ├── dist ├── electron │ └── .gitkeep └── web │ └── .gitkeep ├── package.json ├── src ├── index.ejs ├── main │ ├── auto-updater │ │ └── index.js │ ├── index.dev.js │ └── index.js └── renderer │ ├── App.vue │ ├── assets │ └── .gitkeep │ ├── components │ ├── Home.vue │ ├── Info.vue │ ├── Settings.vue │ └── VideosList.vue │ ├── main.js │ ├── router │ └── index.js │ ├── services │ ├── analytics │ │ └── index.js │ ├── helpers │ │ └── index.js │ ├── settings │ │ └── index.js │ ├── subtitles │ │ └── index.js │ └── videos │ │ └── index.js │ └── styles │ ├── _fonts.scss │ ├── _spinner.scss │ └── app.scss ├── static ├── .gitkeep ├── fonts │ ├── roboto-v15-latin-500.woff │ ├── roboto-v15-latin-500.woff2 │ ├── roboto-v15-latin-regular.woff │ └── roboto-v15-latin-regular.woff2 └── photon │ ├── css │ ├── photon.css │ └── photon.min.css │ └── fonts │ ├── photon-entypo.eot │ ├── photon-entypo.svg │ ├── photon-entypo.ttf │ └── photon-entypo.woff └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/.babelrc -------------------------------------------------------------------------------- /.electron-vue/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/.electron-vue/build.js -------------------------------------------------------------------------------- /.electron-vue/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/.electron-vue/dev-client.js -------------------------------------------------------------------------------- /.electron-vue/dev-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/.electron-vue/dev-runner.js -------------------------------------------------------------------------------- /.electron-vue/webpack.main.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/.electron-vue/webpack.main.config.js -------------------------------------------------------------------------------- /.electron-vue/webpack.renderer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/.electron-vue/webpack.renderer.config.js -------------------------------------------------------------------------------- /.electron-vue/webpack.web.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/.electron-vue/webpack.web.config.js -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/README.md -------------------------------------------------------------------------------- /dist/electron/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/web/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/src/index.ejs -------------------------------------------------------------------------------- /src/main/auto-updater/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/src/main/auto-updater/index.js -------------------------------------------------------------------------------- /src/main/index.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/src/main/index.dev.js -------------------------------------------------------------------------------- /src/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/src/main/index.js -------------------------------------------------------------------------------- /src/renderer/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/src/renderer/App.vue -------------------------------------------------------------------------------- /src/renderer/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/components/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/src/renderer/components/Home.vue -------------------------------------------------------------------------------- /src/renderer/components/Info.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/src/renderer/components/Info.vue -------------------------------------------------------------------------------- /src/renderer/components/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/src/renderer/components/Settings.vue -------------------------------------------------------------------------------- /src/renderer/components/VideosList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/src/renderer/components/VideosList.vue -------------------------------------------------------------------------------- /src/renderer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/src/renderer/main.js -------------------------------------------------------------------------------- /src/renderer/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/src/renderer/router/index.js -------------------------------------------------------------------------------- /src/renderer/services/analytics/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/src/renderer/services/analytics/index.js -------------------------------------------------------------------------------- /src/renderer/services/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/src/renderer/services/helpers/index.js -------------------------------------------------------------------------------- /src/renderer/services/settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/src/renderer/services/settings/index.js -------------------------------------------------------------------------------- /src/renderer/services/subtitles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/src/renderer/services/subtitles/index.js -------------------------------------------------------------------------------- /src/renderer/services/videos/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/src/renderer/services/videos/index.js -------------------------------------------------------------------------------- /src/renderer/styles/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/src/renderer/styles/_fonts.scss -------------------------------------------------------------------------------- /src/renderer/styles/_spinner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/src/renderer/styles/_spinner.scss -------------------------------------------------------------------------------- /src/renderer/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/src/renderer/styles/app.scss -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/fonts/roboto-v15-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/static/fonts/roboto-v15-latin-500.woff -------------------------------------------------------------------------------- /static/fonts/roboto-v15-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/static/fonts/roboto-v15-latin-500.woff2 -------------------------------------------------------------------------------- /static/fonts/roboto-v15-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/static/fonts/roboto-v15-latin-regular.woff -------------------------------------------------------------------------------- /static/fonts/roboto-v15-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/static/fonts/roboto-v15-latin-regular.woff2 -------------------------------------------------------------------------------- /static/photon/css/photon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/static/photon/css/photon.css -------------------------------------------------------------------------------- /static/photon/css/photon.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/static/photon/css/photon.min.css -------------------------------------------------------------------------------- /static/photon/fonts/photon-entypo.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/static/photon/fonts/photon-entypo.eot -------------------------------------------------------------------------------- /static/photon/fonts/photon-entypo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/static/photon/fonts/photon-entypo.svg -------------------------------------------------------------------------------- /static/photon/fonts/photon-entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/static/photon/fonts/photon-entypo.ttf -------------------------------------------------------------------------------- /static/photon/fonts/photon-entypo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/static/photon/fonts/photon-entypo.woff -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiastucci/easysubs/HEAD/yarn.lock --------------------------------------------------------------------------------