├── .editorconfig ├── .eslintrc.json ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── angular.json ├── angular.webpack.js ├── app ├── favicon.ico ├── main.ts ├── package-lock.json ├── package.json ├── router │ ├── beatmaps.ts │ ├── collections.ts │ ├── filters.ts │ └── load.ts └── util │ ├── beatmaps.ts │ ├── bpm.ts │ ├── collections.ts │ ├── database │ ├── collection.ts │ ├── database.ts │ ├── filterScripts.ts │ ├── filters.ts │ └── settings.ts │ ├── evaluation.ts │ ├── hitobjects.ts │ ├── load.ts │ ├── mods.ts │ ├── parsing │ ├── cache.ts │ ├── collections.ts │ ├── hitobjects.ts │ └── utf8.ts │ └── practice.ts ├── electron-builder.json ├── models ├── beatmaps.ts ├── cache.ts ├── collection.ts ├── filters.ts └── settings.ts ├── package.json ├── resources └── icon.ico ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ ├── add-modal │ │ │ ├── add-modal.component.html │ │ │ └── add-modal.component.ts │ │ ├── collection-dropdown │ │ │ ├── collection-dropdown.component.html │ │ │ └── collection-dropdown.component.ts │ │ ├── confirm-modal │ │ │ ├── confirm-modal.component.html │ │ │ └── confirm-modal.component.ts │ │ ├── filter-select │ │ │ ├── filter-select.component.html │ │ │ └── filter-select.component.ts │ │ ├── header │ │ │ ├── header.component.html │ │ │ └── header.component.ts │ │ ├── help │ │ │ ├── help.component.html │ │ │ └── help.component.ts │ │ ├── language-dropdown │ │ │ ├── language-dropdown.component.html │ │ │ └── language-dropdown.component.ts │ │ ├── loading-bar │ │ │ ├── loading-bar.component.html │ │ │ └── loading-bar.component.ts │ │ ├── pagination │ │ │ ├── pagination.component.html │ │ │ └── pagination.component.ts │ │ ├── rename-modal │ │ │ ├── rename-modal.component.html │ │ │ └── rename-modal.component.ts │ │ ├── settings-modal │ │ │ ├── settings-modal.component.html │ │ │ └── settings-modal.component.ts │ │ ├── sidebar-button │ │ │ ├── sidebar-button.component.html │ │ │ └── sidebar-button.component.ts │ │ ├── sidebar │ │ │ ├── sidebar.component.html │ │ │ └── sidebar.component.ts │ │ ├── update │ │ │ ├── update.component.html │ │ │ └── update.component.ts │ │ └── value-override-slider │ │ │ ├── value-override-slider.component.html │ │ │ └── value-override-slider.component.ts │ ├── core │ │ ├── core.module.ts │ │ └── services │ │ │ ├── electron │ │ │ ├── electron.service.spec.ts │ │ │ └── electron.service.ts │ │ │ └── index.ts │ ├── pages │ │ ├── bpm-changer │ │ │ ├── bpm-changer.component.html │ │ │ └── bpm-changer.component.ts │ │ ├── customfilter │ │ │ ├── customfilter.component.html │ │ │ └── customfilter.component.ts │ │ ├── edit │ │ │ ├── edit.component.css │ │ │ ├── edit.component.html │ │ │ └── edit.component.ts │ │ ├── filters │ │ │ ├── filters.component.html │ │ │ └── filters.component.ts │ │ ├── home │ │ │ ├── home.component.html │ │ │ └── home.component.ts │ │ ├── importexport │ │ │ ├── importexport.component.html │ │ │ └── importexport.component.ts │ │ ├── loading │ │ │ ├── loading.component.html │ │ │ └── loading.component.ts │ │ ├── practice-diffs │ │ │ ├── practice-diffs.component.html │ │ │ └── practice-diffs.component.ts │ │ └── settings │ │ │ ├── settings.component.html │ │ │ └── settings.component.ts │ ├── services │ │ ├── beatmap.service.ts │ │ ├── collections.service.ts │ │ ├── component.service.ts │ │ ├── filter.service.ts │ │ ├── ipc.service.ts │ │ ├── loading.service.ts │ │ ├── selected.service.ts │ │ ├── title.service.ts │ │ └── util.service.ts │ ├── shared │ │ ├── directives │ │ │ ├── index.ts │ │ │ └── webview │ │ │ │ ├── webview.directive.spec.ts │ │ │ │ └── webview.directive.ts │ │ └── shared.module.ts │ └── util │ │ ├── baseConfig.ts │ │ └── processing.ts ├── assets │ ├── .gitkeep │ ├── i18n │ │ ├── en.json │ │ └── ru.json │ └── icons │ │ ├── favicon.ico │ │ └── favicon.png ├── environments │ ├── environment.dev.ts │ ├── environment.prod.ts │ ├── environment.ts │ └── environment.web.ts ├── favicon.ico ├── index.html ├── karma.conf.js ├── main.ts ├── polyfills-test.ts ├── polyfills.ts ├── styles.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tailwind.config.js ├── tsconfig.json └── tsconfig.serve.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/angular.json -------------------------------------------------------------------------------- /angular.webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/angular.webpack.js -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/main.ts -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/package.json -------------------------------------------------------------------------------- /app/router/beatmaps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/router/beatmaps.ts -------------------------------------------------------------------------------- /app/router/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/router/collections.ts -------------------------------------------------------------------------------- /app/router/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/router/filters.ts -------------------------------------------------------------------------------- /app/router/load.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/router/load.ts -------------------------------------------------------------------------------- /app/util/beatmaps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/util/beatmaps.ts -------------------------------------------------------------------------------- /app/util/bpm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/util/bpm.ts -------------------------------------------------------------------------------- /app/util/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/util/collections.ts -------------------------------------------------------------------------------- /app/util/database/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/util/database/collection.ts -------------------------------------------------------------------------------- /app/util/database/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/util/database/database.ts -------------------------------------------------------------------------------- /app/util/database/filterScripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/util/database/filterScripts.ts -------------------------------------------------------------------------------- /app/util/database/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/util/database/filters.ts -------------------------------------------------------------------------------- /app/util/database/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/util/database/settings.ts -------------------------------------------------------------------------------- /app/util/evaluation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/util/evaluation.ts -------------------------------------------------------------------------------- /app/util/hitobjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/util/hitobjects.ts -------------------------------------------------------------------------------- /app/util/load.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/util/load.ts -------------------------------------------------------------------------------- /app/util/mods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/util/mods.ts -------------------------------------------------------------------------------- /app/util/parsing/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/util/parsing/cache.ts -------------------------------------------------------------------------------- /app/util/parsing/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/util/parsing/collections.ts -------------------------------------------------------------------------------- /app/util/parsing/hitobjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/util/parsing/hitobjects.ts -------------------------------------------------------------------------------- /app/util/parsing/utf8.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/util/parsing/utf8.ts -------------------------------------------------------------------------------- /app/util/practice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/app/util/practice.ts -------------------------------------------------------------------------------- /electron-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/electron-builder.json -------------------------------------------------------------------------------- /models/beatmaps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/models/beatmaps.ts -------------------------------------------------------------------------------- /models/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/models/cache.ts -------------------------------------------------------------------------------- /models/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/models/collection.ts -------------------------------------------------------------------------------- /models/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/models/filters.ts -------------------------------------------------------------------------------- /models/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/models/settings.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/package.json -------------------------------------------------------------------------------- /resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/resources/icon.ico -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/add-modal/add-modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/add-modal/add-modal.component.html -------------------------------------------------------------------------------- /src/app/components/add-modal/add-modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/add-modal/add-modal.component.ts -------------------------------------------------------------------------------- /src/app/components/collection-dropdown/collection-dropdown.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/collection-dropdown/collection-dropdown.component.html -------------------------------------------------------------------------------- /src/app/components/collection-dropdown/collection-dropdown.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/collection-dropdown/collection-dropdown.component.ts -------------------------------------------------------------------------------- /src/app/components/confirm-modal/confirm-modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/confirm-modal/confirm-modal.component.html -------------------------------------------------------------------------------- /src/app/components/confirm-modal/confirm-modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/confirm-modal/confirm-modal.component.ts -------------------------------------------------------------------------------- /src/app/components/filter-select/filter-select.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/filter-select/filter-select.component.html -------------------------------------------------------------------------------- /src/app/components/filter-select/filter-select.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/filter-select/filter-select.component.ts -------------------------------------------------------------------------------- /src/app/components/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/header/header.component.html -------------------------------------------------------------------------------- /src/app/components/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/header/header.component.ts -------------------------------------------------------------------------------- /src/app/components/help/help.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/help/help.component.html -------------------------------------------------------------------------------- /src/app/components/help/help.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/help/help.component.ts -------------------------------------------------------------------------------- /src/app/components/language-dropdown/language-dropdown.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/language-dropdown/language-dropdown.component.html -------------------------------------------------------------------------------- /src/app/components/language-dropdown/language-dropdown.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/language-dropdown/language-dropdown.component.ts -------------------------------------------------------------------------------- /src/app/components/loading-bar/loading-bar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/loading-bar/loading-bar.component.html -------------------------------------------------------------------------------- /src/app/components/loading-bar/loading-bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/loading-bar/loading-bar.component.ts -------------------------------------------------------------------------------- /src/app/components/pagination/pagination.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/pagination/pagination.component.html -------------------------------------------------------------------------------- /src/app/components/pagination/pagination.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/pagination/pagination.component.ts -------------------------------------------------------------------------------- /src/app/components/rename-modal/rename-modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/rename-modal/rename-modal.component.html -------------------------------------------------------------------------------- /src/app/components/rename-modal/rename-modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/rename-modal/rename-modal.component.ts -------------------------------------------------------------------------------- /src/app/components/settings-modal/settings-modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/settings-modal/settings-modal.component.html -------------------------------------------------------------------------------- /src/app/components/settings-modal/settings-modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/settings-modal/settings-modal.component.ts -------------------------------------------------------------------------------- /src/app/components/sidebar-button/sidebar-button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/sidebar-button/sidebar-button.component.html -------------------------------------------------------------------------------- /src/app/components/sidebar-button/sidebar-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/sidebar-button/sidebar-button.component.ts -------------------------------------------------------------------------------- /src/app/components/sidebar/sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/sidebar/sidebar.component.html -------------------------------------------------------------------------------- /src/app/components/sidebar/sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/sidebar/sidebar.component.ts -------------------------------------------------------------------------------- /src/app/components/update/update.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/update/update.component.html -------------------------------------------------------------------------------- /src/app/components/update/update.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/update/update.component.ts -------------------------------------------------------------------------------- /src/app/components/value-override-slider/value-override-slider.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/value-override-slider/value-override-slider.component.html -------------------------------------------------------------------------------- /src/app/components/value-override-slider/value-override-slider.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/components/value-override-slider/value-override-slider.component.ts -------------------------------------------------------------------------------- /src/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/core/core.module.ts -------------------------------------------------------------------------------- /src/app/core/services/electron/electron.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/core/services/electron/electron.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/electron/electron.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/core/services/electron/electron.service.ts -------------------------------------------------------------------------------- /src/app/core/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/core/services/index.ts -------------------------------------------------------------------------------- /src/app/pages/bpm-changer/bpm-changer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/pages/bpm-changer/bpm-changer.component.html -------------------------------------------------------------------------------- /src/app/pages/bpm-changer/bpm-changer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/pages/bpm-changer/bpm-changer.component.ts -------------------------------------------------------------------------------- /src/app/pages/customfilter/customfilter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/pages/customfilter/customfilter.component.html -------------------------------------------------------------------------------- /src/app/pages/customfilter/customfilter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/pages/customfilter/customfilter.component.ts -------------------------------------------------------------------------------- /src/app/pages/edit/edit.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/pages/edit/edit.component.css -------------------------------------------------------------------------------- /src/app/pages/edit/edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/pages/edit/edit.component.html -------------------------------------------------------------------------------- /src/app/pages/edit/edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/pages/edit/edit.component.ts -------------------------------------------------------------------------------- /src/app/pages/filters/filters.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/pages/filters/filters.component.html -------------------------------------------------------------------------------- /src/app/pages/filters/filters.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/pages/filters/filters.component.ts -------------------------------------------------------------------------------- /src/app/pages/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/pages/home/home.component.html -------------------------------------------------------------------------------- /src/app/pages/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/pages/home/home.component.ts -------------------------------------------------------------------------------- /src/app/pages/importexport/importexport.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/pages/importexport/importexport.component.html -------------------------------------------------------------------------------- /src/app/pages/importexport/importexport.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/pages/importexport/importexport.component.ts -------------------------------------------------------------------------------- /src/app/pages/loading/loading.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/pages/loading/loading.component.html -------------------------------------------------------------------------------- /src/app/pages/loading/loading.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/pages/loading/loading.component.ts -------------------------------------------------------------------------------- /src/app/pages/practice-diffs/practice-diffs.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/pages/practice-diffs/practice-diffs.component.html -------------------------------------------------------------------------------- /src/app/pages/practice-diffs/practice-diffs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/pages/practice-diffs/practice-diffs.component.ts -------------------------------------------------------------------------------- /src/app/pages/settings/settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/pages/settings/settings.component.html -------------------------------------------------------------------------------- /src/app/pages/settings/settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/pages/settings/settings.component.ts -------------------------------------------------------------------------------- /src/app/services/beatmap.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/services/beatmap.service.ts -------------------------------------------------------------------------------- /src/app/services/collections.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/services/collections.service.ts -------------------------------------------------------------------------------- /src/app/services/component.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/services/component.service.ts -------------------------------------------------------------------------------- /src/app/services/filter.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/services/filter.service.ts -------------------------------------------------------------------------------- /src/app/services/ipc.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/services/ipc.service.ts -------------------------------------------------------------------------------- /src/app/services/loading.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/services/loading.service.ts -------------------------------------------------------------------------------- /src/app/services/selected.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/services/selected.service.ts -------------------------------------------------------------------------------- /src/app/services/title.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/services/title.service.ts -------------------------------------------------------------------------------- /src/app/services/util.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/services/util.service.ts -------------------------------------------------------------------------------- /src/app/shared/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/shared/directives/index.ts -------------------------------------------------------------------------------- /src/app/shared/directives/webview/webview.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/shared/directives/webview/webview.directive.spec.ts -------------------------------------------------------------------------------- /src/app/shared/directives/webview/webview.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/shared/directives/webview/webview.directive.ts -------------------------------------------------------------------------------- /src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/app/util/baseConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/util/baseConfig.ts -------------------------------------------------------------------------------- /src/app/util/processing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/app/util/processing.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/assets/i18n/en.json -------------------------------------------------------------------------------- /src/assets/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/assets/i18n/ru.json -------------------------------------------------------------------------------- /src/assets/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/assets/icons/favicon.ico -------------------------------------------------------------------------------- /src/assets/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/assets/icons/favicon.png -------------------------------------------------------------------------------- /src/environments/environment.dev.ts: -------------------------------------------------------------------------------- 1 | export const APP_CONFIG = { 2 | production: false, 3 | environment: 'DEV' 4 | }; 5 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const APP_CONFIG = { 2 | production: true, 3 | environment: 'PROD' 4 | }; 5 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | export const APP_CONFIG = { 2 | production: false, 3 | environment: 'LOCAL' 4 | }; 5 | -------------------------------------------------------------------------------- /src/environments/environment.web.ts: -------------------------------------------------------------------------------- 1 | export const APP_CONFIG = { 2 | production: false, 3 | environment: 'WEB' 4 | }; 5 | -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/polyfills-test.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzbasic/Collection-Helper/HEAD/tsconfig.serve.json --------------------------------------------------------------------------------