├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── README.md ├── Snip ├── AUTHORS.md ├── CHANGES.md ├── LICENSE.md ├── README.md ├── Resources │ ├── Strings.cs-CZ.resources │ ├── Strings.da-DK.resources │ ├── Strings.de-AT.resources │ ├── Strings.de-CH.resources │ ├── Strings.de-DE.resources │ ├── Strings.el-GR.resources │ ├── Strings.es-CL.resources │ ├── Strings.fr-FR.resources │ ├── Strings.nb-NO.resources │ ├── Strings.nl-NL.resources │ ├── Strings.pl-PL.resources │ ├── Strings.resources │ ├── Strings.sv-SE.resources │ └── Strings.zh-TW.resources ├── Snip.exe └── Snip_TrackId.txt ├── animate.min.css ├── index.html ├── index.ts ├── settings.json ├── style.css └── tsconfig.json /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/README.md -------------------------------------------------------------------------------- /Snip/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/Snip/AUTHORS.md -------------------------------------------------------------------------------- /Snip/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/Snip/CHANGES.md -------------------------------------------------------------------------------- /Snip/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/Snip/LICENSE.md -------------------------------------------------------------------------------- /Snip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/Snip/README.md -------------------------------------------------------------------------------- /Snip/Resources/Strings.cs-CZ.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/Snip/Resources/Strings.cs-CZ.resources -------------------------------------------------------------------------------- /Snip/Resources/Strings.da-DK.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/Snip/Resources/Strings.da-DK.resources -------------------------------------------------------------------------------- /Snip/Resources/Strings.de-AT.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/Snip/Resources/Strings.de-AT.resources -------------------------------------------------------------------------------- /Snip/Resources/Strings.de-CH.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/Snip/Resources/Strings.de-CH.resources -------------------------------------------------------------------------------- /Snip/Resources/Strings.de-DE.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/Snip/Resources/Strings.de-DE.resources -------------------------------------------------------------------------------- /Snip/Resources/Strings.el-GR.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/Snip/Resources/Strings.el-GR.resources -------------------------------------------------------------------------------- /Snip/Resources/Strings.es-CL.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/Snip/Resources/Strings.es-CL.resources -------------------------------------------------------------------------------- /Snip/Resources/Strings.fr-FR.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/Snip/Resources/Strings.fr-FR.resources -------------------------------------------------------------------------------- /Snip/Resources/Strings.nb-NO.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/Snip/Resources/Strings.nb-NO.resources -------------------------------------------------------------------------------- /Snip/Resources/Strings.nl-NL.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/Snip/Resources/Strings.nl-NL.resources -------------------------------------------------------------------------------- /Snip/Resources/Strings.pl-PL.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/Snip/Resources/Strings.pl-PL.resources -------------------------------------------------------------------------------- /Snip/Resources/Strings.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/Snip/Resources/Strings.resources -------------------------------------------------------------------------------- /Snip/Resources/Strings.sv-SE.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/Snip/Resources/Strings.sv-SE.resources -------------------------------------------------------------------------------- /Snip/Resources/Strings.zh-TW.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/Snip/Resources/Strings.zh-TW.resources -------------------------------------------------------------------------------- /Snip/Snip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/Snip/Snip.exe -------------------------------------------------------------------------------- /Snip/Snip_TrackId.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/animate.min.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/index.html -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/index.ts -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/settings.json -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/style.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adarhef/NowPlaying/HEAD/tsconfig.json --------------------------------------------------------------------------------