├── .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 ├── .travis.yml ├── LICENSE ├── README.md ├── appveyor.yml ├── dist ├── electron │ └── .gitkeep └── web │ └── .gitkeep ├── package.json ├── src ├── index.ejs ├── main │ ├── index.dev.js │ ├── index.js │ └── libs │ │ ├── audioHelper.js │ │ ├── dbHelper.js │ │ ├── pathHelper.js │ │ └── ytHelper.js └── renderer │ ├── App.vue │ ├── assets │ ├── .gitkeep │ └── logo.png │ ├── components │ ├── ListView.vue │ ├── MainPage.vue │ ├── Modal.vue │ └── MusicPlayer.vue │ ├── main.js │ ├── router │ └── index.js │ └── store │ ├── index.js │ └── modules │ ├── Counter.js │ ├── Videos.js │ └── index.js ├── static └── .gitkeep └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/.babelrc -------------------------------------------------------------------------------- /.electron-vue/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/.electron-vue/build.js -------------------------------------------------------------------------------- /.electron-vue/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/.electron-vue/dev-client.js -------------------------------------------------------------------------------- /.electron-vue/dev-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/.electron-vue/dev-runner.js -------------------------------------------------------------------------------- /.electron-vue/webpack.main.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/.electron-vue/webpack.main.config.js -------------------------------------------------------------------------------- /.electron-vue/webpack.renderer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/.electron-vue/webpack.renderer.config.js -------------------------------------------------------------------------------- /.electron-vue/webpack.web.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/.electron-vue/webpack.web.config.js -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | src/ -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/appveyor.yml -------------------------------------------------------------------------------- /dist/electron/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/web/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/src/index.ejs -------------------------------------------------------------------------------- /src/main/index.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/src/main/index.dev.js -------------------------------------------------------------------------------- /src/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/src/main/index.js -------------------------------------------------------------------------------- /src/main/libs/audioHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/src/main/libs/audioHelper.js -------------------------------------------------------------------------------- /src/main/libs/dbHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/src/main/libs/dbHelper.js -------------------------------------------------------------------------------- /src/main/libs/pathHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/src/main/libs/pathHelper.js -------------------------------------------------------------------------------- /src/main/libs/ytHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/src/main/libs/ytHelper.js -------------------------------------------------------------------------------- /src/renderer/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/src/renderer/App.vue -------------------------------------------------------------------------------- /src/renderer/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/src/renderer/assets/logo.png -------------------------------------------------------------------------------- /src/renderer/components/ListView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/src/renderer/components/ListView.vue -------------------------------------------------------------------------------- /src/renderer/components/MainPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/src/renderer/components/MainPage.vue -------------------------------------------------------------------------------- /src/renderer/components/Modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/src/renderer/components/Modal.vue -------------------------------------------------------------------------------- /src/renderer/components/MusicPlayer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/src/renderer/components/MusicPlayer.vue -------------------------------------------------------------------------------- /src/renderer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/src/renderer/main.js -------------------------------------------------------------------------------- /src/renderer/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/src/renderer/router/index.js -------------------------------------------------------------------------------- /src/renderer/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/src/renderer/store/index.js -------------------------------------------------------------------------------- /src/renderer/store/modules/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/src/renderer/store/modules/Counter.js -------------------------------------------------------------------------------- /src/renderer/store/modules/Videos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/src/renderer/store/modules/Videos.js -------------------------------------------------------------------------------- /src/renderer/store/modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/src/renderer/store/modules/index.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myazarc/ytdownloader/HEAD/yarn.lock --------------------------------------------------------------------------------