├── .github └── workflows │ └── release.yml ├── .gitignore ├── API.pm ├── API ├── Async.pm ├── Auth.pm └── Sync.pm ├── HTML └── EN │ └── plugins │ └── TIDAL │ ├── auth.html │ ├── html │ ├── emblem.png │ ├── featured_MTL_svg_trophy.png │ ├── home.png │ ├── mix_MTL_svg_stream.png │ ├── moods_MTL_icon_celebration.png │ ├── personal.png │ ├── spotlight-beam.svg │ └── tidal_MTL_svg_tidal.png │ └── settings.html ├── HomeExtras.pm ├── Importer.pm ├── InfoMenu.pm ├── LastMix.pm ├── Plugin.pm ├── ProtocolHandler.pm ├── README.md ├── Settings.pm ├── Settings └── Auth.pm ├── install.xml ├── repo ├── release.pl └── repo.xml ├── strings.txt └── tidal_icons.svg /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/.gitignore -------------------------------------------------------------------------------- /API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/API.pm -------------------------------------------------------------------------------- /API/Async.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/API/Async.pm -------------------------------------------------------------------------------- /API/Auth.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/API/Auth.pm -------------------------------------------------------------------------------- /API/Sync.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/API/Sync.pm -------------------------------------------------------------------------------- /HTML/EN/plugins/TIDAL/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/HTML/EN/plugins/TIDAL/auth.html -------------------------------------------------------------------------------- /HTML/EN/plugins/TIDAL/html/emblem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/HTML/EN/plugins/TIDAL/html/emblem.png -------------------------------------------------------------------------------- /HTML/EN/plugins/TIDAL/html/featured_MTL_svg_trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/HTML/EN/plugins/TIDAL/html/featured_MTL_svg_trophy.png -------------------------------------------------------------------------------- /HTML/EN/plugins/TIDAL/html/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/HTML/EN/plugins/TIDAL/html/home.png -------------------------------------------------------------------------------- /HTML/EN/plugins/TIDAL/html/mix_MTL_svg_stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/HTML/EN/plugins/TIDAL/html/mix_MTL_svg_stream.png -------------------------------------------------------------------------------- /HTML/EN/plugins/TIDAL/html/moods_MTL_icon_celebration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/HTML/EN/plugins/TIDAL/html/moods_MTL_icon_celebration.png -------------------------------------------------------------------------------- /HTML/EN/plugins/TIDAL/html/personal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/HTML/EN/plugins/TIDAL/html/personal.png -------------------------------------------------------------------------------- /HTML/EN/plugins/TIDAL/html/spotlight-beam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/HTML/EN/plugins/TIDAL/html/spotlight-beam.svg -------------------------------------------------------------------------------- /HTML/EN/plugins/TIDAL/html/tidal_MTL_svg_tidal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/HTML/EN/plugins/TIDAL/html/tidal_MTL_svg_tidal.png -------------------------------------------------------------------------------- /HTML/EN/plugins/TIDAL/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/HTML/EN/plugins/TIDAL/settings.html -------------------------------------------------------------------------------- /HomeExtras.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/HomeExtras.pm -------------------------------------------------------------------------------- /Importer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/Importer.pm -------------------------------------------------------------------------------- /InfoMenu.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/InfoMenu.pm -------------------------------------------------------------------------------- /LastMix.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/LastMix.pm -------------------------------------------------------------------------------- /Plugin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/Plugin.pm -------------------------------------------------------------------------------- /ProtocolHandler.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/ProtocolHandler.pm -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/README.md -------------------------------------------------------------------------------- /Settings.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/Settings.pm -------------------------------------------------------------------------------- /Settings/Auth.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/Settings/Auth.pm -------------------------------------------------------------------------------- /install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/install.xml -------------------------------------------------------------------------------- /repo/release.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/repo/release.pl -------------------------------------------------------------------------------- /repo/repo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/repo/repo.xml -------------------------------------------------------------------------------- /strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/strings.txt -------------------------------------------------------------------------------- /tidal_icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelherger/lms-plugin-tidal/HEAD/tidal_icons.svg --------------------------------------------------------------------------------