├── .circleci ├── build.js ├── config.yml └── linux-release.sh ├── .github └── ISSUE_TEMPLATE │ └── report-an-issue.md ├── .gitignore ├── LICENSE ├── README.md ├── alltomp3.png ├── app ├── .editorconfig ├── .gitignore ├── README.md ├── angular-cli.json ├── build.sh ├── karma.conf.js ├── messages.xlf ├── package-lock.json ├── package.json ├── protractor.conf.js ├── src │ ├── app │ │ ├── alltomp3.service.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── contextmenu.service.ts │ │ ├── database.service.ts │ │ ├── feedback │ │ │ ├── feedback.component.css │ │ │ ├── feedback.component.html │ │ │ └── feedback.component.ts │ │ ├── help │ │ │ ├── help.component.css │ │ │ ├── help.component.html │ │ │ └── help.component.ts │ │ ├── logger.service.ts │ │ ├── loggererror.service.ts │ │ ├── news │ │ │ ├── news.component.css │ │ │ ├── news.component.html │ │ │ └── news.component.ts │ │ ├── request │ │ │ ├── request.component.css │ │ │ ├── request.component.html │ │ │ └── request.component.ts │ │ ├── saving-path │ │ │ ├── saving-path.component.css │ │ │ ├── saving-path.component.html │ │ │ └── saving-path.component.ts │ │ ├── suggestion │ │ │ ├── suggestion.component.css │ │ │ ├── suggestion.component.html │ │ │ └── suggestion.component.ts │ │ └── trans.service.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── css │ │ │ ├── animation.css │ │ │ ├── entypo-codes.css │ │ │ ├── entypo-embedded.css │ │ │ ├── entypo-ie7-codes.css │ │ │ ├── entypo-ie7.css │ │ │ └── entypo.css │ │ └── font │ │ │ ├── entypo.eot │ │ │ ├── entypo.svg │ │ │ ├── entypo.ttf │ │ │ ├── entypo.woff │ │ │ └── entypo.woff2 │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── locale │ │ ├── messages.ar.xlf │ │ ├── messages.de.xlf │ │ ├── messages.es.xlf │ │ ├── messages.fi.xlf │ │ ├── messages.fr.xlf │ │ ├── messages.he.xlf │ │ ├── messages.hu.xlf │ │ ├── messages.ir.xlf │ │ ├── messages.it.xlf │ │ ├── messages.ja.xlf │ │ ├── messages.nl.xlf │ │ ├── messages.pt.xlf │ │ ├── messages.ru.xlf │ │ └── messages.tr.xlf │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── tsconfig.json └── tslint.json ├── appveyor.yml ├── feedback ├── feedback.js ├── index.html └── style.css ├── install.js ├── launch.sh ├── main.js └── package.json /.circleci/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/.circleci/build.js -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/linux-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/.circleci/linux-release.sh -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/report-an-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/.github/ISSUE_TEMPLATE/report-an-issue.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | dist/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/README.md -------------------------------------------------------------------------------- /alltomp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/alltomp3.png -------------------------------------------------------------------------------- /app/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/.editorconfig -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/README.md -------------------------------------------------------------------------------- /app/angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/angular-cli.json -------------------------------------------------------------------------------- /app/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/build.sh -------------------------------------------------------------------------------- /app/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/karma.conf.js -------------------------------------------------------------------------------- /app/messages.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/messages.xlf -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/package.json -------------------------------------------------------------------------------- /app/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/protractor.conf.js -------------------------------------------------------------------------------- /app/src/app/alltomp3.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/alltomp3.service.ts -------------------------------------------------------------------------------- /app/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/app.component.css -------------------------------------------------------------------------------- /app/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/app.component.html -------------------------------------------------------------------------------- /app/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/app.component.ts -------------------------------------------------------------------------------- /app/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/app.module.ts -------------------------------------------------------------------------------- /app/src/app/contextmenu.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/contextmenu.service.ts -------------------------------------------------------------------------------- /app/src/app/database.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/database.service.ts -------------------------------------------------------------------------------- /app/src/app/feedback/feedback.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/feedback/feedback.component.css -------------------------------------------------------------------------------- /app/src/app/feedback/feedback.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/feedback/feedback.component.html -------------------------------------------------------------------------------- /app/src/app/feedback/feedback.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/feedback/feedback.component.ts -------------------------------------------------------------------------------- /app/src/app/help/help.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/help/help.component.css -------------------------------------------------------------------------------- /app/src/app/help/help.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/help/help.component.html -------------------------------------------------------------------------------- /app/src/app/help/help.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/help/help.component.ts -------------------------------------------------------------------------------- /app/src/app/logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/logger.service.ts -------------------------------------------------------------------------------- /app/src/app/loggererror.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/loggererror.service.ts -------------------------------------------------------------------------------- /app/src/app/news/news.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/news/news.component.css -------------------------------------------------------------------------------- /app/src/app/news/news.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/news/news.component.html -------------------------------------------------------------------------------- /app/src/app/news/news.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/news/news.component.ts -------------------------------------------------------------------------------- /app/src/app/request/request.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/request/request.component.css -------------------------------------------------------------------------------- /app/src/app/request/request.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/request/request.component.html -------------------------------------------------------------------------------- /app/src/app/request/request.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/request/request.component.ts -------------------------------------------------------------------------------- /app/src/app/saving-path/saving-path.component.css: -------------------------------------------------------------------------------- 1 | .open-path { 2 | cursor: pointer; 3 | } 4 | -------------------------------------------------------------------------------- /app/src/app/saving-path/saving-path.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/saving-path/saving-path.component.html -------------------------------------------------------------------------------- /app/src/app/saving-path/saving-path.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/saving-path/saving-path.component.ts -------------------------------------------------------------------------------- /app/src/app/suggestion/suggestion.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/suggestion/suggestion.component.css -------------------------------------------------------------------------------- /app/src/app/suggestion/suggestion.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/suggestion/suggestion.component.html -------------------------------------------------------------------------------- /app/src/app/suggestion/suggestion.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/suggestion/suggestion.component.ts -------------------------------------------------------------------------------- /app/src/app/trans.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/app/trans.service.ts -------------------------------------------------------------------------------- /app/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/assets/css/animation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/assets/css/animation.css -------------------------------------------------------------------------------- /app/src/assets/css/entypo-codes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/assets/css/entypo-codes.css -------------------------------------------------------------------------------- /app/src/assets/css/entypo-embedded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/assets/css/entypo-embedded.css -------------------------------------------------------------------------------- /app/src/assets/css/entypo-ie7-codes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/assets/css/entypo-ie7-codes.css -------------------------------------------------------------------------------- /app/src/assets/css/entypo-ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/assets/css/entypo-ie7.css -------------------------------------------------------------------------------- /app/src/assets/css/entypo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/assets/css/entypo.css -------------------------------------------------------------------------------- /app/src/assets/font/entypo.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/assets/font/entypo.eot -------------------------------------------------------------------------------- /app/src/assets/font/entypo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/assets/font/entypo.svg -------------------------------------------------------------------------------- /app/src/assets/font/entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/assets/font/entypo.ttf -------------------------------------------------------------------------------- /app/src/assets/font/entypo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/assets/font/entypo.woff -------------------------------------------------------------------------------- /app/src/assets/font/entypo.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/assets/font/entypo.woff2 -------------------------------------------------------------------------------- /app/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /app/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/environments/environment.ts -------------------------------------------------------------------------------- /app/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/favicon.ico -------------------------------------------------------------------------------- /app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/index.html -------------------------------------------------------------------------------- /app/src/locale/messages.ar.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/locale/messages.ar.xlf -------------------------------------------------------------------------------- /app/src/locale/messages.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/locale/messages.de.xlf -------------------------------------------------------------------------------- /app/src/locale/messages.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/locale/messages.es.xlf -------------------------------------------------------------------------------- /app/src/locale/messages.fi.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/locale/messages.fi.xlf -------------------------------------------------------------------------------- /app/src/locale/messages.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/locale/messages.fr.xlf -------------------------------------------------------------------------------- /app/src/locale/messages.he.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/locale/messages.he.xlf -------------------------------------------------------------------------------- /app/src/locale/messages.hu.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/locale/messages.hu.xlf -------------------------------------------------------------------------------- /app/src/locale/messages.ir.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/locale/messages.ir.xlf -------------------------------------------------------------------------------- /app/src/locale/messages.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/locale/messages.it.xlf -------------------------------------------------------------------------------- /app/src/locale/messages.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/locale/messages.ja.xlf -------------------------------------------------------------------------------- /app/src/locale/messages.nl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/locale/messages.nl.xlf -------------------------------------------------------------------------------- /app/src/locale/messages.pt.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/locale/messages.pt.xlf -------------------------------------------------------------------------------- /app/src/locale/messages.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/locale/messages.ru.xlf -------------------------------------------------------------------------------- /app/src/locale/messages.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/locale/messages.tr.xlf -------------------------------------------------------------------------------- /app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/main.ts -------------------------------------------------------------------------------- /app/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/polyfills.ts -------------------------------------------------------------------------------- /app/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/styles.css -------------------------------------------------------------------------------- /app/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/src/tsconfig.json -------------------------------------------------------------------------------- /app/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/app/tslint.json -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/appveyor.yml -------------------------------------------------------------------------------- /feedback/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/feedback/feedback.js -------------------------------------------------------------------------------- /feedback/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/feedback/index.html -------------------------------------------------------------------------------- /feedback/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/feedback/style.css -------------------------------------------------------------------------------- /install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/install.js -------------------------------------------------------------------------------- /launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd app 3 | ng build --base-href './' 4 | cd .. 5 | electron . 6 | -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllToMP3/alltomp3-app/HEAD/package.json --------------------------------------------------------------------------------