├── .editorconfig ├── .gitignore ├── LICENSE ├── PRIVACY_POLICY.md ├── Procfile ├── README.md ├── angular.json ├── bin ├── copy-jre.js ├── electron-windows-store-x64.js └── electron-windows-store-x86.js ├── electron ├── main.ts └── tsconfig.json ├── package.json ├── project ├── build.properties └── plugins.sbt ├── src ├── main │ ├── resources │ │ ├── logback.xml │ │ └── reference.conf │ └── scala │ │ └── net │ │ └── creasource │ │ ├── Main.scala │ │ ├── audio │ │ └── TagExtractor.scala │ │ ├── core │ │ └── Application.scala │ │ ├── http │ │ ├── SPAWebServer.scala │ │ ├── SocketWebServer.scala │ │ ├── WebServer.scala │ │ └── actors │ │ │ ├── SocketSinkActor.scala │ │ │ └── SocketSinkSupervisor.scala │ │ ├── io │ │ ├── FileSystemChange.scala │ │ ├── WatchActor.scala │ │ └── WatchService.scala │ │ ├── model │ │ ├── AlbumCover.scala │ │ ├── Track.scala │ │ └── TrackMetadata.scala │ │ └── web │ │ ├── APIRoutes.scala │ │ ├── AudioLibraryRoutes.scala │ │ ├── LibraryActor.scala │ │ ├── LyricsActor.scala │ │ ├── SettingsActor.scala │ │ ├── SocketActor.scala │ │ └── package.scala └── test │ └── scala │ └── net │ └── creasource │ ├── SimpleTest.scala │ └── TagExtractorTest.scala ├── tsconfig.json ├── tslint.json └── web ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── ngsw-config.json └── src ├── app ├── app.module.ts ├── app.reducers.ts ├── app.serializer.ts ├── core │ ├── actions │ │ ├── audio.actions.ts │ │ └── core.actions.ts │ ├── components │ │ ├── about.component.ts │ │ ├── initializer.component.ts │ │ ├── sidemenu.component.ts │ │ ├── sidenav.component.ts │ │ ├── toolbar.component.scss │ │ └── toolbar.component.ts │ ├── core.component.ts │ ├── core.effects.ts │ ├── core.module.ts │ ├── core.reducers.ts │ ├── core.theme.scss │ ├── core.utils.ts │ ├── reducers │ │ ├── audio.reducers.ts │ │ └── core.reducers.ts │ └── services │ │ ├── audio.service.ts │ │ ├── core.service.ts │ │ ├── electron.service.ts │ │ ├── http-socket-client.service.ts │ │ ├── loader.service.ts │ │ ├── router.service.ts │ │ └── update.service.ts ├── editor │ ├── editor.component.ts │ └── editor.module.ts ├── library │ ├── actions │ │ ├── albums.actions.ts │ │ ├── artists.actions.ts │ │ ├── favorites.actions.ts │ │ ├── lyrics.actions.ts │ │ ├── player.actions.ts │ │ ├── playlists.actions.ts │ │ ├── recent.actions.ts │ │ └── tracks.actions.ts │ ├── components │ │ ├── albums.component.ts │ │ ├── artists.component.ts │ │ ├── mini-player.component.ts │ │ ├── player │ │ │ ├── player.component.html │ │ │ ├── player.component.scss │ │ │ ├── player.component.ts │ │ │ └── progress.component.ts │ │ ├── shared │ │ │ ├── chips.component.ts │ │ │ ├── controls.component.ts │ │ │ ├── dictionary.component.ts │ │ │ ├── list-item.component.ts │ │ │ └── loader.component.ts │ │ ├── track.component.ts │ │ └── tracks.component.ts │ ├── library.component.scss │ ├── library.component.ts │ ├── library.effects.ts │ ├── library.module.spec.ts │ ├── library.module.ts │ ├── library.reducers.ts │ ├── library.theme.scss │ ├── library.utils.ts │ ├── reducers │ │ ├── albums.reducers.ts │ │ ├── artists.reducers.ts │ │ ├── favorites.reducers.ts │ │ ├── lyrics.reducers.ts │ │ ├── player.reducer.ts │ │ ├── playlists.reducers.ts │ │ ├── recent.reducer.ts │ │ └── tracks.reducers.ts │ └── services │ │ ├── library.service.ts │ │ └── lyrics.service.ts ├── model.ts ├── my-music │ ├── components │ │ ├── albums.component.ts │ │ ├── artists.component.ts │ │ ├── shared │ │ │ └── box-list.component.ts │ │ └── tracks.component.ts │ ├── my-music.component.ts │ ├── my-music.module.ts │ └── my-music.theme.scss ├── player │ ├── components │ │ ├── controls.component.ts │ │ ├── header.component.ts │ │ ├── playlist.component.ts │ │ ├── progress.component.ts │ │ └── status.component.ts │ ├── player.component.ts │ ├── player.module.ts │ └── player.theme.scss ├── playlists │ ├── playlists.component.ts │ ├── playlists.module.ts │ └── playlists.theme.scss ├── routes.ts ├── settings │ ├── components │ │ ├── library-folders.component.ts │ │ ├── lyrics-options.component.ts │ │ ├── themes.component.ts │ │ └── uploads.component.ts │ ├── reducers │ │ ├── libray.reducers.ts │ │ └── lyrics.reducers.ts │ ├── services │ │ └── settings.service.ts │ ├── settings.actions.ts │ ├── settings.component.ts │ ├── settings.effects.ts │ ├── settings.module.spec.ts │ ├── settings.module.ts │ ├── settings.reducers.ts │ └── settings.theme.scss └── shared │ ├── dialogs │ ├── confirm.component.ts │ ├── details.component.ts │ ├── dialogs.module.ts │ ├── folder │ │ ├── folder.component.html │ │ ├── folder.component.scss │ │ ├── folder.component.spec.ts │ │ └── folder.component.ts │ ├── info.component.ts │ ├── new-playlist-dialog.component.ts │ └── playlists-dialog.component.ts │ ├── material │ └── material.module.ts │ ├── pipes │ ├── file-size.pipe.ts │ ├── pipes.module.ts │ ├── search.pipe.ts │ ├── time.pipe.ts │ └── year.pipe.ts │ └── shared.module.ts ├── assets ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── fonts │ ├── cookie-v9-latin-regular.woff │ ├── cookie-v9-latin-regular.woff2 │ ├── roboto-v18-latin_latin-ext-300.woff │ ├── roboto-v18-latin_latin-ext-300.woff2 │ ├── roboto-v18-latin_latin-ext-500.woff │ ├── roboto-v18-latin_latin-ext-500.woff2 │ ├── roboto-v18-latin_latin-ext-regular.woff │ └── roboto-v18-latin_latin-ext-regular.woff2 ├── icons │ ├── icon-128x128.png │ ├── icon-144x144.png │ ├── icon-152x152.png │ ├── icon-192x192.png │ ├── icon-384x384.png │ ├── icon-512x512.png │ ├── icon-72x72.png │ └── icon-96x96.png ├── logo_grey.svg ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png ├── mstile-70x70.png └── safari-pinned-tab.svg ├── browserconfig.xml ├── environments ├── environment.electron.ts ├── environment.prod.ts └── environment.ts ├── favicon.ico ├── index.html ├── karma.conf.js ├── main.ts ├── manifest.json ├── polyfills.ts ├── styles.scss ├── test.ts ├── tsconfig.app.json └── tsconfig.spec.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY_POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/PRIVACY_POLICY.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/angular.json -------------------------------------------------------------------------------- /bin/copy-jre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/bin/copy-jre.js -------------------------------------------------------------------------------- /bin/electron-windows-store-x64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/bin/electron-windows-store-x64.js -------------------------------------------------------------------------------- /bin/electron-windows-store-x86.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/bin/electron-windows-store-x86.js -------------------------------------------------------------------------------- /electron/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/electron/main.ts -------------------------------------------------------------------------------- /electron/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/electron/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/package.json -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version = 1.2.7 -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/resources/logback.xml -------------------------------------------------------------------------------- /src/main/resources/reference.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/resources/reference.conf -------------------------------------------------------------------------------- /src/main/scala/net/creasource/Main.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/Main.scala -------------------------------------------------------------------------------- /src/main/scala/net/creasource/audio/TagExtractor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/audio/TagExtractor.scala -------------------------------------------------------------------------------- /src/main/scala/net/creasource/core/Application.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/core/Application.scala -------------------------------------------------------------------------------- /src/main/scala/net/creasource/http/SPAWebServer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/http/SPAWebServer.scala -------------------------------------------------------------------------------- /src/main/scala/net/creasource/http/SocketWebServer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/http/SocketWebServer.scala -------------------------------------------------------------------------------- /src/main/scala/net/creasource/http/WebServer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/http/WebServer.scala -------------------------------------------------------------------------------- /src/main/scala/net/creasource/http/actors/SocketSinkActor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/http/actors/SocketSinkActor.scala -------------------------------------------------------------------------------- /src/main/scala/net/creasource/http/actors/SocketSinkSupervisor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/http/actors/SocketSinkSupervisor.scala -------------------------------------------------------------------------------- /src/main/scala/net/creasource/io/FileSystemChange.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/io/FileSystemChange.scala -------------------------------------------------------------------------------- /src/main/scala/net/creasource/io/WatchActor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/io/WatchActor.scala -------------------------------------------------------------------------------- /src/main/scala/net/creasource/io/WatchService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/io/WatchService.scala -------------------------------------------------------------------------------- /src/main/scala/net/creasource/model/AlbumCover.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/model/AlbumCover.scala -------------------------------------------------------------------------------- /src/main/scala/net/creasource/model/Track.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/model/Track.scala -------------------------------------------------------------------------------- /src/main/scala/net/creasource/model/TrackMetadata.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/model/TrackMetadata.scala -------------------------------------------------------------------------------- /src/main/scala/net/creasource/web/APIRoutes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/web/APIRoutes.scala -------------------------------------------------------------------------------- /src/main/scala/net/creasource/web/AudioLibraryRoutes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/web/AudioLibraryRoutes.scala -------------------------------------------------------------------------------- /src/main/scala/net/creasource/web/LibraryActor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/web/LibraryActor.scala -------------------------------------------------------------------------------- /src/main/scala/net/creasource/web/LyricsActor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/web/LyricsActor.scala -------------------------------------------------------------------------------- /src/main/scala/net/creasource/web/SettingsActor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/web/SettingsActor.scala -------------------------------------------------------------------------------- /src/main/scala/net/creasource/web/SocketActor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/web/SocketActor.scala -------------------------------------------------------------------------------- /src/main/scala/net/creasource/web/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/main/scala/net/creasource/web/package.scala -------------------------------------------------------------------------------- /src/test/scala/net/creasource/SimpleTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/test/scala/net/creasource/SimpleTest.scala -------------------------------------------------------------------------------- /src/test/scala/net/creasource/TagExtractorTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/src/test/scala/net/creasource/TagExtractorTest.scala -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/tslint.json -------------------------------------------------------------------------------- /web/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /web/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/e2e/app.po.ts -------------------------------------------------------------------------------- /web/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /web/ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/ngsw-config.json -------------------------------------------------------------------------------- /web/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/app.module.ts -------------------------------------------------------------------------------- /web/src/app/app.reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/app.reducers.ts -------------------------------------------------------------------------------- /web/src/app/app.serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/app.serializer.ts -------------------------------------------------------------------------------- /web/src/app/core/actions/audio.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/actions/audio.actions.ts -------------------------------------------------------------------------------- /web/src/app/core/actions/core.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/actions/core.actions.ts -------------------------------------------------------------------------------- /web/src/app/core/components/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/components/about.component.ts -------------------------------------------------------------------------------- /web/src/app/core/components/initializer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/components/initializer.component.ts -------------------------------------------------------------------------------- /web/src/app/core/components/sidemenu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/components/sidemenu.component.ts -------------------------------------------------------------------------------- /web/src/app/core/components/sidenav.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/components/sidenav.component.ts -------------------------------------------------------------------------------- /web/src/app/core/components/toolbar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/components/toolbar.component.scss -------------------------------------------------------------------------------- /web/src/app/core/components/toolbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/components/toolbar.component.ts -------------------------------------------------------------------------------- /web/src/app/core/core.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/core.component.ts -------------------------------------------------------------------------------- /web/src/app/core/core.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/core.effects.ts -------------------------------------------------------------------------------- /web/src/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/core.module.ts -------------------------------------------------------------------------------- /web/src/app/core/core.reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/core.reducers.ts -------------------------------------------------------------------------------- /web/src/app/core/core.theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/core.theme.scss -------------------------------------------------------------------------------- /web/src/app/core/core.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/core.utils.ts -------------------------------------------------------------------------------- /web/src/app/core/reducers/audio.reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/reducers/audio.reducers.ts -------------------------------------------------------------------------------- /web/src/app/core/reducers/core.reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/reducers/core.reducers.ts -------------------------------------------------------------------------------- /web/src/app/core/services/audio.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/services/audio.service.ts -------------------------------------------------------------------------------- /web/src/app/core/services/core.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/services/core.service.ts -------------------------------------------------------------------------------- /web/src/app/core/services/electron.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/services/electron.service.ts -------------------------------------------------------------------------------- /web/src/app/core/services/http-socket-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/services/http-socket-client.service.ts -------------------------------------------------------------------------------- /web/src/app/core/services/loader.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/services/loader.service.ts -------------------------------------------------------------------------------- /web/src/app/core/services/router.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/services/router.service.ts -------------------------------------------------------------------------------- /web/src/app/core/services/update.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/core/services/update.service.ts -------------------------------------------------------------------------------- /web/src/app/editor/editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/editor/editor.component.ts -------------------------------------------------------------------------------- /web/src/app/editor/editor.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/editor/editor.module.ts -------------------------------------------------------------------------------- /web/src/app/library/actions/albums.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/actions/albums.actions.ts -------------------------------------------------------------------------------- /web/src/app/library/actions/artists.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/actions/artists.actions.ts -------------------------------------------------------------------------------- /web/src/app/library/actions/favorites.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/actions/favorites.actions.ts -------------------------------------------------------------------------------- /web/src/app/library/actions/lyrics.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/actions/lyrics.actions.ts -------------------------------------------------------------------------------- /web/src/app/library/actions/player.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/actions/player.actions.ts -------------------------------------------------------------------------------- /web/src/app/library/actions/playlists.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/actions/playlists.actions.ts -------------------------------------------------------------------------------- /web/src/app/library/actions/recent.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/actions/recent.actions.ts -------------------------------------------------------------------------------- /web/src/app/library/actions/tracks.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/actions/tracks.actions.ts -------------------------------------------------------------------------------- /web/src/app/library/components/albums.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/components/albums.component.ts -------------------------------------------------------------------------------- /web/src/app/library/components/artists.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/components/artists.component.ts -------------------------------------------------------------------------------- /web/src/app/library/components/mini-player.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/components/mini-player.component.ts -------------------------------------------------------------------------------- /web/src/app/library/components/player/player.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/components/player/player.component.html -------------------------------------------------------------------------------- /web/src/app/library/components/player/player.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/components/player/player.component.scss -------------------------------------------------------------------------------- /web/src/app/library/components/player/player.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/components/player/player.component.ts -------------------------------------------------------------------------------- /web/src/app/library/components/player/progress.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/components/player/progress.component.ts -------------------------------------------------------------------------------- /web/src/app/library/components/shared/chips.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/components/shared/chips.component.ts -------------------------------------------------------------------------------- /web/src/app/library/components/shared/controls.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/components/shared/controls.component.ts -------------------------------------------------------------------------------- /web/src/app/library/components/shared/dictionary.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/components/shared/dictionary.component.ts -------------------------------------------------------------------------------- /web/src/app/library/components/shared/list-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/components/shared/list-item.component.ts -------------------------------------------------------------------------------- /web/src/app/library/components/shared/loader.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/components/shared/loader.component.ts -------------------------------------------------------------------------------- /web/src/app/library/components/track.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/components/track.component.ts -------------------------------------------------------------------------------- /web/src/app/library/components/tracks.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/components/tracks.component.ts -------------------------------------------------------------------------------- /web/src/app/library/library.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/library.component.scss -------------------------------------------------------------------------------- /web/src/app/library/library.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/library.component.ts -------------------------------------------------------------------------------- /web/src/app/library/library.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/library.effects.ts -------------------------------------------------------------------------------- /web/src/app/library/library.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/library.module.spec.ts -------------------------------------------------------------------------------- /web/src/app/library/library.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/library.module.ts -------------------------------------------------------------------------------- /web/src/app/library/library.reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/library.reducers.ts -------------------------------------------------------------------------------- /web/src/app/library/library.theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/library.theme.scss -------------------------------------------------------------------------------- /web/src/app/library/library.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/library.utils.ts -------------------------------------------------------------------------------- /web/src/app/library/reducers/albums.reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/reducers/albums.reducers.ts -------------------------------------------------------------------------------- /web/src/app/library/reducers/artists.reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/reducers/artists.reducers.ts -------------------------------------------------------------------------------- /web/src/app/library/reducers/favorites.reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/reducers/favorites.reducers.ts -------------------------------------------------------------------------------- /web/src/app/library/reducers/lyrics.reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/reducers/lyrics.reducers.ts -------------------------------------------------------------------------------- /web/src/app/library/reducers/player.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/reducers/player.reducer.ts -------------------------------------------------------------------------------- /web/src/app/library/reducers/playlists.reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/reducers/playlists.reducers.ts -------------------------------------------------------------------------------- /web/src/app/library/reducers/recent.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/reducers/recent.reducer.ts -------------------------------------------------------------------------------- /web/src/app/library/reducers/tracks.reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/reducers/tracks.reducers.ts -------------------------------------------------------------------------------- /web/src/app/library/services/library.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/services/library.service.ts -------------------------------------------------------------------------------- /web/src/app/library/services/lyrics.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/library/services/lyrics.service.ts -------------------------------------------------------------------------------- /web/src/app/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/model.ts -------------------------------------------------------------------------------- /web/src/app/my-music/components/albums.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/my-music/components/albums.component.ts -------------------------------------------------------------------------------- /web/src/app/my-music/components/artists.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/my-music/components/artists.component.ts -------------------------------------------------------------------------------- /web/src/app/my-music/components/shared/box-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/my-music/components/shared/box-list.component.ts -------------------------------------------------------------------------------- /web/src/app/my-music/components/tracks.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/my-music/components/tracks.component.ts -------------------------------------------------------------------------------- /web/src/app/my-music/my-music.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/my-music/my-music.component.ts -------------------------------------------------------------------------------- /web/src/app/my-music/my-music.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/my-music/my-music.module.ts -------------------------------------------------------------------------------- /web/src/app/my-music/my-music.theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/my-music/my-music.theme.scss -------------------------------------------------------------------------------- /web/src/app/player/components/controls.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/player/components/controls.component.ts -------------------------------------------------------------------------------- /web/src/app/player/components/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/player/components/header.component.ts -------------------------------------------------------------------------------- /web/src/app/player/components/playlist.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/player/components/playlist.component.ts -------------------------------------------------------------------------------- /web/src/app/player/components/progress.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/player/components/progress.component.ts -------------------------------------------------------------------------------- /web/src/app/player/components/status.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/player/components/status.component.ts -------------------------------------------------------------------------------- /web/src/app/player/player.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/player/player.component.ts -------------------------------------------------------------------------------- /web/src/app/player/player.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/player/player.module.ts -------------------------------------------------------------------------------- /web/src/app/player/player.theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/player/player.theme.scss -------------------------------------------------------------------------------- /web/src/app/playlists/playlists.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/playlists/playlists.component.ts -------------------------------------------------------------------------------- /web/src/app/playlists/playlists.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/playlists/playlists.module.ts -------------------------------------------------------------------------------- /web/src/app/playlists/playlists.theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/playlists/playlists.theme.scss -------------------------------------------------------------------------------- /web/src/app/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/routes.ts -------------------------------------------------------------------------------- /web/src/app/settings/components/library-folders.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/settings/components/library-folders.component.ts -------------------------------------------------------------------------------- /web/src/app/settings/components/lyrics-options.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/settings/components/lyrics-options.component.ts -------------------------------------------------------------------------------- /web/src/app/settings/components/themes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/settings/components/themes.component.ts -------------------------------------------------------------------------------- /web/src/app/settings/components/uploads.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/settings/components/uploads.component.ts -------------------------------------------------------------------------------- /web/src/app/settings/reducers/libray.reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/settings/reducers/libray.reducers.ts -------------------------------------------------------------------------------- /web/src/app/settings/reducers/lyrics.reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/settings/reducers/lyrics.reducers.ts -------------------------------------------------------------------------------- /web/src/app/settings/services/settings.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/settings/services/settings.service.ts -------------------------------------------------------------------------------- /web/src/app/settings/settings.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/settings/settings.actions.ts -------------------------------------------------------------------------------- /web/src/app/settings/settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/settings/settings.component.ts -------------------------------------------------------------------------------- /web/src/app/settings/settings.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/settings/settings.effects.ts -------------------------------------------------------------------------------- /web/src/app/settings/settings.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/settings/settings.module.spec.ts -------------------------------------------------------------------------------- /web/src/app/settings/settings.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/settings/settings.module.ts -------------------------------------------------------------------------------- /web/src/app/settings/settings.reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/settings/settings.reducers.ts -------------------------------------------------------------------------------- /web/src/app/settings/settings.theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/settings/settings.theme.scss -------------------------------------------------------------------------------- /web/src/app/shared/dialogs/confirm.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/shared/dialogs/confirm.component.ts -------------------------------------------------------------------------------- /web/src/app/shared/dialogs/details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/shared/dialogs/details.component.ts -------------------------------------------------------------------------------- /web/src/app/shared/dialogs/dialogs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/shared/dialogs/dialogs.module.ts -------------------------------------------------------------------------------- /web/src/app/shared/dialogs/folder/folder.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/shared/dialogs/folder/folder.component.html -------------------------------------------------------------------------------- /web/src/app/shared/dialogs/folder/folder.component.scss: -------------------------------------------------------------------------------- 1 | .mat-form-field { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /web/src/app/shared/dialogs/folder/folder.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/shared/dialogs/folder/folder.component.spec.ts -------------------------------------------------------------------------------- /web/src/app/shared/dialogs/folder/folder.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/shared/dialogs/folder/folder.component.ts -------------------------------------------------------------------------------- /web/src/app/shared/dialogs/info.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/shared/dialogs/info.component.ts -------------------------------------------------------------------------------- /web/src/app/shared/dialogs/new-playlist-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/shared/dialogs/new-playlist-dialog.component.ts -------------------------------------------------------------------------------- /web/src/app/shared/dialogs/playlists-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/shared/dialogs/playlists-dialog.component.ts -------------------------------------------------------------------------------- /web/src/app/shared/material/material.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/shared/material/material.module.ts -------------------------------------------------------------------------------- /web/src/app/shared/pipes/file-size.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/shared/pipes/file-size.pipe.ts -------------------------------------------------------------------------------- /web/src/app/shared/pipes/pipes.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/shared/pipes/pipes.module.ts -------------------------------------------------------------------------------- /web/src/app/shared/pipes/search.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/shared/pipes/search.pipe.ts -------------------------------------------------------------------------------- /web/src/app/shared/pipes/time.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/shared/pipes/time.pipe.ts -------------------------------------------------------------------------------- /web/src/app/shared/pipes/year.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/shared/pipes/year.pipe.ts -------------------------------------------------------------------------------- /web/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /web/src/assets/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/apple-touch-icon.png -------------------------------------------------------------------------------- /web/src/assets/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/favicon-16x16.png -------------------------------------------------------------------------------- /web/src/assets/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/favicon-32x32.png -------------------------------------------------------------------------------- /web/src/assets/fonts/cookie-v9-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/fonts/cookie-v9-latin-regular.woff -------------------------------------------------------------------------------- /web/src/assets/fonts/cookie-v9-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/fonts/cookie-v9-latin-regular.woff2 -------------------------------------------------------------------------------- /web/src/assets/fonts/roboto-v18-latin_latin-ext-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/fonts/roboto-v18-latin_latin-ext-300.woff -------------------------------------------------------------------------------- /web/src/assets/fonts/roboto-v18-latin_latin-ext-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/fonts/roboto-v18-latin_latin-ext-300.woff2 -------------------------------------------------------------------------------- /web/src/assets/fonts/roboto-v18-latin_latin-ext-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/fonts/roboto-v18-latin_latin-ext-500.woff -------------------------------------------------------------------------------- /web/src/assets/fonts/roboto-v18-latin_latin-ext-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/fonts/roboto-v18-latin_latin-ext-500.woff2 -------------------------------------------------------------------------------- /web/src/assets/fonts/roboto-v18-latin_latin-ext-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/fonts/roboto-v18-latin_latin-ext-regular.woff -------------------------------------------------------------------------------- /web/src/assets/fonts/roboto-v18-latin_latin-ext-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/fonts/roboto-v18-latin_latin-ext-regular.woff2 -------------------------------------------------------------------------------- /web/src/assets/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/icons/icon-128x128.png -------------------------------------------------------------------------------- /web/src/assets/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/icons/icon-144x144.png -------------------------------------------------------------------------------- /web/src/assets/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/icons/icon-152x152.png -------------------------------------------------------------------------------- /web/src/assets/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/icons/icon-192x192.png -------------------------------------------------------------------------------- /web/src/assets/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/icons/icon-384x384.png -------------------------------------------------------------------------------- /web/src/assets/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/icons/icon-512x512.png -------------------------------------------------------------------------------- /web/src/assets/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/icons/icon-72x72.png -------------------------------------------------------------------------------- /web/src/assets/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/icons/icon-96x96.png -------------------------------------------------------------------------------- /web/src/assets/logo_grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/logo_grey.svg -------------------------------------------------------------------------------- /web/src/assets/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/mstile-144x144.png -------------------------------------------------------------------------------- /web/src/assets/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/mstile-150x150.png -------------------------------------------------------------------------------- /web/src/assets/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/mstile-310x150.png -------------------------------------------------------------------------------- /web/src/assets/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/mstile-310x310.png -------------------------------------------------------------------------------- /web/src/assets/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/mstile-70x70.png -------------------------------------------------------------------------------- /web/src/assets/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/assets/safari-pinned-tab.svg -------------------------------------------------------------------------------- /web/src/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/browserconfig.xml -------------------------------------------------------------------------------- /web/src/environments/environment.electron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/environments/environment.electron.ts -------------------------------------------------------------------------------- /web/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /web/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/environments/environment.ts -------------------------------------------------------------------------------- /web/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/favicon.ico -------------------------------------------------------------------------------- /web/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/index.html -------------------------------------------------------------------------------- /web/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/karma.conf.js -------------------------------------------------------------------------------- /web/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/main.ts -------------------------------------------------------------------------------- /web/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/manifest.json -------------------------------------------------------------------------------- /web/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/polyfills.ts -------------------------------------------------------------------------------- /web/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/styles.scss -------------------------------------------------------------------------------- /web/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/test.ts -------------------------------------------------------------------------------- /web/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/tsconfig.app.json -------------------------------------------------------------------------------- /web/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgambet/musicalypse/HEAD/web/src/tsconfig.spec.json --------------------------------------------------------------------------------