gitextract_auu_ugs8/ ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yaml │ │ ├── config.yml │ │ └── translation.yaml │ ├── PULL_REQUEST_TEMPLATE/ │ │ └── translations.md │ ├── dependabot.yml │ └── workflows/ │ ├── auto-project.yml │ ├── cider-chores.yml │ ├── dev-chores.yml │ ├── stale-issues.yml │ └── support-notice.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .yarnrc.yml ├── Assets/ │ ├── AppChromeBtn.afdesign │ ├── Install On Cider/ │ │ └── install on cider.afdesign │ ├── MissingArtwork.afdesign │ └── Sources/ │ ├── Cider with text.afdesign │ ├── Release.afdesign │ ├── cider-vinyl no raster.afdesign │ ├── cider-vinyl-no raster 2.afdesign │ └── cider-vinyl.afdesign ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── docs/ │ └── plugins/ │ ├── example/ │ │ └── examplePlugin.ts │ └── sendSongToTitlebar.ts ├── flatpak/ │ ├── cider-wrapper │ ├── flathub.json │ ├── org.cidercollective.cider.yml │ ├── sh.cider.Cider.metainfo.xml │ └── sh.cider.Cider.yml ├── msft-test.json ├── package.json ├── resources/ │ ├── afterPack.cjs │ ├── bg.tiff │ ├── entitlements.mac.plist │ ├── icons/ │ │ ├── icon-old.icns │ │ └── icon.icns │ ├── license.json │ ├── license.txt │ ├── macPackager.cjs │ ├── notarize.cjs │ ├── verror-types │ └── version.sh ├── src/ │ ├── ciderkit/ │ │ └── public.js │ ├── main/ │ │ ├── base/ │ │ │ ├── app.ts │ │ │ ├── browserwindow.ts │ │ │ ├── castcontroller.ts │ │ │ ├── castreceiver.ts │ │ │ ├── plugins.ts │ │ │ ├── store.ts │ │ │ ├── utils.ts │ │ │ ├── vcomponents.json │ │ │ ├── vrouting.json │ │ │ └── wsapi.ts │ │ ├── index.ts │ │ ├── plugins/ │ │ │ ├── chromecast.ts │ │ │ ├── discordrpc.ts │ │ │ ├── lastfm.ts │ │ │ ├── menubar.ts │ │ │ ├── mpris.ts │ │ │ ├── playbackNotifications.ts │ │ │ ├── raop.ts │ │ │ ├── thumbar.ts │ │ │ └── webNowPlaying.ts │ │ └── providers/ │ │ └── local/ │ │ └── index.ts │ ├── preload/ │ │ └── cider-preload.js │ ├── renderer/ │ │ ├── apple-hls-old.js │ │ ├── apple-hls.js │ │ ├── assets/ │ │ │ └── fonts/ │ │ │ ├── Inter/ │ │ │ │ └── inter.css │ │ │ └── Pretendard/ │ │ │ └── pretendardvariable.css │ │ ├── audio/ │ │ │ ├── audio.js │ │ │ └── cloud/ │ │ │ └── audio.js │ │ ├── hlscider.js │ │ ├── index.js │ │ ├── less/ │ │ │ ├── ameframework.less │ │ │ ├── appvars.less │ │ │ ├── bootstrap-vue.min.less │ │ │ ├── bootstrap.less │ │ │ ├── codicon.css │ │ │ ├── compact.less │ │ │ ├── directives.less │ │ │ ├── elements.less │ │ │ ├── fullscreen.less │ │ │ ├── helpers.css │ │ │ ├── helpers.less │ │ │ ├── linux.less │ │ │ ├── macos.less │ │ │ ├── macosemu.less │ │ │ ├── miniplayer.less │ │ │ ├── notyf.less │ │ │ ├── pages.css │ │ │ └── pages.less │ │ ├── lib/ │ │ │ ├── fast-plural-rules.js │ │ │ ├── less.js │ │ │ ├── marked.js │ │ │ ├── smoothscroll.js │ │ │ ├── vue-horizontal.js │ │ │ ├── vue.dev.js │ │ │ └── vue.js │ │ ├── main/ │ │ │ ├── app.js │ │ │ ├── cidercache.js │ │ │ ├── ciderfrontapi.js │ │ │ ├── components/ │ │ │ │ ├── i18n-editor.js │ │ │ │ ├── sidebar-library-item.js │ │ │ │ └── svg-icon.js │ │ │ ├── events.js │ │ │ ├── gamepad.js │ │ │ ├── html.js │ │ │ ├── mica.js │ │ │ ├── musickittools.js │ │ │ ├── vueapp.js │ │ │ ├── vuex-store.js │ │ │ └── wsapi_interop.js │ │ ├── sounds/ │ │ │ ├── btn1.ogg │ │ │ ├── confirm.ogg │ │ │ └── hover.ogg │ │ ├── style.less │ │ ├── sw.js │ │ ├── themes/ │ │ │ ├── WIP.md │ │ │ ├── compactui.less │ │ │ ├── dark.less │ │ │ ├── default.less │ │ │ ├── grain.less │ │ │ ├── inline_drawer.less │ │ │ ├── reduce_visuals.less │ │ │ └── sweetener.less │ │ ├── todo.js │ │ ├── views/ │ │ │ ├── app/ │ │ │ │ ├── app-navigation.ejs │ │ │ │ ├── chrome-bottom.ejs │ │ │ │ ├── chrome-top.ejs │ │ │ │ └── panels.ejs │ │ │ ├── components/ │ │ │ │ ├── add-to-playlist.ejs │ │ │ │ ├── airplay-modal.ejs │ │ │ │ ├── animatedartwork-view.ejs │ │ │ │ ├── app-content.ejs │ │ │ │ ├── artist-chip.ejs │ │ │ │ ├── artwork-material.ejs │ │ │ │ ├── audio-controls.ejs │ │ │ │ ├── audio-playbackrate.ejs │ │ │ │ ├── audio-settings.ejs │ │ │ │ ├── c2-upgrade.ejs │ │ │ │ ├── castmenu.ejs │ │ │ │ ├── cider-modal.ejs │ │ │ │ ├── editorialNotes.ejs │ │ │ │ ├── equalizer.ejs │ │ │ │ ├── fullscreen.ejs │ │ │ │ ├── hello-world.ejs │ │ │ │ ├── inline-collection-list.ejs │ │ │ │ ├── karaoke-in.ejs │ │ │ │ ├── libraryartist-item.ejs │ │ │ │ ├── listennow-child.ejs │ │ │ │ ├── listitem-horizontal.ejs │ │ │ │ ├── lyrics-view.ejs │ │ │ │ ├── mediaitem-artwork.ejs │ │ │ │ ├── mediaitem-hrect.ejs │ │ │ │ ├── mediaitem-info.ejs │ │ │ │ ├── mediaitem-list-item.ejs │ │ │ │ ├── mediaitem-mvview-sp.ejs │ │ │ │ ├── mediaitem-mvview.ejs │ │ │ │ ├── mediaitem-scroller-horizontal-large.ejs │ │ │ │ ├── mediaitem-scroller-horizontal-mvview.ejs │ │ │ │ ├── mediaitem-scroller-horizontal-sp.ejs │ │ │ │ ├── mediaitem-scroller-horizontal.ejs │ │ │ │ ├── mediaitem-square.ejs │ │ │ │ ├── menu-panel.ejs │ │ │ │ ├── miniplayer.ejs │ │ │ │ ├── moreinfo-modal.ejs │ │ │ │ ├── pagination.ejs │ │ │ │ ├── pathmenu.ejs │ │ │ │ ├── playlists.ejs │ │ │ │ ├── plugin-menu.ejs │ │ │ │ ├── qrcode-modal.ejs │ │ │ │ ├── queue.ejs │ │ │ │ ├── settings-keybinds.ejs │ │ │ │ ├── settings-plugins-github.ejs │ │ │ │ ├── settings-themes-github.ejs │ │ │ │ ├── settings-themes.ejs │ │ │ │ ├── settings-window.ejs │ │ │ │ ├── share-sheet.ejs │ │ │ │ ├── sidebar-playlist.ejs │ │ │ │ ├── sidebar.ejs │ │ │ │ └── smarthints.ejs │ │ │ ├── main.ejs │ │ │ └── pages/ │ │ │ ├── about.ejs │ │ │ ├── apple-account-settings.ejs │ │ │ ├── apple-curator.ejs │ │ │ ├── artist-feed.ejs │ │ │ ├── artist.ejs │ │ │ ├── audiolabs.ejs │ │ │ ├── browse.ejs │ │ │ ├── charts.ejs │ │ │ ├── cider-multiroom.ejs │ │ │ ├── cider-playlist.ejs │ │ │ ├── cider-profile.ejs │ │ │ ├── collection-list.ejs │ │ │ ├── connect-linked.ejs │ │ │ ├── groupings.ejs │ │ │ ├── home.ejs │ │ │ ├── installed-themes.ejs │ │ │ ├── library-albums.ejs │ │ │ ├── library-artists.ejs │ │ │ ├── library-recentlyadded.ejs │ │ │ ├── library-songs.ejs │ │ │ ├── library-videos.ejs │ │ │ ├── listen_now.ejs │ │ │ ├── madeforyou.ejs │ │ │ ├── oobe.ejs │ │ │ ├── playlist-inline.ejs │ │ │ ├── plugin-renderer.ejs │ │ │ ├── podcasts.ejs │ │ │ ├── radio.ejs │ │ │ ├── recordLabel.ejs │ │ │ ├── remote-pair.ejs │ │ │ ├── replay.ejs │ │ │ ├── search.ejs │ │ │ ├── themes-github.ejs │ │ │ ├── webview.ejs │ │ │ └── zoo.ejs │ │ └── workbox-962786f2.js │ └── web-remote/ │ ├── ciderframework.css │ ├── index.js │ ├── manifest.json │ ├── style.css │ ├── views/ │ │ ├── components/ │ │ │ ├── animatedartwork-view.ejs │ │ │ ├── mediaitem-artwork.ejs │ │ │ └── mediaitem-square.ejs │ │ └── index.ejs │ └── vue.js ├── steam-deck.json ├── tsconfig.json ├── winget.json └── workbox-config.js