├── .gitignore ├── 404.php ├── INSTALL.txt ├── LICENSE.txt ├── README.md ├── README_ru.md ├── _header ├── alarmclock.php ├── albumart.php ├── api ├── alarmclock │ └── index.php ├── collection │ └── index.php ├── dirbrowser │ └── index.php ├── metadata │ ├── backup │ │ └── index.php │ ├── index.php │ └── query │ │ └── index.php ├── player │ └── index.php ├── podcasts │ └── index.php ├── saveprefs │ ├── index.php │ └── ui_defaults.php ├── sleeptimer │ └── index.php ├── tracklist │ └── index.php ├── userbackgrounds │ └── index.php └── yourradio │ └── index.php ├── apitest.php ├── backends └── sql │ ├── data_base.class.php │ ├── init_generic.class.php │ ├── metabackup.class.php │ ├── metadatabase.class.php │ ├── metaquery.class.php │ ├── music_loader.class.php │ ├── mysql │ ├── database.class.php │ └── init_database.class.php │ ├── podatabase.class.php │ ├── sqlite │ ├── database.class.php │ └── init_database.class.php │ └── timers.class.php ├── browser ├── apis │ ├── brave.class.php │ ├── cache_handler.class.php │ ├── discogs.class.php │ ├── lastfm.class.php │ ├── musicbrainz.class.php │ ├── soundcloud.class.php │ ├── spotify.class.php │ └── wikidata.class.php ├── backends │ ├── api_handler.php │ ├── getBeetsInfo.php │ ├── getComment.php │ ├── getLyrics.php │ ├── getambio.php │ ├── getamimage.php │ └── info_wikipedia.php ├── helpers │ ├── brave.js │ ├── discogs.js │ ├── lastfm.js │ ├── musicbrainz.js │ ├── soundcloud.js │ ├── spotify.js │ └── wikipedia.js ├── info.js └── plugins │ ├── 01_info_file.js │ ├── 02_info_lastfm.js │ ├── 03_info_wikipedia.js │ ├── 04_info_musicbrainz.js │ ├── 05_info_discogs.js │ ├── 06_info_lyrics.js │ ├── 07_info_soundcloud.js │ ├── 08_info_spotify.js │ ├── 09_info_videos.js │ ├── info_ratings.js │ └── info_sidebar_layout.js ├── collection ├── album.class.php ├── collection_base.class.php ├── db_collection.class.php ├── filecollector.class.php ├── mpdlistthing.class.php ├── musiccollection.class.php ├── playlistcollection.class.php ├── sortby │ ├── sortby_album.class.php │ ├── sortby_albumbyartist.class.php │ ├── sortby_artist.class.php │ ├── sortby_base.class.php │ ├── sortby_genre.class.php │ ├── sortby_genrebyartist.class.php │ ├── sortby_rating.class.php │ ├── sortby_ratingbyartist.class.php │ ├── sortby_tag.class.php │ └── sortby_tagbyartist.class.php └── track.class.php ├── css ├── 00_layout-january.css ├── 01_basic_elements.css ├── 10-icons.css ├── 20_animations.css ├── 33_wikipedia.css ├── albumartmanager │ └── albumart.css └── scrollbars │ └── jquery.mCustomScrollbar.css ├── docs ├── Alarm-And-Sleep.md ├── Album-Art-Manager.md ├── Albums-To-Listen-To.md ├── Automatic-Collection-Updates.md ├── Automating-RompR.md ├── Backend-Daemon.md ├── Backing-Up-Your-Metadata.md ├── Browser-Compatibility.md ├── Cantata-Importer.md ├── Changelog.md ├── Contributing.md ├── Desktop-Skin.md ├── File-Browser.md ├── Installation-on-Android.md ├── Installation-on-Linux-Alternative-Method.md ├── Installation-on-macOS.md ├── Installation-with-Docker.md ├── Installation.md ├── Internet-Radio.md ├── Keeping-Playcounts-In-Sync.md ├── Keyboard-Shortcuts.md ├── LastFM.md ├── Music-Collection.md ├── Music-Discovery.md ├── OPML-Importer.md ├── Personalised-Radio.md ├── Phone-Skin.md ├── Podcasts.md ├── Recommended-Installation-on-Linux.md ├── Rompr-And-MPD.md ├── Rompr-And-Mopidy.md ├── Searching-For-Music.md ├── Skins.md ├── Skypotato-Skin.md ├── Spoken-Word.md ├── The-Info-Panel.md ├── The-Playlist.md ├── The-Wishlist.md ├── Theming.md ├── Translating-Rompr.md ├── Troubleshooting.md ├── Using-Multiple-Players.md ├── Using-Saved-Playlists.md ├── Using-a-MySQL-server.md ├── _config.yml ├── _layouts │ └── default.html ├── assets │ └── css │ │ └── style.scss ├── images │ ├── alarmclock1.png │ ├── alarmclock2.png │ ├── alarmclock3.png │ ├── alarmclock4.png │ ├── alarmclock5.png │ ├── albumart.png │ ├── albumart2.png │ ├── albummenu.png │ ├── appearance.png │ ├── atl.png │ ├── backimage1.png │ ├── backimage2.png │ ├── backimage3.png │ ├── buildcollectionfrom.png │ ├── button.png │ ├── collectionnew.png │ ├── collectionsetup.png │ ├── commradio3.png │ ├── composersort.png │ ├── consumearound.png │ ├── cusrad1.png │ ├── cusrad2.png │ ├── cusradio3.png │ ├── cusradio4.png │ ├── cusradio5.png │ ├── cusradio6.png │ ├── darkness.png │ ├── debuginfo.png │ ├── debugsetup.png │ ├── desktopskin.png │ ├── download-icon.png │ ├── favicon-128.png │ ├── filebrowser.png │ ├── fire.png │ ├── google_credentials.png │ ├── infopanel1.png │ ├── infopanel2.png │ ├── infopanel3.png │ ├── infopanel4.png │ ├── infopanel5.png │ ├── ipad-landscape.png │ ├── ipad-portrait.png │ ├── iphone4-landscape.png │ ├── iphone5-albums.png │ ├── iphone5-portrait.png │ ├── iphonemove1.png │ ├── landscape-tablet.png │ ├── lastfm.png │ ├── lastfmsync.png │ ├── lfmsync.png │ ├── lyrics.png │ ├── metabackup.png │ ├── mopcolbeets.png │ ├── mpd_on_ws.png │ ├── mpdsocket.png │ ├── musicfromeverywhere.png │ ├── musicfromspotify.png │ ├── nodaemon.png │ ├── numismatist.png │ ├── opmlimporter1.png │ ├── opmlimporter2.png │ ├── personal2.png │ ├── personalradio1.png │ ├── phone-album.png │ ├── playerdefs.png │ ├── players2.png │ ├── players3.png │ ├── players4.png │ ├── playersetup.png │ ├── playlist1.png │ ├── playlistmpd1.png │ ├── playlists1.png │ ├── playlists3.png │ ├── podcast6.png │ ├── podcastcontrols.png │ ├── podcasts1.png │ ├── podcasts3.png │ ├── podcasts4.png │ ├── podcasts5.png │ ├── podcasts6.png │ ├── podcastsort.png │ ├── podresume.png │ ├── portrait-tablet.png │ ├── proxysetup.png │ ├── remoteplaylist.png │ ├── rollyourown.png │ ├── rompr-1.png │ ├── rompr-on-a-phone.png │ ├── search6.png │ ├── search9.png │ ├── shortcuts1.png │ ├── skypotato1.png │ ├── skypotato2.png │ ├── sleeptimer.png │ ├── sleeptimer2.png │ ├── snapcast1d.png │ ├── snapcast1e.png │ ├── snapcast3c.png │ ├── snapcast4c.png │ ├── somafm.png │ ├── spoken-word.png │ ├── spokenword2.png │ ├── spokenword3.png │ ├── spokenword4.png │ ├── spokenword5.png │ ├── spotifyinfo2.png │ ├── taggedtrack1.png │ ├── taggedtrack2.png │ ├── timeout.png │ ├── trackinfo.png │ ├── tunein.png │ ├── unplayable1.png │ ├── unplayable2.png │ ├── upcomingtracks.png │ ├── wishlist1.png │ ├── wishlist2.png │ ├── yourradio.png │ ├── yourradio2.png │ ├── yourradio3.png │ └── youtubedl.png ├── index.md ├── macOS-With-Nginx.md └── snapcast.md ├── favicon.ico ├── fonts ├── Alegreya.css ├── AppleGothic.css ├── ArimaMadurai.css ├── Audiowide.css ├── Baloo 2.css ├── Baskerville.css ├── Cabin.css ├── Calibri.css ├── Calisto.css ├── Comfortaa.css ├── Comic Neue.css ├── Copperplate.css ├── CormorantGaramond.css ├── Crimson Text.css ├── Darker Grotesque.css ├── Delius.css ├── Dosis.css ├── Fahkwang.css ├── Fantasy.css ├── Futura.css ├── Garamond.css ├── Geneva.css ├── Georgia.css ├── GillSans.css ├── Goldman.css ├── Handwriting.css ├── Herculanum.css ├── IBMPlexSans.css ├── IBMPlexSerif.css ├── Inconsolata.css ├── Itim.css ├── JosefinSans.css ├── JosefinSlab.css ├── Libre Franklin.css ├── Lora.css ├── Lucida.css ├── Luminari.css ├── Marker.css ├── Mirza.css ├── Monospace.css ├── Montserrat.css ├── Mukta.css ├── Muli.css ├── Noteworthy.css ├── NoticiaText.css ├── Nunito Sans.css ├── Nunito.css ├── Optima.css ├── Overlock.css ├── OverlockSC.css ├── PT Sans Narrow.css ├── PT Sans.css ├── Palatino.css ├── Papyrus.css ├── Patrick Hand.css ├── Playfair Display.css ├── Pompiere.css ├── Poppins.css ├── Qucksand.css ├── Quintessential.css ├── Raleway.css ├── Righteous.css ├── Roboto Condensed.css ├── Rockwell.css ├── Rubik.css ├── Savoye.css ├── Script.css ├── Skia.css ├── Source Sans Pro.css ├── Special Elite.css ├── Tahoma.css ├── Tamil.css ├── Times.css ├── Titilium Web.css ├── Trattatello.css ├── Ubuntu Mono.css ├── Ubuntu.css ├── Verdana.css └── Xanh Mono.css ├── getRemoteImage.php ├── getShrunkImage.php ├── get_css.php ├── getid3 ├── extension.cache.dbm.php ├── extension.cache.mysql.php ├── extension.cache.mysqli.php ├── extension.cache.sqlite3.php ├── getid3.lib.php ├── getid3.php ├── module.archive.gzip.php ├── module.archive.hpk.php ├── module.archive.rar.php ├── module.archive.szip.php ├── module.archive.tar.php ├── module.archive.xz.php ├── module.archive.zip.php ├── module.audio-video.asf.php ├── module.audio-video.bink.php ├── module.audio-video.flv.php ├── module.audio-video.ivf.php ├── module.audio-video.matroska.php ├── module.audio-video.mpeg.php ├── module.audio-video.nsv.php ├── module.audio-video.quicktime.php ├── module.audio-video.real.php ├── module.audio-video.riff.php ├── module.audio-video.swf.php ├── module.audio-video.ts.php ├── module.audio-video.wtv.php ├── module.audio.aa.php ├── module.audio.aac.php ├── module.audio.ac3.php ├── module.audio.amr.php ├── module.audio.au.php ├── module.audio.avr.php ├── module.audio.bonk.php ├── module.audio.dsdiff.php ├── module.audio.dsf.php ├── module.audio.dss.php ├── module.audio.dts.php ├── module.audio.flac.php ├── module.audio.la.php ├── module.audio.lpac.php ├── module.audio.midi.php ├── module.audio.mod.php ├── module.audio.monkey.php ├── module.audio.mp3.php ├── module.audio.mpc.php ├── module.audio.ogg.php ├── module.audio.optimfrog.php ├── module.audio.rkau.php ├── module.audio.shorten.php ├── module.audio.tak.php ├── module.audio.tta.php ├── module.audio.voc.php ├── module.audio.vqf.php ├── module.audio.wavpack.php ├── module.graphic.bmp.php ├── module.graphic.efax.php ├── module.graphic.gif.php ├── module.graphic.jpg.php ├── module.graphic.pcd.php ├── module.graphic.png.php ├── module.graphic.svg.php ├── module.graphic.tiff.php ├── module.misc.cue.php ├── module.misc.exe.php ├── module.misc.iso.php ├── module.misc.msoffice.php ├── module.misc.par2.php ├── module.misc.pdf.php ├── module.misc.torrent.php ├── module.tag.apetag.php ├── module.tag.id3v1.php ├── module.tag.id3v2.php ├── module.tag.lyrics3.php ├── module.tag.nikon-nctg.php ├── module.tag.xmp.php ├── write.apetag.php ├── write.id3v1.php ├── write.id3v2.php ├── write.lyrics3.php ├── write.metaflac.php ├── write.php ├── write.real.php └── write.vorbiscomment.php ├── gettheme.php ├── iconsets ├── Bobalofire │ ├── 0stars.svg │ ├── 1stars.svg │ ├── 2stars.svg │ ├── 3stars.svg │ ├── 4stars.svg │ ├── 5stars.svg │ ├── aac-audio.svg │ ├── add.svg │ ├── alarmclock_false.svg │ ├── alarmclock_true.svg │ ├── allmusic-logo.svg │ ├── arrow-decrease.svg │ ├── arrow-increase.svg │ ├── arrow-left-double.svg │ ├── arrow-right-double.svg │ ├── arrow-updown.svg │ ├── artist-icon.svg │ ├── audiobook.svg │ ├── backbutton.svg │ ├── bandcamp.svg │ ├── bbc-logo.svg │ ├── blobdown2-hi.svg │ ├── blobdown2.svg │ ├── bookmark.svg │ ├── broadcast-new.svg │ ├── calendar.svg │ ├── cd_case.svg │ ├── collection.svg │ ├── compact-disc.svg │ ├── consume.svg │ ├── consume_off.svg │ ├── crossfade.svg │ ├── crossfade_off.svg │ ├── dialog-error.svg │ ├── dialog-information.svg │ ├── discogs-logo.svg │ ├── document-save.svg │ ├── download-icon.svg │ ├── edit-clear-list.svg │ ├── edit-delete.svg │ ├── expand-up.svg │ ├── facebook-logo.svg │ ├── ffwd.svg │ ├── file.svg │ ├── flac-audio.svg │ ├── folder.svg │ ├── forwardbutton.svg │ ├── gmusic-logo.svg │ ├── headphones.svg │ ├── history.svg │ ├── icon-new.svg │ ├── imdb-logo.svg │ ├── instagram.svg │ ├── internetarchive-logo.svg │ ├── interrupt.svg │ ├── lastfm-ban.svg │ ├── lastfm-love.svg │ ├── lastfm-unlove.svg │ ├── lastfm.svg │ ├── lyrics.svg │ ├── media-playback-pause-highlight.svg │ ├── media-playback-pause.svg │ ├── media-playback-start-highlight.svg │ ├── media-playback-start.svg │ ├── media-playback-stop-highlight.svg │ ├── media-playback-stop.svg │ ├── media-skip-backward-highlight.svg │ ├── media-skip-backward.svg │ ├── media-skip-forward-highlight.svg │ ├── media-skip-forward.svg │ ├── movie-1.svg │ ├── mp3-audio.svg │ ├── musicbrainz_logo.svg │ ├── neverheard.svg │ ├── ogg-audio.svg │ ├── output.svg │ ├── output_mute.svg │ ├── padlock.svg │ ├── padlock_open.svg │ ├── parental-advisory.svg │ ├── playlist.svg │ ├── podcast-logo.svg │ ├── preferences.svg │ ├── pushbutton.svg │ ├── qobuz-logo.svg │ ├── random.svg │ ├── random_off.svg │ ├── ratandtag.svg │ ├── ratortag.svg │ ├── refresh.svg │ ├── refresh_off.svg │ ├── resize.svg │ ├── rewind.svg │ ├── rss.svg │ ├── shuffle.svg │ ├── singlestar.svg │ ├── sleep.svg │ ├── sliders.svg │ ├── smartradio.svg │ ├── soundcloud-logo.svg │ ├── spinner.svg │ ├── spotify-logo.svg │ ├── stopafter-highlight.svg │ ├── stopafter.svg │ ├── system-search.svg │ ├── tag.svg │ ├── theme.css │ ├── tick.svg │ ├── toggle-closed.svg │ ├── toggle-open.svg │ ├── togglebutton-new2-off.svg │ ├── togglebutton-new2-on.svg │ ├── twitter-logo.svg │ ├── vkontakte-logo.svg │ ├── volume.svg │ ├── wikipedia-logo.svg │ ├── wma-audio.svg │ ├── world-wide-web.svg │ └── youtube-logo.svg ├── Bobalophagus-Dark │ ├── 0stars.svg │ ├── 1stars.svg │ ├── 2stars.svg │ ├── 3stars.svg │ ├── 4stars.svg │ ├── 5stars.svg │ ├── aac-audio.svg │ ├── add.svg │ ├── alarmclock_false.svg │ ├── alarmclock_true.svg │ ├── allmusic-logo.svg │ ├── arrow-decrease.svg │ ├── arrow-increase.svg │ ├── arrow-left-double.svg │ ├── arrow-right-double.svg │ ├── arrow-updown.svg │ ├── artist-icon.svg │ ├── audiobook.svg │ ├── backbutton.svg │ ├── bandcamp.svg │ ├── bbc-logo.svg │ ├── blobdown2-hi.svg │ ├── blobdown2.svg │ ├── bookmark.svg │ ├── broadcast-new.svg │ ├── calendar.svg │ ├── cd_case.svg │ ├── collection.svg │ ├── compact-disc.svg │ ├── consume.svg │ ├── consume_off.svg │ ├── crossfade.svg │ ├── crossfade_off.svg │ ├── dialog-error.svg │ ├── dialog-information.svg │ ├── discogs-logo.svg │ ├── document-save.svg │ ├── download-icon.svg │ ├── edit-clear-list.svg │ ├── edit-delete.svg │ ├── expand-up.svg │ ├── facebook-logo.svg │ ├── ffwd.svg │ ├── file.svg │ ├── flac-audio.svg │ ├── folder.svg │ ├── forwardbutton.svg │ ├── gmusic-logo.svg │ ├── headphones.svg │ ├── history.svg │ ├── icon-new.svg │ ├── imdb-logo.svg │ ├── instagram.svg │ ├── internetarchive-logo.svg │ ├── interrupt.svg │ ├── lastfm-ban.svg │ ├── lastfm-love.svg │ ├── lastfm-unlove.svg │ ├── lastfm.svg │ ├── lyrics.svg │ ├── media-playback-pause-highlight.svg │ ├── media-playback-pause.svg │ ├── media-playback-start-highlight.svg │ ├── media-playback-start.svg │ ├── media-playback-stop-highlight.svg │ ├── media-playback-stop.svg │ ├── media-skip-backward-highlight.svg │ ├── media-skip-backward.svg │ ├── media-skip-forward-highlight.svg │ ├── media-skip-forward.svg │ ├── movie-1.svg │ ├── mp3-audio.svg │ ├── musicbrainz_logo.svg │ ├── neverheard.svg │ ├── ogg-audio.svg │ ├── output.svg │ ├── output_mute.svg │ ├── padlock.svg │ ├── padlock_open.svg │ ├── parental-advisory.svg │ ├── playlist.svg │ ├── podcast-logo.svg │ ├── preferences.svg │ ├── pushbutton.svg │ ├── qobuz-logo.svg │ ├── random.svg │ ├── random_off.svg │ ├── ratandtag.svg │ ├── ratortag.svg │ ├── refresh.svg │ ├── refresh_off.svg │ ├── resize.svg │ ├── rewind.svg │ ├── rss.svg │ ├── shuffle.svg │ ├── singlestar.svg │ ├── sleep.svg │ ├── sliders.svg │ ├── smartradio.svg │ ├── soundcloud-logo.svg │ ├── spinner.svg │ ├── spotify-logo.svg │ ├── stopafter-highlight.svg │ ├── stopafter.svg │ ├── system-search.svg │ ├── tag.svg │ ├── theme.css │ ├── tick.svg │ ├── toggle-closed.svg │ ├── toggle-open.svg │ ├── togglebutton-new2-off.svg │ ├── togglebutton-new2-on.svg │ ├── twitter-logo.svg │ ├── vkontakte-logo.svg │ ├── volume.svg │ ├── wikipedia-logo.svg │ ├── wma-audio.svg │ ├── world-wide-web.svg │ └── youtube-logo.svg ├── Bobalophagus-Light │ ├── 0stars.svg │ ├── 1stars.svg │ ├── 2stars.svg │ ├── 3stars.svg │ ├── 4stars.svg │ ├── 5stars.svg │ ├── aac-audio.svg │ ├── add.svg │ ├── alarmclock_false.svg │ ├── alarmclock_true.svg │ ├── allmusic-logo.svg │ ├── arrow-decrease.svg │ ├── arrow-increase.svg │ ├── arrow-left-double.svg │ ├── arrow-right-double.svg │ ├── arrow-updown.svg │ ├── artist-icon.svg │ ├── audiobook.svg │ ├── backbutton.svg │ ├── bandcamp.svg │ ├── bbc-logo.svg │ ├── blobdown2-hi.svg │ ├── blobdown2.svg │ ├── bookmark.svg │ ├── broadcast-new.svg │ ├── calendar.svg │ ├── cd_case.svg │ ├── collection.svg │ ├── compact-disc.svg │ ├── consume.svg │ ├── consume_off.svg │ ├── crossfade.svg │ ├── crossfade_off.svg │ ├── dialog-error.svg │ ├── dialog-information.svg │ ├── discogs-logo.svg │ ├── document-save.svg │ ├── download-icon.svg │ ├── edit-clear-list.svg │ ├── edit-delete.svg │ ├── expand-up.svg │ ├── facebook-logo.svg │ ├── ffwd.svg │ ├── file.svg │ ├── flac-audio.svg │ ├── folder.svg │ ├── forwardbutton.svg │ ├── gmusic-logo.svg │ ├── headphones.svg │ ├── history.svg │ ├── icon-new.svg │ ├── imdb-logo.svg │ ├── instagram.svg │ ├── internetarchive-logo.svg │ ├── interrupt.svg │ ├── lastfm-ban.svg │ ├── lastfm-love.svg │ ├── lastfm-unlove.svg │ ├── lastfm.svg │ ├── lyrics.svg │ ├── media-playback-pause-highlight.svg │ ├── media-playback-pause.svg │ ├── media-playback-start-highlight.svg │ ├── media-playback-start.svg │ ├── media-playback-stop-highlight.svg │ ├── media-playback-stop.svg │ ├── media-skip-backward-highlight.svg │ ├── media-skip-backward.svg │ ├── media-skip-forward-highlight.svg │ ├── media-skip-forward.svg │ ├── movie-1.svg │ ├── mp3-audio.svg │ ├── musicbrainz_logo.svg │ ├── neverheard.svg │ ├── ogg-audio.svg │ ├── output.svg │ ├── output_mute.svg │ ├── padlock.svg │ ├── padlock_open.svg │ ├── parental-advisory.svg │ ├── playlist.svg │ ├── podcast-logo.svg │ ├── preferences.svg │ ├── pushbutton.svg │ ├── qobuz-logo.svg │ ├── random.svg │ ├── random_off.svg │ ├── ratandtag.svg │ ├── ratortag.svg │ ├── refresh.svg │ ├── refresh_off.svg │ ├── resize.svg │ ├── rewind.svg │ ├── rss.svg │ ├── shuffle.svg │ ├── singlestar.svg │ ├── sleep.svg │ ├── sliders.svg │ ├── smartradio.svg │ ├── soundcloud-logo.svg │ ├── spinner.svg │ ├── spotify-logo.svg │ ├── stopafter-highlight.svg │ ├── stopafter.svg │ ├── system-search.svg │ ├── tag.svg │ ├── theme.css │ ├── tick.svg │ ├── toggle-closed.svg │ ├── toggle-open.svg │ ├── togglebutton-new2-off.svg │ ├── togglebutton-new2-on.svg │ ├── twitter-logo.svg │ ├── vkontakte-logo.svg │ ├── volume.svg │ ├── wikipedia-logo.svg │ ├── wma-audio.svg │ ├── world-wide-web.svg │ └── youtube-logo.svg ├── Bobalophagus-Orange │ ├── 0stars.svg │ ├── 1stars.svg │ ├── 2stars.svg │ ├── 3stars.svg │ ├── 4stars.svg │ ├── 5stars.svg │ ├── aac-audio.svg │ ├── add.svg │ ├── alarmclock_false.svg │ ├── alarmclock_true.svg │ ├── allmusic-logo.svg │ ├── arrow-decrease.svg │ ├── arrow-increase.svg │ ├── arrow-left-double.svg │ ├── arrow-right-double.svg │ ├── arrow-updown.svg │ ├── artist-icon.svg │ ├── audiobook.svg │ ├── backbutton.svg │ ├── bandcamp.svg │ ├── bbc-logo.svg │ ├── blobdown2-hi.svg │ ├── blobdown2.svg │ ├── bookmark.svg │ ├── broadcast-new.svg │ ├── calendar.svg │ ├── cd_case.svg │ ├── collection.svg │ ├── compact-disc.svg │ ├── consume.svg │ ├── consume_off.svg │ ├── crossfade.svg │ ├── crossfade_off.svg │ ├── dialog-error.svg │ ├── dialog-information.svg │ ├── discogs-logo.svg │ ├── document-save.svg │ ├── download-icon.svg │ ├── edit-clear-list.svg │ ├── edit-delete.svg │ ├── expand-up.svg │ ├── facebook-logo.svg │ ├── ffwd.svg │ ├── file.svg │ ├── flac-audio.svg │ ├── folder.svg │ ├── forwardbutton.svg │ ├── gmusic-logo.svg │ ├── headphones.svg │ ├── history.svg │ ├── icon-new.svg │ ├── imdb-logo.svg │ ├── instagram.svg │ ├── internetarchive-logo.svg │ ├── interrupt.svg │ ├── lastfm-ban.svg │ ├── lastfm-love.svg │ ├── lastfm-unlove.svg │ ├── lastfm.svg │ ├── lyrics.svg │ ├── media-playback-pause-highlight.svg │ ├── media-playback-pause.svg │ ├── media-playback-start-highlight.svg │ ├── media-playback-start.svg │ ├── media-playback-stop-highlight.svg │ ├── media-playback-stop.svg │ ├── media-skip-backward-highlight.svg │ ├── media-skip-backward.svg │ ├── media-skip-forward-highlight.svg │ ├── media-skip-forward.svg │ ├── movie-1.svg │ ├── mp3-audio.svg │ ├── musicbrainz_logo.svg │ ├── neverheard.svg │ ├── ogg-audio.svg │ ├── output.svg │ ├── output_mute.svg │ ├── padlock.svg │ ├── padlock_open.svg │ ├── parental-advisory.svg │ ├── playlist.svg │ ├── podcast-logo.svg │ ├── preferences.svg │ ├── pushbutton.svg │ ├── qobuz-logo.svg │ ├── random.svg │ ├── random_off.svg │ ├── ratandtag.svg │ ├── ratortag.svg │ ├── refresh.svg │ ├── refresh_off.svg │ ├── resize.svg │ ├── rewind.svg │ ├── rss.svg │ ├── shuffle.svg │ ├── singlestar.svg │ ├── sleep.svg │ ├── sliders.svg │ ├── smartradio.svg │ ├── soundcloud-logo.svg │ ├── spinner.svg │ ├── spotify-logo.svg │ ├── stopafter-highlight.svg │ ├── stopafter.svg │ ├── system-search.svg │ ├── tag.svg │ ├── theme.css │ ├── tick.svg │ ├── toggle-closed.svg │ ├── toggle-open.svg │ ├── togglebutton-new2-off.svg │ ├── togglebutton-new2-on.svg │ ├── twitter-logo.svg │ ├── vkontakte-logo.svg │ ├── volume.svg │ ├── wikipedia-logo.svg │ ├── wma-audio.svg │ ├── world-wide-web.svg │ └── youtube-logo.svg ├── Bobalophatrator │ ├── 0stars.svg │ ├── 1stars.svg │ ├── 2stars.svg │ ├── 3stars.svg │ ├── 4stars.svg │ ├── 5stars.svg │ ├── aac-audio.svg │ ├── add.svg │ ├── alarmclock_false.svg │ ├── alarmclock_true.svg │ ├── allmusic-logo.svg │ ├── arrow-decrease.svg │ ├── arrow-increase.svg │ ├── arrow-left-double.svg │ ├── arrow-right-double.svg │ ├── arrow-updown.svg │ ├── artist-icon.svg │ ├── audiobook.svg │ ├── backbutton.svg │ ├── bandcamp.svg │ ├── bbc-logo.svg │ ├── blobdown2-hi.svg │ ├── blobdown2.svg │ ├── bookmark.svg │ ├── broadcast-new.svg │ ├── calendar.svg │ ├── cd_case.svg │ ├── collection.svg │ ├── compact-disc.svg │ ├── consume.svg │ ├── consume_off.svg │ ├── crossfade.svg │ ├── crossfade_off.svg │ ├── dialog-error.svg │ ├── dialog-information.svg │ ├── discogs-logo.svg │ ├── document-save.svg │ ├── download-icon.svg │ ├── edit-clear-list.svg │ ├── edit-delete.svg │ ├── expand-up.svg │ ├── facebook-logo.svg │ ├── ffwd.svg │ ├── file.svg │ ├── flac-audio.svg │ ├── folder.svg │ ├── forwardbutton.svg │ ├── gmusic-logo.svg │ ├── headphones.svg │ ├── history.svg │ ├── icon-new.svg │ ├── imdb-logo.svg │ ├── instagram.svg │ ├── internetarchive-logo.svg │ ├── interrupt.svg │ ├── lastfm-ban.svg │ ├── lastfm-love.svg │ ├── lastfm-unlove.svg │ ├── lastfm.svg │ ├── lyrics.svg │ ├── media-playback-pause-highlight.svg │ ├── media-playback-pause.svg │ ├── media-playback-start-highlight.svg │ ├── media-playback-start.svg │ ├── media-playback-stop-highlight.svg │ ├── media-playback-stop.svg │ ├── media-skip-backward-highlight.svg │ ├── media-skip-backward.svg │ ├── media-skip-forward-highlight.svg │ ├── media-skip-forward.svg │ ├── movie-1.svg │ ├── mp3-audio.svg │ ├── musicbrainz_logo.svg │ ├── neverheard.svg │ ├── ogg-audio.svg │ ├── output.svg │ ├── output_mute.svg │ ├── padlock.svg │ ├── padlock_open.svg │ ├── parental-advisory.svg │ ├── playlist.svg │ ├── podcast-logo.svg │ ├── preferences.svg │ ├── pushbutton.svg │ ├── qobuz-logo.svg │ ├── random.svg │ ├── random_off.svg │ ├── ratandtag.svg │ ├── ratortag.svg │ ├── refresh.svg │ ├── refresh_off.svg │ ├── resize.svg │ ├── rewind.svg │ ├── rss.svg │ ├── shuffle.svg │ ├── singlestar.svg │ ├── sleep.svg │ ├── sliders.svg │ ├── smartradio.svg │ ├── soundcloud-logo.svg │ ├── spinner.svg │ ├── spotify-logo.svg │ ├── stopafter-highlight.svg │ ├── stopafter.svg │ ├── system-search.svg │ ├── tag.svg │ ├── theme.css │ ├── tick.svg │ ├── toggle-closed.svg │ ├── toggle-open.svg │ ├── togglebutton-new2-off.svg │ ├── togglebutton-new2-on.svg │ ├── twitter-logo.svg │ ├── vkontakte-logo.svg │ ├── volume.svg │ ├── wikipedia-logo.svg │ ├── wma-audio.svg │ ├── world-wide-web.svg │ └── youtube-logo.svg ├── Colourful │ ├── 0stars.svg │ ├── 1stars.svg │ ├── 2stars.svg │ ├── 3stars.svg │ ├── 4stars.svg │ ├── 5stars.svg │ ├── aac-audio.svg │ ├── add.svg │ ├── alarmclock_false.svg │ ├── alarmclock_true.svg │ ├── allmusic-logo.svg │ ├── arrow-decrease.svg │ ├── arrow-increase.svg │ ├── arrow-left-double.svg │ ├── arrow-right-double.svg │ ├── arrow-updown.svg │ ├── artist-icon.png │ ├── audiobook.svg │ ├── backbutton.svg │ ├── bandcamp.png │ ├── bbc-logo.svg │ ├── blobdown2-hi.svg │ ├── blobdown2.svg │ ├── bookmark.svg │ ├── broadcast-new.svg │ ├── calendar.svg │ ├── cd_case.svg │ ├── collection.svg │ ├── compact-disc.svg │ ├── consume.svg │ ├── consume_off.svg │ ├── crossfade.svg │ ├── crossfade_off.svg │ ├── dialog-error.svg │ ├── dialog-information.svg │ ├── discogs-logo.svg │ ├── document-save.svg │ ├── download-icon.svg │ ├── edit-clear-list.svg │ ├── edit-delete.svg │ ├── expand-up.svg │ ├── facebook-logo.svg │ ├── ffwd.svg │ ├── file.svg │ ├── flac-audio.svg │ ├── folder.svg │ ├── forwardbutton.svg │ ├── gmusic-logo.svg │ ├── headphones.svg │ ├── history.svg │ ├── icon-new.svg │ ├── imdb-logo.svg │ ├── instagram.svg │ ├── internetarchive-logo.svg │ ├── interrupt.svg │ ├── lastfm-ban.svg │ ├── lastfm-love.svg │ ├── lastfm-unlove.svg │ ├── lastfm.svg │ ├── lyrics.svg │ ├── media-playback-pause-highlight.svg │ ├── media-playback-pause.svg │ ├── media-playback-start-highlight.svg │ ├── media-playback-start.svg │ ├── media-playback-stop-highlight.svg │ ├── media-playback-stop.svg │ ├── media-skip-backward-highlight.svg │ ├── media-skip-backward.svg │ ├── media-skip-forward-highlight.svg │ ├── media-skip-forward.svg │ ├── movie-1.svg │ ├── mp3-audio.svg │ ├── musicbrainz_logo.svg │ ├── neverheard.png │ ├── ogg-audio.svg │ ├── output.svg │ ├── output_mute.svg │ ├── padlock.svg │ ├── padlock_open.svg │ ├── parental-advisory.svg │ ├── playlist.svg │ ├── podcast-logo.svg │ ├── preferences.svg │ ├── pushbutton.svg │ ├── qobuz-logo.svg │ ├── random.svg │ ├── random_off.svg │ ├── ratandtag.svg │ ├── ratortag.svg │ ├── refresh.svg │ ├── refresh_off.svg │ ├── resize.svg │ ├── rewind.svg │ ├── rss.svg │ ├── shuffle.png │ ├── singlestar.svg │ ├── sleep.svg │ ├── sliders.svg │ ├── smartradio.svg │ ├── soundcloud-logo.svg │ ├── spinner.svg │ ├── spotify-logo.svg │ ├── stopafter-highlight.svg │ ├── stopafter.svg │ ├── system-search.svg │ ├── tag.svg │ ├── theme.css │ ├── tick.svg │ ├── toggle-closed.svg │ ├── toggle-open.svg │ ├── togglebutton-new2-off.svg │ ├── togglebutton-new2-on.svg │ ├── twitter-logo.svg │ ├── unlistened.svg │ ├── vkontakte-logo.svg │ ├── volume.svg │ ├── wikipedia-logo.svg │ ├── wma-audio.svg │ ├── world-wide-web.svg │ └── youtube-logo.svg ├── Fiery │ ├── 0stars.svg │ ├── 1stars.svg │ ├── 2stars.svg │ ├── 3stars.svg │ ├── 4stars.svg │ ├── 5stars.svg │ ├── aac-audio.svg │ ├── add.svg │ ├── alarmclock_false.svg │ ├── alarmclock_true.svg │ ├── allmusic-logo.svg │ ├── arrow-decrease.svg │ ├── arrow-increase.svg │ ├── arrow-left-double.svg │ ├── arrow-right-double.svg │ ├── arrow-updown.svg │ ├── artist-icon.svg │ ├── audiobook.svg │ ├── backbutton.svg │ ├── bandcamp.svg │ ├── bbc-logo.svg │ ├── blobdown3-hi.svg │ ├── blobdown3.svg │ ├── bookmark.svg │ ├── broadcast-new.svg │ ├── calendar.svg │ ├── cd_case.svg │ ├── collection.svg │ ├── compact-disc.svg │ ├── consume.svg │ ├── consume_off.svg │ ├── crossfade.svg │ ├── crossfade_off.svg │ ├── dialog-error.svg │ ├── dialog-information.svg │ ├── discogs-logo.svg │ ├── document-save.svg │ ├── download-icon.svg │ ├── edit-clear-list.svg │ ├── edit-delete.svg │ ├── expand-up.svg │ ├── facebook-logo.svg │ ├── ffwd.svg │ ├── file.svg │ ├── flac-audio.svg │ ├── folder.svg │ ├── forwardbutton.svg │ ├── gmusic-logo.svg │ ├── headphones.svg │ ├── history.svg │ ├── icon-new.svg │ ├── imdb-logo.svg │ ├── instagram.svg │ ├── internetarchive-logo.svg │ ├── interrupt.svg │ ├── lastfm-ban.svg │ ├── lastfm-love.svg │ ├── lastfm-unlove.svg │ ├── lastfm.svg │ ├── lyrics.svg │ ├── media-playback-pause-highlight.svg │ ├── media-playback-pause.svg │ ├── media-playback-start-highlight.svg │ ├── media-playback-start.svg │ ├── media-playback-stop-highlight.svg │ ├── media-playback-stop.svg │ ├── media-skip-backward-highlight.svg │ ├── media-skip-backward.svg │ ├── media-skip-forward-highlight.svg │ ├── media-skip-forward.svg │ ├── movie-1.svg │ ├── mp3-audio.svg │ ├── musicbrainz_logo.svg │ ├── neverheard.svg │ ├── ogg-audio.svg │ ├── output.svg │ ├── output_mute.svg │ ├── padlock.svg │ ├── padlock_open.svg │ ├── parental-advisory.svg │ ├── playlist.svg │ ├── podcast-logo.svg │ ├── preferences.svg │ ├── pushbutton.svg │ ├── qobuz-logo.svg │ ├── ratandtag.svg │ ├── ratortag.svg │ ├── refresh.svg │ ├── refresh_off.svg │ ├── resize.svg │ ├── rewind.svg │ ├── rss.svg │ ├── shuffle.svg │ ├── shuffle_off.svg │ ├── singlestar.svg │ ├── sleep.svg │ ├── sliders.svg │ ├── smartradio.svg │ ├── soundcloud-logo.svg │ ├── spinner.svg │ ├── spotify-logo.svg │ ├── stopafter-highlight.svg │ ├── stopafter.svg │ ├── system-search.svg │ ├── tag.svg │ ├── theme.css │ ├── tick.svg │ ├── toggle-closed.svg │ ├── toggle-open.svg │ ├── togglebutton-new2-off.svg │ ├── togglebutton-new2-on.svg │ ├── twitter-logo.svg │ ├── unlistened.svg │ ├── vkontakte-logo.svg │ ├── volume.svg │ ├── wikipedia-logo.svg │ ├── wma-audio.svg │ ├── world-wide-web.svg │ └── youtube-logo.svg ├── Greydient │ ├── 0stars.svg │ ├── 1stars.svg │ ├── 2stars.svg │ ├── 3stars.svg │ ├── 4stars.svg │ ├── 5stars.svg │ ├── aac-audio.svg │ ├── add.svg │ ├── alarmclock_false.svg │ ├── alarmclock_true.svg │ ├── allmusic-logo.svg │ ├── arrow-decrease.svg │ ├── arrow-increase.svg │ ├── arrow-left-double.svg │ ├── arrow-right-double.svg │ ├── arrow-updown.svg │ ├── artist-icon.svg │ ├── audiobook.svg │ ├── backbutton.svg │ ├── bandcamp.svg │ ├── bbc-logo.svg │ ├── blobdown3-hi.svg │ ├── blobdown3.svg │ ├── bookmark.svg │ ├── broadcast-new.svg │ ├── calendar.svg │ ├── cd_case.svg │ ├── collection.svg │ ├── compact-disc.svg │ ├── consume.svg │ ├── consume_off.svg │ ├── crossfade.svg │ ├── crossfade_off.svg │ ├── dialog-error.svg │ ├── dialog-information.svg │ ├── discogs-logo.svg │ ├── document-save.svg │ ├── download-icon.svg │ ├── edit-clear-list.svg │ ├── edit-delete.svg │ ├── expand-up.svg │ ├── facebook-logo.svg │ ├── ffwd.svg │ ├── file.svg │ ├── flac-audio.svg │ ├── folder.svg │ ├── forwardbutton.svg │ ├── gmusic-logo.svg │ ├── headphones.svg │ ├── history.svg │ ├── icon-new.svg │ ├── imdb-logo.svg │ ├── instagram.svg │ ├── internetarchive-logo.svg │ ├── interrupt.svg │ ├── lastfm-ban.svg │ ├── lastfm-love.svg │ ├── lastfm-unlove.svg │ ├── lastfm.svg │ ├── lyrics.svg │ ├── media-playback-pause-highlight.svg │ ├── media-playback-pause.svg │ ├── media-playback-start-highlight.svg │ ├── media-playback-start.svg │ ├── media-playback-stop-highlight.svg │ ├── media-playback-stop.svg │ ├── media-skip-backward-highlight.svg │ ├── media-skip-backward.svg │ ├── media-skip-forward-highlight.svg │ ├── media-skip-forward.svg │ ├── movie-1.svg │ ├── mp3-audio.svg │ ├── musicbrainz_logo.svg │ ├── neverheard.svg │ ├── ogg-audio.svg │ ├── output.svg │ ├── output_mute.svg │ ├── padlock.svg │ ├── padlock_open.svg │ ├── parental-advisory.svg │ ├── playlist.svg │ ├── podcast-logo.svg │ ├── preferences.svg │ ├── pushbutton.svg │ ├── qobuz-logo.svg │ ├── ratandtag.svg │ ├── ratortag.svg │ ├── refresh.svg │ ├── refresh_off.svg │ ├── resize.svg │ ├── rewind.svg │ ├── rss.svg │ ├── shuffle.svg │ ├── shuffle_off.svg │ ├── singlestar.svg │ ├── sleep.svg │ ├── sliders.svg │ ├── smartradio.svg │ ├── soundcloud-logo.svg │ ├── spinner.svg │ ├── spotify-logo.svg │ ├── stopafter-highlight.svg │ ├── stopafter.svg │ ├── system-search.svg │ ├── tag.svg │ ├── theme.css │ ├── tick.svg │ ├── toggle-closed.svg │ ├── toggle-open.svg │ ├── togglebutton-new2-off.svg │ ├── togglebutton-new2-on.svg │ ├── twitter-logo.svg │ ├── unlistened.svg │ ├── vkontakte-logo.svg │ ├── volume.svg │ ├── wikipedia-logo.svg │ ├── wma-audio.svg │ ├── world-wide-web.svg │ └── youtube-logo.svg ├── Modern-Dark │ ├── 0stars.svg │ ├── 1stars.svg │ ├── 2stars.svg │ ├── 3stars.svg │ ├── 4stars.svg │ ├── 5stars.svg │ ├── aac-audio.svg │ ├── add.svg │ ├── alarmclock_false.svg │ ├── alarmclock_true.svg │ ├── allmusic-logo.svg │ ├── arrow-decrease.svg │ ├── arrow-increase.svg │ ├── arrow-left-double.svg │ ├── arrow-right-double.svg │ ├── arrow-updown.svg │ ├── artist-icon.png │ ├── audiobook.svg │ ├── backbutton.svg │ ├── bandcamp.svg │ ├── bbc-logo.svg │ ├── blobdown2-hi.svg │ ├── blobdown2.svg │ ├── bookmark.svg │ ├── broadcast-new.svg │ ├── calendar.svg │ ├── cd_case.svg │ ├── collection.svg │ ├── compact-disc.svg │ ├── consume.svg │ ├── consume_off.svg │ ├── crossfade.svg │ ├── crossfade_off.svg │ ├── dialog-error.svg │ ├── dialog-information.svg │ ├── discogs-logo.svg │ ├── document-save.svg │ ├── download-icon.svg │ ├── edit-clear-list.svg │ ├── edit-delete.svg │ ├── expand-up.svg │ ├── facebook-logo.svg │ ├── ffwd.svg │ ├── file.svg │ ├── flac-audio.svg │ ├── folder.svg │ ├── forwardbutton.svg │ ├── gmusic-logo.svg │ ├── headphones.svg │ ├── history.svg │ ├── icon-new.svg │ ├── imdb-logo.svg │ ├── instagram.svg │ ├── internetarchive-logo.svg │ ├── interrupt.svg │ ├── lastfm-ban.svg │ ├── lastfm-love.svg │ ├── lastfm-unlove.svg │ ├── lastfm.svg │ ├── lyrics.svg │ ├── media-playback-pause-highlight.svg │ ├── media-playback-pause.svg │ ├── media-playback-start-highlight.svg │ ├── media-playback-start.svg │ ├── media-playback-stop-highlight.svg │ ├── media-playback-stop.svg │ ├── media-skip-backward-highlight.svg │ ├── media-skip-backward.svg │ ├── media-skip-forward-highlight.svg │ ├── media-skip-forward.svg │ ├── movie-1.svg │ ├── mp3-audio.svg │ ├── musicbrainz_logo.svg │ ├── neverheard.png │ ├── ogg-audio.svg │ ├── output.svg │ ├── output_mute.svg │ ├── padlock.svg │ ├── padlock_open.svg │ ├── parental-advisory.svg │ ├── playlist.svg │ ├── podcast-logo.svg │ ├── preferences.svg │ ├── pushbutton.svg │ ├── qobuz-logo.svg │ ├── random.svg │ ├── random_off.svg │ ├── ratandtag.svg │ ├── ratortag.svg │ ├── refresh.svg │ ├── refresh_off.svg │ ├── resize.svg │ ├── rewind.svg │ ├── rss.svg │ ├── shuffle.png │ ├── singlestar.svg │ ├── sleep.png │ ├── sliders.svg │ ├── smartradio.svg │ ├── soundcloud-logo.svg │ ├── spinner.svg │ ├── spotify-logo.svg │ ├── stopafter-highlight.svg │ ├── stopafter.svg │ ├── system-search.svg │ ├── tag.svg │ ├── theme.css │ ├── tick.svg │ ├── toggle-closed.svg │ ├── toggle-open.svg │ ├── togglebutton-new2-off.svg │ ├── togglebutton-new2-on.svg │ ├── twitter-logo.svg │ ├── unlistened.svg │ ├── vkontakte-logo.svg │ ├── volume.svg │ ├── wikipedia-logo.svg │ ├── wma-audio.svg │ ├── world-wide-web.svg │ └── youtube-logo.svg ├── Modern-Light │ ├── 0stars.svg │ ├── 1stars.svg │ ├── 2stars.svg │ ├── 3stars.svg │ ├── 4stars.svg │ ├── 5stars.svg │ ├── aac-audio.svg │ ├── add.svg │ ├── alarmclock_false.svg │ ├── alarmclock_true.svg │ ├── allmusic-logo.svg │ ├── arrow-decrease.svg │ ├── arrow-increase.svg │ ├── arrow-left-double.svg │ ├── arrow-right-double.svg │ ├── arrow-updown.svg │ ├── artist-icon.png │ ├── audiobook.svg │ ├── backbutton.svg │ ├── bandcamp.svg │ ├── bbc-logo.svg │ ├── blobdown3-hi.svg │ ├── blobdown3.svg │ ├── bookmark.svg │ ├── broadcast-new.svg │ ├── calendar.svg │ ├── cd_case.svg │ ├── collection.svg │ ├── compact-disc.svg │ ├── consume.svg │ ├── consume_off.svg │ ├── crossfade.svg │ ├── crossfade_off.svg │ ├── dialog-error.svg │ ├── dialog-information.svg │ ├── discogs-logo.svg │ ├── document-save.svg │ ├── download-icon.svg │ ├── edit-clear-list.svg │ ├── edit-delete.svg │ ├── expand-up.svg │ ├── facebook-logo.svg │ ├── ffwd.svg │ ├── file.svg │ ├── flac-audio.svg │ ├── folder.svg │ ├── forwardbutton.svg │ ├── gmusic-logo.svg │ ├── headphones.svg │ ├── history.svg │ ├── icon-new.svg │ ├── imdb-logo.svg │ ├── instagram.svg │ ├── internetarchive-logo.svg │ ├── interrupt.svg │ ├── lastfm-ban.svg │ ├── lastfm-love.svg │ ├── lastfm-unlove.svg │ ├── lastfm.svg │ ├── lyrics.svg │ ├── media-playback-pause.svg │ ├── media-playback-start.svg │ ├── media-playback-stop.svg │ ├── media-skip-backward.svg │ ├── media-skip-forward.svg │ ├── movie-1.svg │ ├── mp3-audio.svg │ ├── musicbrainz_logo.svg │ ├── neverheard.png │ ├── ogg-audio.svg │ ├── output.svg │ ├── output_mute.svg │ ├── padlock.svg │ ├── padlock_open.svg │ ├── parental-advisory.svg │ ├── playlist.svg │ ├── podcast-logo.svg │ ├── preferences.svg │ ├── pushbutton.svg │ ├── qobuz-logo.svg │ ├── random.svg │ ├── random_off.svg │ ├── ratandtag.svg │ ├── ratortag.svg │ ├── refresh.svg │ ├── refresh_off.svg │ ├── resize.svg │ ├── rewind.svg │ ├── rss.svg │ ├── shuffle.png │ ├── singlestar.svg │ ├── sleep.png │ ├── sliders.svg │ ├── smartradio.svg │ ├── soundcloud-logo.svg │ ├── spinner.svg │ ├── spotify-logo.svg │ ├── stopafter-highlight.svg │ ├── stopafter.svg │ ├── system-search.svg │ ├── tag.svg │ ├── theme.css │ ├── tick.svg │ ├── toggle-closed.svg │ ├── toggle-open.svg │ ├── togglebutton-new2-off.svg │ ├── togglebutton-new2-on.svg │ ├── twitter-logo.svg │ ├── unlistened.svg │ ├── vkontakte-logo.svg │ ├── volume.svg │ ├── wikipedia-logo.svg │ ├── wma-audio.svg │ ├── world-wide-web.svg │ └── youtube-logo.svg ├── New-Cyan-Circled │ ├── 0stars.svg │ ├── 1stars.svg │ ├── 2stars.svg │ ├── 3stars.svg │ ├── 4stars.svg │ ├── 5stars.svg │ ├── aac-audio.svg │ ├── add.svg │ ├── alarmclock_false.svg │ ├── alarmclock_true.svg │ ├── allmusic-logo.svg │ ├── arrow-decrease.svg │ ├── arrow-increase.svg │ ├── arrow-left-double.svg │ ├── arrow-right-double.svg │ ├── arrow-updown.svg │ ├── artist-icon.svg │ ├── audiobook.svg │ ├── backbutton.svg │ ├── bandcamp.svg │ ├── bbc-logo.svg │ ├── blobdown3-hi.svg │ ├── blobdown3.svg │ ├── bookmark.svg │ ├── broadcast-new.svg │ ├── calendar.svg │ ├── cd_case.svg │ ├── collection.svg │ ├── compact-disc.svg │ ├── consume.svg │ ├── consume_off.svg │ ├── crossfade.svg │ ├── crossfade_off.svg │ ├── dialog-error.svg │ ├── dialog-information.svg │ ├── discogs-logo.svg │ ├── document-save.svg │ ├── download-icon.svg │ ├── edit-clear-list.svg │ ├── edit-delete.svg │ ├── expand-up.svg │ ├── facebook-logo.svg │ ├── ffwd.svg │ ├── file.svg │ ├── flac-audio.svg │ ├── folder.svg │ ├── forwardbutton.svg │ ├── gmusic-logo.svg │ ├── headphones.svg │ ├── history.svg │ ├── icon-new.svg │ ├── imdb-logo.svg │ ├── instagram.svg │ ├── internetarchive-logo.svg │ ├── interrupt.svg │ ├── lastfm-ban.svg │ ├── lastfm-love.svg │ ├── lastfm-unlove.svg │ ├── lastfm.svg │ ├── lyrics.svg │ ├── media-playback-pause-highlight.svg │ ├── media-playback-pause.svg │ ├── media-playback-start-highlight.svg │ ├── media-playback-start.svg │ ├── media-playback-stop-highlight.svg │ ├── media-playback-stop.svg │ ├── media-skip-backward-highlight.svg │ ├── media-skip-backward.svg │ ├── media-skip-forward-highlight.svg │ ├── media-skip-forward.svg │ ├── movie-1.svg │ ├── mp3-audio.svg │ ├── musicbrainz_logo.svg │ ├── neverheard.svg │ ├── ogg-audio.svg │ ├── output.svg │ ├── output_mute.svg │ ├── padlock.svg │ ├── padlock_open.svg │ ├── parental-advisory.svg │ ├── playlist.svg │ ├── podcast-logo.svg │ ├── preferences.svg │ ├── pushbutton.svg │ ├── qobuz-logo.svg │ ├── ratandtag.svg │ ├── ratortag.svg │ ├── refresh.svg │ ├── refresh_off.svg │ ├── resize.svg │ ├── rewind.svg │ ├── rss.svg │ ├── shuffle.svg │ ├── shuffle_off.svg │ ├── singlestar.svg │ ├── sleep.svg │ ├── sliders.svg │ ├── smartradio.svg │ ├── soundcloud-logo.svg │ ├── spinner.svg │ ├── spotify-logo.svg │ ├── stopafter-highlight.svg │ ├── stopafter.svg │ ├── system-search.svg │ ├── tag.svg │ ├── theme.css │ ├── tick.svg │ ├── toggle-closed.svg │ ├── toggle-open.svg │ ├── togglebutton-new2-off.svg │ ├── togglebutton-new2-on.svg │ ├── twitter-logo.svg │ ├── unlistened.svg │ ├── vkontakte-logo.svg │ ├── volume.svg │ ├── wikipedia-logo.svg │ ├── wma-audio.svg │ ├── world-wide-web.svg │ └── youtube-logo.svg ├── New-Dark-Circled │ ├── 0stars.svg │ ├── 1stars.svg │ ├── 2stars.svg │ ├── 3stars.svg │ ├── 4stars.svg │ ├── 5stars.svg │ ├── aac-audio.svg │ ├── add.svg │ ├── alarmclock_false.svg │ ├── alarmclock_true.svg │ ├── allmusic-logo.svg │ ├── arrow-decrease.svg │ ├── arrow-increase.svg │ ├── arrow-left-double.svg │ ├── arrow-right-double.svg │ ├── arrow-updown.svg │ ├── artist-icon.svg │ ├── audiobook.svg │ ├── backbutton.svg │ ├── bandcamp.svg │ ├── bbc-logo.svg │ ├── blobdown3-hi.svg │ ├── blobdown3.svg │ ├── bookmark.svg │ ├── broadcast-new.svg │ ├── calendar.svg │ ├── cd_case.svg │ ├── collection.svg │ ├── compact-disc.svg │ ├── consume.svg │ ├── consume_off.svg │ ├── crossfade.svg │ ├── crossfade_off.svg │ ├── dialog-error.svg │ ├── dialog-information.svg │ ├── discogs-logo.svg │ ├── document-save.svg │ ├── download-icon.svg │ ├── edit-clear-list.svg │ ├── edit-delete.svg │ ├── expand-up.svg │ ├── facebook-logo.svg │ ├── ffwd.svg │ ├── file.svg │ ├── flac-audio.svg │ ├── folder.svg │ ├── forwardbutton.svg │ ├── gmusic-logo.svg │ ├── headphones.svg │ ├── history.svg │ ├── icon-new.svg │ ├── imdb-logo.svg │ ├── instagram.svg │ ├── internetarchive-logo.svg │ ├── interrupt.svg │ ├── lastfm-ban.svg │ ├── lastfm-love.svg │ ├── lastfm-unlove.svg │ ├── lastfm.svg │ ├── lyrics.svg │ ├── media-playback-pause-highlight.svg │ ├── media-playback-pause.svg │ ├── media-playback-start-highlight.svg │ ├── media-playback-start.svg │ ├── media-playback-stop-highlight.svg │ ├── media-playback-stop.svg │ ├── media-skip-backward-highlight.svg │ ├── media-skip-backward.svg │ ├── media-skip-forward-highlight.svg │ ├── media-skip-forward.svg │ ├── movie-1.svg │ ├── mp3-audio.svg │ ├── musicbrainz_logo.svg │ ├── neverheard.svg │ ├── ogg-audio.svg │ ├── output.svg │ ├── output_mute.svg │ ├── padlock.svg │ ├── padlock_open.svg │ ├── parental-advisory.svg │ ├── playlist.svg │ ├── podcast-logo.svg │ ├── preferences.svg │ ├── pushbutton.svg │ ├── qobuz-logo.svg │ ├── ratandtag.svg │ ├── ratortag.svg │ ├── refresh.svg │ ├── refresh_off.svg │ ├── resize.svg │ ├── rewind.svg │ ├── rss.svg │ ├── shuffle.svg │ ├── shuffle_off.svg │ ├── singlestar.svg │ ├── sleep.svg │ ├── sliders.svg │ ├── smartradio.svg │ ├── soundcloud-logo.svg │ ├── spinner.svg │ ├── spotify-logo.svg │ ├── stopafter-highlight.svg │ ├── stopafter.svg │ ├── system-search.svg │ ├── tag.svg │ ├── theme.css │ ├── tick.svg │ ├── toggle-closed.svg │ ├── toggle-open.svg │ ├── togglebutton-new2-off.svg │ ├── togglebutton-new2-on.svg │ ├── twitter-logo.svg │ ├── unlistened.svg │ ├── vkontakte-logo.svg │ ├── volume.svg │ ├── wikipedia-logo.svg │ ├── wma-audio.svg │ ├── world-wide-web.svg │ └── youtube-logo.svg ├── New-Light-Circled │ ├── 0stars.svg │ ├── 1stars.svg │ ├── 2stars.svg │ ├── 3stars.svg │ ├── 4stars.svg │ ├── 5stars.svg │ ├── aac-audio.svg │ ├── add.svg │ ├── alarmclock_false.svg │ ├── alarmclock_true.svg │ ├── allmusic-logo.svg │ ├── arrow-decrease.svg │ ├── arrow-increase.svg │ ├── arrow-left-double.svg │ ├── arrow-right-double.svg │ ├── arrow-updown.svg │ ├── artist-icon.svg │ ├── audiobook.svg │ ├── backbutton.svg │ ├── bandcamp.svg │ ├── bbc-logo.svg │ ├── blobdown3-hi.svg │ ├── blobdown3.svg │ ├── bookmark.svg │ ├── broadcast-new.svg │ ├── calendar.svg │ ├── cd_case.svg │ ├── collection.svg │ ├── compact-disc.svg │ ├── consume.svg │ ├── consume_off.svg │ ├── crossfade.svg │ ├── crossfade_off.svg │ ├── dialog-error.svg │ ├── dialog-information.svg │ ├── discogs-logo.svg │ ├── document-save.svg │ ├── download-icon.svg │ ├── edit-clear-list.svg │ ├── edit-delete.svg │ ├── expand-up.svg │ ├── facebook-logo.svg │ ├── ffwd.svg │ ├── file.svg │ ├── flac-audio.svg │ ├── folder.svg │ ├── forwardbutton.svg │ ├── gmusic-logo.svg │ ├── headphones.svg │ ├── history.svg │ ├── icon-new.svg │ ├── imdb-logo.svg │ ├── instagram.svg │ ├── internetarchive-logo.svg │ ├── interrupt.svg │ ├── lastfm-ban.svg │ ├── lastfm-love.svg │ ├── lastfm-unlove.svg │ ├── lastfm.svg │ ├── lyrics.svg │ ├── media-playback-pause-highlight.svg │ ├── media-playback-pause.svg │ ├── media-playback-start-highlight.svg │ ├── media-playback-start.svg │ ├── media-playback-stop-highlight.svg │ ├── media-playback-stop.svg │ ├── media-skip-backward-highlight.svg │ ├── media-skip-backward.svg │ ├── media-skip-forward-highlight.svg │ ├── media-skip-forward.svg │ ├── movie-1.svg │ ├── mp3-audio.svg │ ├── musicbrainz_logo.svg │ ├── neverheard.svg │ ├── ogg-audio.svg │ ├── output.svg │ ├── output_mute.svg │ ├── padlock.svg │ ├── padlock_open.svg │ ├── parental-advisory.svg │ ├── playlist.svg │ ├── podcast-logo.svg │ ├── preferences.svg │ ├── pushbutton.svg │ ├── qobuz-logo.svg │ ├── ratandtag.svg │ ├── ratortag.svg │ ├── refresh.svg │ ├── refresh_off.svg │ ├── resize.svg │ ├── rewind.svg │ ├── rss.svg │ ├── shuffle.svg │ ├── shuffle_off.svg │ ├── singlestar.svg │ ├── sleep.svg │ ├── sliders.svg │ ├── smartradio.svg │ ├── soundcloud-logo.svg │ ├── spinner.svg │ ├── spotify-logo.svg │ ├── stopafter-highlight.svg │ ├── stopafter.svg │ ├── system-search.svg │ ├── tag.svg │ ├── theme.css │ ├── tick.svg │ ├── toggle-closed.svg │ ├── toggle-open.svg │ ├── togglebutton-new2-off.svg │ ├── togglebutton-new2-on.svg │ ├── twitter-logo.svg │ ├── unlistened.svg │ ├── vkontakte-logo.svg │ ├── volume.svg │ ├── wikipedia-logo.svg │ ├── wma-audio.svg │ ├── world-wide-web.svg │ └── youtube-logo.svg ├── New-Orange-Circled │ ├── 0stars.svg │ ├── 1stars.svg │ ├── 2stars.svg │ ├── 3stars.svg │ ├── 4stars.svg │ ├── 5stars.svg │ ├── aac-audio.svg │ ├── add.svg │ ├── alarmclock_false.svg │ ├── alarmclock_true.svg │ ├── allmusic-logo.svg │ ├── arrow-decrease.svg │ ├── arrow-increase.svg │ ├── arrow-left-double.svg │ ├── arrow-right-double.svg │ ├── arrow-updown.svg │ ├── artist-icon.svg │ ├── audiobook.svg │ ├── backbutton.svg │ ├── bandcamp.svg │ ├── bbc-logo.svg │ ├── blobdown3-hi.svg │ ├── blobdown3.svg │ ├── bookmark.svg │ ├── broadcast-new.svg │ ├── calendar.svg │ ├── cd_case.svg │ ├── collection.svg │ ├── compact-disc.svg │ ├── consume.svg │ ├── consume_off.svg │ ├── crossfade.svg │ ├── crossfade_off.svg │ ├── dialog-error.svg │ ├── dialog-information.svg │ ├── discogs-logo.svg │ ├── document-save.svg │ ├── download-icon.svg │ ├── edit-clear-list.svg │ ├── edit-delete.svg │ ├── expand-up.svg │ ├── facebook-logo.svg │ ├── ffwd.svg │ ├── file.svg │ ├── flac-audio.svg │ ├── folder.svg │ ├── forwardbutton.svg │ ├── gmusic-logo.svg │ ├── headphones.svg │ ├── history.svg │ ├── icon-new.svg │ ├── imdb-logo.svg │ ├── instagram.svg │ ├── internetarchive-logo.svg │ ├── interrupt.svg │ ├── lastfm-ban.svg │ ├── lastfm-love.svg │ ├── lastfm-unlove.svg │ ├── lastfm.svg │ ├── lyrics.svg │ ├── media-playback-pause-highlight.svg │ ├── media-playback-pause.svg │ ├── media-playback-start-highlight.svg │ ├── media-playback-start.svg │ ├── media-playback-stop-highlight.svg │ ├── media-playback-stop.svg │ ├── media-skip-backward-highlight.svg │ ├── media-skip-backward.svg │ ├── media-skip-forward-highlight.svg │ ├── media-skip-forward.svg │ ├── movie-1.svg │ ├── mp3-audio.svg │ ├── musicbrainz_logo.svg │ ├── neverheard.svg │ ├── ogg-audio.svg │ ├── output.svg │ ├── output_mute.svg │ ├── padlock.svg │ ├── padlock_open.svg │ ├── parental-advisory.svg │ ├── playlist.svg │ ├── podcast-logo.svg │ ├── preferences.svg │ ├── pushbutton.svg │ ├── qobuz-logo.svg │ ├── ratandtag.svg │ ├── ratortag.svg │ ├── refresh.svg │ ├── refresh_off.svg │ ├── resize.svg │ ├── rewind.svg │ ├── rss.svg │ ├── shuffle.svg │ ├── shuffle_off.svg │ ├── singlestar.svg │ ├── sleep.svg │ ├── sliders.svg │ ├── smartradio.svg │ ├── soundcloud-logo.svg │ ├── spinner.svg │ ├── spotify-logo.svg │ ├── stopafter-highlight.svg │ ├── stopafter.svg │ ├── system-search.svg │ ├── tag.svg │ ├── theme.css │ ├── tick.svg │ ├── toggle-closed.svg │ ├── toggle-open.svg │ ├── togglebutton-new2-off.svg │ ├── togglebutton-new2-on.svg │ ├── twitter-logo.svg │ ├── unlistened.svg │ ├── vkontakte-logo.svg │ ├── volume.svg │ ├── wikipedia-logo.svg │ ├── wma-audio.svg │ ├── world-wide-web.svg │ └── youtube-logo.svg ├── Purpletrator │ ├── 0stars.svg │ ├── 1stars.svg │ ├── 2stars.svg │ ├── 3stars.svg │ ├── 4stars.svg │ ├── 5stars.svg │ ├── aac-audio.svg │ ├── add.svg │ ├── alarmclock_false.svg │ ├── alarmclock_true.svg │ ├── allmusic-logo.svg │ ├── arrow-decrease.svg │ ├── arrow-increase.svg │ ├── arrow-left-double.svg │ ├── arrow-right-double.svg │ ├── arrow-updown.svg │ ├── artist-icon.svg │ ├── audiobook.svg │ ├── backbutton.svg │ ├── bandcamp.svg │ ├── bbc-logo.svg │ ├── blobdown3-hi.svg │ ├── blobdown3.svg │ ├── bookmark.svg │ ├── broadcast-new.svg │ ├── calendar.svg │ ├── cd_case.svg │ ├── collection.svg │ ├── compact-disc.svg │ ├── consume.svg │ ├── consume_off.svg │ ├── crossfade.svg │ ├── crossfade_off.svg │ ├── dialog-error.svg │ ├── dialog-information.svg │ ├── discogs-logo.svg │ ├── document-save.svg │ ├── download-icon.svg │ ├── edit-clear-list.svg │ ├── edit-delete.svg │ ├── expand-up.svg │ ├── facebook-logo.svg │ ├── ffwd.svg │ ├── file.svg │ ├── flac-audio.svg │ ├── folder.svg │ ├── forwardbutton.svg │ ├── gmusic-logo.svg │ ├── headphones.svg │ ├── history.svg │ ├── icon-new.svg │ ├── imdb-logo.svg │ ├── instagram.svg │ ├── internetarchive-logo.svg │ ├── interrupt.svg │ ├── lastfm-ban.svg │ ├── lastfm-love.svg │ ├── lastfm-unlove.svg │ ├── lastfm.svg │ ├── lyrics.svg │ ├── media-playback-pause-highlight.svg │ ├── media-playback-pause.svg │ ├── media-playback-start-highlight.svg │ ├── media-playback-start.svg │ ├── media-playback-stop-highlight.svg │ ├── media-playback-stop.svg │ ├── media-skip-backward-highlight.svg │ ├── media-skip-backward.svg │ ├── media-skip-forward-highlight.svg │ ├── media-skip-forward.svg │ ├── movie-1.svg │ ├── mp3-audio.svg │ ├── musicbrainz_logo.svg │ ├── neverheard.svg │ ├── ogg-audio.svg │ ├── output.svg │ ├── output_mute.svg │ ├── padlock.svg │ ├── padlock_open.svg │ ├── parental-advisory.svg │ ├── playlist.svg │ ├── podcast-logo.svg │ ├── preferences.svg │ ├── pushbutton.svg │ ├── qobuz-logo.svg │ ├── ratandtag.svg │ ├── ratortag.svg │ ├── refresh.svg │ ├── refresh_off.svg │ ├── resize.svg │ ├── rewind.svg │ ├── rss.svg │ ├── shuffle.svg │ ├── shuffle_off.svg │ ├── singlestar.svg │ ├── sleep.svg │ ├── sliders.svg │ ├── smartradio.svg │ ├── soundcloud-logo.svg │ ├── spinner.svg │ ├── spotify-logo.svg │ ├── stopafter-highlight.svg │ ├── stopafter.svg │ ├── system-search.svg │ ├── tag.svg │ ├── theme.css │ ├── tick.svg │ ├── toggle-closed.svg │ ├── toggle-open.svg │ ├── togglebutton-new2-off.svg │ ├── togglebutton-new2-on.svg │ ├── twitter-logo.svg │ ├── unlistened.svg │ ├── vkontakte-logo.svg │ ├── volume.svg │ ├── wikipedia-logo.svg │ ├── wma-audio.svg │ ├── world-wide-web.svg │ └── youtube-logo.svg ├── Slush-Dark │ ├── 0stars.svg │ ├── 1stars.svg │ ├── 2stars.svg │ ├── 3stars.svg │ ├── 4stars.svg │ ├── 5stars.svg │ ├── aac-audio.svg │ ├── add.svg │ ├── alarmclock_false.svg │ ├── alarmclock_true.svg │ ├── allmusic-logo.svg │ ├── arrow-decrease.svg │ ├── arrow-increase.svg │ ├── arrow-left-double.svg │ ├── arrow-right-double.svg │ ├── arrow-updown.svg │ ├── artist-icon.svg │ ├── audiobook.svg │ ├── backbutton.svg │ ├── bandcamp.svg │ ├── bbc-logo.svg │ ├── blobdown2-hi.svg │ ├── blobdown2.svg │ ├── bookmark.svg │ ├── broadcast-new.svg │ ├── calendar.svg │ ├── cd_case.svg │ ├── collection.svg │ ├── compact-disc.svg │ ├── consume.svg │ ├── consume_off.svg │ ├── crossfade.svg │ ├── crossfade_off.svg │ ├── dialog-error.svg │ ├── dialog-information.svg │ ├── discogs-logo.svg │ ├── document-save.svg │ ├── download-icon.svg │ ├── edit-clear-list.svg │ ├── edit-delete.svg │ ├── expand-up.svg │ ├── facebook-logo.svg │ ├── ffwd.svg │ ├── file.svg │ ├── flac-audio.svg │ ├── folder.svg │ ├── forwardbutton.svg │ ├── gmusic-logo.svg │ ├── headphones.svg │ ├── history.svg │ ├── icon-new.svg │ ├── imdb-logo.svg │ ├── instagram.svg │ ├── internetarchive-logo.svg │ ├── interrupt.svg │ ├── lastfm-ban.svg │ ├── lastfm-love.svg │ ├── lastfm-unlove.svg │ ├── lastfm.svg │ ├── lyrics.svg │ ├── media-playback-pause-highlight.svg │ ├── media-playback-pause.svg │ ├── media-playback-start-highlight.svg │ ├── media-playback-start.svg │ ├── media-playback-stop-highlight.svg │ ├── media-playback-stop.svg │ ├── media-skip-backward-highlight.svg │ ├── media-skip-backward.svg │ ├── media-skip-forward-highlight.svg │ ├── media-skip-forward.svg │ ├── movie-1.svg │ ├── mp3-audio.svg │ ├── musicbrainz_logo.svg │ ├── neverheard.svg │ ├── ogg-audio.svg │ ├── output.svg │ ├── output_mute.svg │ ├── padlock.svg │ ├── padlock_open.svg │ ├── parental-advisory.svg │ ├── playlist.svg │ ├── podcast-logo.svg │ ├── preferences.svg │ ├── pushbutton.svg │ ├── qobuz-logo.svg │ ├── random.svg │ ├── random_off.svg │ ├── ratandtag.svg │ ├── ratortag.svg │ ├── refresh.svg │ ├── refresh_off.svg │ ├── resize.svg │ ├── rewind.svg │ ├── rss.svg │ ├── shuffle.svg │ ├── singlestar.svg │ ├── sleep.svg │ ├── sliders.svg │ ├── smartradio.svg │ ├── soundcloud-logo.svg │ ├── spinner.svg │ ├── spotify-logo.svg │ ├── stopafter-highlight.svg │ ├── stopafter.svg │ ├── system-search.svg │ ├── tag.svg │ ├── theme.css │ ├── tick.svg │ ├── toggle-closed.svg │ ├── toggle-open.svg │ ├── togglebutton-new2-off.svg │ ├── togglebutton-new2-on.svg │ ├── twitter-logo.svg │ ├── unlistened.svg │ ├── vkontakte-logo.svg │ ├── volume.svg │ ├── wikipedia-logo.svg │ ├── wma-audio.svg │ ├── world-wide-web.svg │ └── youtube-logo.svg ├── Slush-Fire │ ├── 0stars.svg │ ├── 1stars.svg │ ├── 2stars.svg │ ├── 3stars.svg │ ├── 4stars.svg │ ├── 5stars.svg │ ├── aac-audio.svg │ ├── add.svg │ ├── alarmclock_false.svg │ ├── alarmclock_true.svg │ ├── allmusic-logo.svg │ ├── arrow-decrease.svg │ ├── arrow-increase.svg │ ├── arrow-left-double.svg │ ├── arrow-right-double.svg │ ├── arrow-updown.svg │ ├── artist-icon.svg │ ├── audiobook.svg │ ├── backbutton.svg │ ├── bandcamp.svg │ ├── bbc-logo.svg │ ├── blobdown2-hi.svg │ ├── blobdown2.svg │ ├── bookmark.svg │ ├── broadcast-new.svg │ ├── calendar.svg │ ├── cd_case.svg │ ├── collection.svg │ ├── compact-disc.svg │ ├── consume.svg │ ├── consume_off.svg │ ├── crossfade.svg │ ├── crossfade_off.svg │ ├── dialog-error.svg │ ├── dialog-information.svg │ ├── discogs-logo.svg │ ├── document-save.svg │ ├── download-icon.svg │ ├── edit-clear-list.svg │ ├── edit-delete.svg │ ├── expand-up.svg │ ├── facebook-logo.svg │ ├── ffwd.svg │ ├── file.svg │ ├── flac-audio.svg │ ├── folder.svg │ ├── forwardbutton.svg │ ├── gmusic-logo.svg │ ├── headphones.svg │ ├── history.svg │ ├── icon-new.svg │ ├── imdb-logo.svg │ ├── instagram.svg │ ├── internetarchive-logo.svg │ ├── interrupt.svg │ ├── lastfm-ban.svg │ ├── lastfm-love.svg │ ├── lastfm-unlove.svg │ ├── lastfm.svg │ ├── lyrics.svg │ ├── media-playback-pause-highlight.svg │ ├── media-playback-pause.svg │ ├── media-playback-start-highlight.svg │ ├── media-playback-start.svg │ ├── media-playback-stop-highlight.svg │ ├── media-playback-stop.svg │ ├── media-skip-backward-highlight.svg │ ├── media-skip-backward.svg │ ├── media-skip-forward-highlight.svg │ ├── media-skip-forward.svg │ ├── movie-1.svg │ ├── mp3-audio.svg │ ├── musicbrainz_logo.svg │ ├── neverheard.svg │ ├── ogg-audio.svg │ ├── output.svg │ ├── output_mute.svg │ ├── padlock.svg │ ├── padlock_open.svg │ ├── parental-advisory.svg │ ├── playlist.svg │ ├── podcast-logo.svg │ ├── preferences.svg │ ├── pushbutton.svg │ ├── qobuz-logo.svg │ ├── random.svg │ ├── random_off.svg │ ├── ratandtag.svg │ ├── ratortag.svg │ ├── refresh.svg │ ├── refresh_off.svg │ ├── resize.svg │ ├── rewind.svg │ ├── rss.svg │ ├── shuffle.svg │ ├── singlestar.svg │ ├── sleep.svg │ ├── sliders.svg │ ├── smartradio.svg │ ├── soundcloud-logo.svg │ ├── spinner.svg │ ├── spotify-logo.svg │ ├── stopafter-highlight.svg │ ├── stopafter.svg │ ├── system-search.svg │ ├── tag.svg │ ├── theme.css │ ├── tick.svg │ ├── toggle-closed.svg │ ├── toggle-open.svg │ ├── togglebutton-new2-off.svg │ ├── togglebutton-new2-on.svg │ ├── twitter-logo.svg │ ├── unlistened.svg │ ├── vkontakte-logo.svg │ ├── volume.svg │ ├── wikipedia-logo.svg │ ├── wma-audio.svg │ ├── world-wide-web.svg │ └── youtube-logo.svg ├── Slush-Purple │ ├── 0stars.svg │ ├── 1stars.svg │ ├── 2stars.svg │ ├── 3stars.svg │ ├── 4stars.svg │ ├── 5stars.svg │ ├── aac-audio.svg │ ├── add.svg │ ├── alarmclock_false.svg │ ├── alarmclock_true.svg │ ├── allmusic-logo.svg │ ├── arrow-decrease.svg │ ├── arrow-increase.svg │ ├── arrow-left-double.svg │ ├── arrow-right-double.svg │ ├── arrow-updown.svg │ ├── artist-icon.svg │ ├── audiobook.svg │ ├── backbutton.svg │ ├── bandcamp.svg │ ├── bbc-logo.svg │ ├── blobdown2-hi.svg │ ├── blobdown2.svg │ ├── bookmark.svg │ ├── broadcast-new.svg │ ├── calendar.svg │ ├── cd_case.svg │ ├── collection.svg │ ├── compact-disc.svg │ ├── consume.svg │ ├── consume_off.svg │ ├── crossfade.svg │ ├── crossfade_off.svg │ ├── dialog-error.svg │ ├── dialog-information.svg │ ├── discogs-logo.svg │ ├── document-save.svg │ ├── download-icon.svg │ ├── edit-clear-list.svg │ ├── edit-delete.svg │ ├── expand-up.svg │ ├── facebook-logo.svg │ ├── ffwd.svg │ ├── file.svg │ ├── flac-audio.svg │ ├── folder.svg │ ├── forwardbutton.svg │ ├── gmusic-logo.svg │ ├── headphones.svg │ ├── history.svg │ ├── icon-new.svg │ ├── imdb-logo.svg │ ├── instagram.svg │ ├── internetarchive-logo.svg │ ├── interrupt.svg │ ├── lastfm-ban.svg │ ├── lastfm-love.svg │ ├── lastfm-unlove.svg │ ├── lastfm.svg │ ├── lyrics.svg │ ├── media-playback-pause-highlight.svg │ ├── media-playback-pause.svg │ ├── media-playback-start-highlight.svg │ ├── media-playback-start.svg │ ├── media-playback-stop-highlight.svg │ ├── media-playback-stop.svg │ ├── media-skip-backward-highlight.svg │ ├── media-skip-backward.svg │ ├── media-skip-forward-highlight.svg │ ├── media-skip-forward.svg │ ├── movie-1.svg │ ├── mp3-audio.svg │ ├── musicbrainz_logo.svg │ ├── neverheard.svg │ ├── ogg-audio.svg │ ├── output.svg │ ├── output_mute.svg │ ├── padlock.svg │ ├── padlock_open.svg │ ├── parental-advisory.svg │ ├── playlist.svg │ ├── podcast-logo.svg │ ├── preferences.svg │ ├── pushbutton.svg │ ├── qobuz-logo.svg │ ├── random.svg │ ├── random_off.svg │ ├── ratandtag.svg │ ├── ratortag.svg │ ├── refresh.svg │ ├── refresh_off.svg │ ├── resize.svg │ ├── rewind.svg │ ├── rss.svg │ ├── shuffle.svg │ ├── singlestar.svg │ ├── sleep.svg │ ├── sliders.svg │ ├── smartradio.svg │ ├── soundcloud-logo.svg │ ├── spinner.svg │ ├── spotify-logo.svg │ ├── stopafter-highlight.svg │ ├── stopafter.svg │ ├── system-search.svg │ ├── tag.svg │ ├── theme.css │ ├── tick.svg │ ├── toggle-closed.svg │ ├── toggle-open.svg │ ├── togglebutton-new2-off.svg │ ├── togglebutton-new2-on.svg │ ├── twitter-logo.svg │ ├── unlistened.svg │ ├── vkontakte-logo.svg │ ├── volume.svg │ ├── wikipedia-logo.svg │ ├── wma-audio.svg │ ├── world-wide-web.svg │ └── youtube-logo.svg ├── Slush │ ├── 0stars.svg │ ├── 1stars.svg │ ├── 2stars.svg │ ├── 3stars.svg │ ├── 4stars.svg │ ├── 5stars.svg │ ├── aac-audio.svg │ ├── add.svg │ ├── alarmclock_false.svg │ ├── alarmclock_true.svg │ ├── allmusic-logo.svg │ ├── arrow-decrease.svg │ ├── arrow-increase.svg │ ├── arrow-left-double.svg │ ├── arrow-right-double.svg │ ├── arrow-updown.svg │ ├── artist-icon.svg │ ├── audiobook.svg │ ├── backbutton.svg │ ├── bandcamp.svg │ ├── bbc-logo.svg │ ├── blobdown2-hi.svg │ ├── blobdown2.svg │ ├── bookmark.svg │ ├── broadcast-new.svg │ ├── calendar.svg │ ├── cd_case.svg │ ├── collection.svg │ ├── compact-disc.svg │ ├── consume.svg │ ├── consume_off.svg │ ├── crossfade.svg │ ├── crossfade_off.svg │ ├── dialog-error.svg │ ├── dialog-information.svg │ ├── discogs-logo.svg │ ├── document-save.svg │ ├── download-icon.svg │ ├── edit-clear-list.svg │ ├── edit-delete.svg │ ├── expand-up.svg │ ├── facebook-logo.svg │ ├── ffwd.svg │ ├── file.svg │ ├── flac-audio.svg │ ├── folder.svg │ ├── forwardbutton.svg │ ├── gmusic-logo.svg │ ├── headphones.svg │ ├── history.svg │ ├── icon-new.svg │ ├── imdb-logo.svg │ ├── instagram.svg │ ├── internetarchive-logo.svg │ ├── interrupt.svg │ ├── lastfm-ban.svg │ ├── lastfm-love.svg │ ├── lastfm-unlove.svg │ ├── lastfm.svg │ ├── lyrics.svg │ ├── media-playback-pause-highlight.svg │ ├── media-playback-pause.svg │ ├── media-playback-start-highlight.svg │ ├── media-playback-start.svg │ ├── media-playback-stop-highlight.svg │ ├── media-playback-stop.svg │ ├── media-skip-backward-highlight.svg │ ├── media-skip-backward.svg │ ├── media-skip-forward-highlight.svg │ ├── media-skip-forward.svg │ ├── movie-1.svg │ ├── mp3-audio.svg │ ├── musicbrainz_logo.svg │ ├── neverheard.svg │ ├── ogg-audio.svg │ ├── output.svg │ ├── output_mute.svg │ ├── padlock.svg │ ├── padlock_open.svg │ ├── parental-advisory.svg │ ├── playlist.svg │ ├── podcast-logo.svg │ ├── preferences.svg │ ├── pushbutton.svg │ ├── qobuz-logo.svg │ ├── random.svg │ ├── random_off.svg │ ├── ratandtag.svg │ ├── ratortag.svg │ ├── refresh.svg │ ├── refresh_off.svg │ ├── resize.svg │ ├── rewind.svg │ ├── rss.svg │ ├── shuffle.svg │ ├── singlestar.svg │ ├── sleep.svg │ ├── sliders.svg │ ├── smartradio.svg │ ├── soundcloud-logo.svg │ ├── spinner.svg │ ├── spotify-logo.svg │ ├── stopafter-highlight.svg │ ├── stopafter.svg │ ├── system-search.svg │ ├── tag.svg │ ├── theme.css │ ├── tick.svg │ ├── toggle-closed.svg │ ├── toggle-open.svg │ ├── togglebutton-new2-off.svg │ ├── togglebutton-new2-on.svg │ ├── twitter-logo.svg │ ├── unlistened.svg │ ├── vkontakte-logo.svg │ ├── volume.svg │ ├── wikipedia-logo.svg │ ├── wma-audio.svg │ ├── world-wide-web.svg │ └── youtube-logo.svg └── colourconverter.php ├── includes ├── MobileDetect.php ├── about.html ├── begging.html ├── constants.php ├── firstrun.php ├── functions.php ├── globals.js ├── javascript_globals.class.php ├── license.html ├── loadprefs.php ├── logger.class.php ├── podcast_base.php ├── prefs.class.php ├── search_handler.class.php └── vars.php ├── index.php ├── international ├── de-DE.php ├── en-GB.php ├── fr-FR.php ├── it-IT.php ├── pirate.php ├── pl-PL.php ├── ru-RU.php ├── sr-YU.php └── zh-CN.php ├── jquery ├── imagesloaded.pkgd.min.js ├── jquery-3.6.4.min.js ├── jquery-migrate-3.3.2.min.js ├── jquery-ui.min.js ├── jquery.hotkeys.js ├── jquery.mCustomScrollbar.concat.min-3.1.5.js ├── jquery.scrollTo.min.js └── masonry.pkgd.min.js ├── jshash-2.2 └── md5-min.js ├── manifest.webmanifest ├── newimages ├── artist-icon.png ├── broadcast.svg ├── commradio.svg ├── compact-disc.png ├── discoverweekly.jpg ├── favicon-114.png ├── favicon-120.png ├── favicon-128.png ├── favicon-144.png ├── favicon-152.png ├── favicon-16.png ├── favicon-180.png ├── favicon-196.png ├── favicon-32.png ├── favicon-48.png ├── favicon-64.png ├── favicon-72.png ├── favicon-76.png ├── favicon.ico ├── icecast.svg ├── imgnotfound.svg ├── lastfm-icon.png ├── lastfm-logo.png ├── mCSB_buttons.png ├── podcast-logo.svg ├── radio.svg ├── snapcast_800.png ├── snapcast_800_white.png ├── somafmlogo.svg ├── soundcloud-logo.svg ├── spotify-icon.png ├── transparent.png ├── tunein-logo.svg ├── vinyl_record.svg └── youtube-logo.svg ├── phpinfo.php ├── player ├── base_mpd_player.class.php ├── controller.js ├── mopidy │ ├── checkprogress.js │ ├── player.class.php │ └── streamplaylisthandler.php ├── mpd │ ├── checkprogress.js │ ├── mpd_websocket.py │ ├── player.class.php │ └── streamplaylisthandler.php ├── player.js ├── transferplaylist.php └── utils │ ├── loadplaylists.php │ └── outputs.php ├── plugins ├── alarmclock.js ├── backend │ ├── cantata_importer.class.php │ ├── get_wishlist.class.php │ ├── lfm_importer.class.php │ └── opml_io.class.php ├── code │ ├── albumstolistento.js │ ├── backimagemanager.js │ ├── canimporter.php │ ├── cantataimporter.js │ ├── charts.js │ ├── getunplayable.php │ ├── getwishlist.php │ ├── helpfulthings.js │ ├── lfmimporter.js │ ├── lfmimporter.php │ ├── metaBackup.js │ ├── opmlImporter.js │ ├── opmlexport.php │ ├── opmluploader.php │ ├── pollcani.php │ ├── recentlyplayed.js │ ├── recentlyplayed.php │ └── wishlistviewer.js ├── dynamic.js ├── sleeptimer.js ├── zzz-aboutrompr.js └── zzzz-debuginfo.js ├── radios ├── 00_builtins.js ├── api │ ├── loadcustom.php │ ├── savecustom.php │ └── starRadios.php ├── backend │ ├── collection_radio.class.php │ ├── everywhere_radio.class.php │ ├── fave_artist_radio.class.php │ ├── lastfm_radio.class.php │ ├── mix_radio.class.php │ ├── smart_radio.class.php │ └── spoti_rec_radio.class.php ├── code │ ├── faveartistradio.js │ ├── genreradio.js │ ├── lastfmartistradio.js │ ├── lastfmtrackradio.js │ ├── mixradio.js │ ├── recommendationsradio.js │ ├── singleartistradio.js │ ├── spotirecradio.js │ └── starRadios.js ├── customradio.js ├── musicfromeverywhere.js └── spotifyradio.js ├── resources ├── http_status_codes.txt ├── iso3166.xml └── iso639.json ├── romonitor.php ├── rompr_backend.php ├── search ├── a_search_player.class.php ├── d_search_podcasts.class.php ├── g_search_commradio.class.php └── m_search_tunein.class.php ├── setupscreen.php ├── skins ├── desktop │ ├── controlbuttons.css │ ├── skin.css │ ├── skin.js │ ├── skin.php │ └── uibits.class.php ├── phone │ ├── controlbuttons.css │ ├── skin.css │ ├── skin.js │ ├── skin.php │ └── uibits.class.php ├── playlistpanel.class.php ├── prefspanel.class.php ├── skypotato │ ├── skin.css │ ├── skin.js │ ├── skin.php │ └── uibits.class.php └── ui_elements.class.php ├── sleeptimer.php ├── snapcast └── snapcast.js ├── snoozer.php ├── speedtest.php ├── streamplugins ├── 000_header.php ├── 00_yourradio.php ├── 01_somafm.php ├── 03_tuneinradio.php ├── 04_communityradio.php ├── classes │ └── commradioplugin.class.php ├── communityradio.js ├── somafm.js ├── tuneinradio.js └── yourradio.js ├── sw.js ├── theme_base ├── colour_theme.css └── image_theme.css ├── themes ├── Acers.css ├── Aqua.css ├── BrushedAluminium.css ├── Crystals.css ├── Crystals.jpg ├── Curves.css ├── Darkness.css ├── DarknessHiDPI.css ├── ElegantGrey.css ├── Field.css ├── Fire.css ├── Flatworld.css ├── Leaf.css ├── Leafinity.css ├── MistySunset.css ├── Mountains.css ├── Negative.css ├── Numismatist.css ├── Oxygen.css ├── Paper.css ├── Paper1.jpg ├── Plasma.css ├── RelaxingBlue.css ├── ShootingStars.css ├── Skytrails.css ├── Sunburst.css ├── Sunset.css ├── SunsetLoch.css ├── Table.css ├── VariableLight.css ├── VariableLight.css.js ├── acers2.jpg ├── bg.jpg ├── cloudy_ls.jpg ├── cloudy_pt.jpg ├── field.jpg ├── fire-portrait.jpg ├── fire.jpg ├── leaf.jpg ├── leafinity.jpg ├── mountains.jpg ├── oldpaper.jpg ├── plasma.jpg ├── plasma_portrait.jpg ├── shootingstars.jpg ├── silver1.jpg ├── silver2.jpg ├── skytrailscrop.jpg ├── sunset_loch.jpg ├── sunsetbirds.jpg ├── table.jpg ├── table_portrait.jpg ├── tanpaper.jpg └── vellum-seamless-repeating-white.jpg ├── timezones.txt ├── ui ├── albumart.js ├── clickfunctions.js ├── collectionhelper.js ├── coverscraper.js ├── debug.js ├── functions.js ├── hotkeys.js ├── infobar2.js ├── language.php ├── metahandlers.js ├── nowplaying.js ├── playlist.js ├── podcasts.js ├── prefs.js ├── readyhandlers.js ├── searchmanager.js ├── setupbits.js ├── uifunctions.js ├── uihelper.js └── widgets.js ├── updateinfo ├── 1.20 │ └── info.html ├── 1.22 │ └── info.html ├── 1.30 │ └── info.html ├── 1.33 │ └── info.html ├── 1.41 │ └── info.html ├── 1.52 │ └── info.html ├── 1.54 │ └── info.html ├── 1.58 │ └── info.html ├── 1.60 │ └── info.html └── 2.00 │ └── info.html ├── util_classes ├── albumimage.class.php ├── backgroundimages.class.php ├── basealbumimage.class.php ├── cache_cleaner.class.php ├── gd_image.class.php ├── image_archiver.class.php ├── imagefunctions.class.php ├── imagehandler.class.php ├── imagemagickimage.class.php ├── internetplaylist.class.php ├── language.class.php ├── minotaur.class.php └── url_downloader.class.php └── utils ├── archiveimages.php ├── checkServerTime.php ├── check_version.php ├── checklocalcover.php ├── checkpodcastdownload.php ├── checkrestoreprogress.php ├── checkupdateprogress.php ├── checkyoutubedownload.php ├── debuginfo.php ├── findLocalImages.php ├── findsmallimages.php ├── getUserPlaylist.php ├── getalbumcover.php ├── podcastupgrade.php ├── radioupgrade.php ├── update_albumart.php └── versioninfo.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/.gitignore -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/404.php -------------------------------------------------------------------------------- /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/README.md -------------------------------------------------------------------------------- /README_ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/README_ru.md -------------------------------------------------------------------------------- /_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/_header -------------------------------------------------------------------------------- /alarmclock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/alarmclock.php -------------------------------------------------------------------------------- /albumart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/albumart.php -------------------------------------------------------------------------------- /api/alarmclock/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/api/alarmclock/index.php -------------------------------------------------------------------------------- /api/collection/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/api/collection/index.php -------------------------------------------------------------------------------- /api/dirbrowser/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/api/dirbrowser/index.php -------------------------------------------------------------------------------- /api/metadata/backup/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/api/metadata/backup/index.php -------------------------------------------------------------------------------- /api/metadata/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/api/metadata/index.php -------------------------------------------------------------------------------- /api/metadata/query/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/api/metadata/query/index.php -------------------------------------------------------------------------------- /api/player/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/api/player/index.php -------------------------------------------------------------------------------- /api/podcasts/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/api/podcasts/index.php -------------------------------------------------------------------------------- /api/saveprefs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/api/saveprefs/index.php -------------------------------------------------------------------------------- /api/saveprefs/ui_defaults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/api/saveprefs/ui_defaults.php -------------------------------------------------------------------------------- /api/sleeptimer/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/api/sleeptimer/index.php -------------------------------------------------------------------------------- /api/tracklist/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/api/tracklist/index.php -------------------------------------------------------------------------------- /api/userbackgrounds/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/api/userbackgrounds/index.php -------------------------------------------------------------------------------- /api/yourradio/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/api/yourradio/index.php -------------------------------------------------------------------------------- /apitest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/apitest.php -------------------------------------------------------------------------------- /backends/sql/data_base.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/backends/sql/data_base.class.php -------------------------------------------------------------------------------- /backends/sql/metabackup.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/backends/sql/metabackup.class.php -------------------------------------------------------------------------------- /backends/sql/metaquery.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/backends/sql/metaquery.class.php -------------------------------------------------------------------------------- /backends/sql/podatabase.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/backends/sql/podatabase.class.php -------------------------------------------------------------------------------- /backends/sql/timers.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/backends/sql/timers.class.php -------------------------------------------------------------------------------- /browser/apis/brave.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/apis/brave.class.php -------------------------------------------------------------------------------- /browser/apis/discogs.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/apis/discogs.class.php -------------------------------------------------------------------------------- /browser/apis/lastfm.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/apis/lastfm.class.php -------------------------------------------------------------------------------- /browser/apis/soundcloud.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/apis/soundcloud.class.php -------------------------------------------------------------------------------- /browser/apis/spotify.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/apis/spotify.class.php -------------------------------------------------------------------------------- /browser/apis/wikidata.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/apis/wikidata.class.php -------------------------------------------------------------------------------- /browser/backends/api_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/backends/api_handler.php -------------------------------------------------------------------------------- /browser/backends/getBeetsInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/backends/getBeetsInfo.php -------------------------------------------------------------------------------- /browser/backends/getComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/backends/getComment.php -------------------------------------------------------------------------------- /browser/backends/getLyrics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/backends/getLyrics.php -------------------------------------------------------------------------------- /browser/backends/getambio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/backends/getambio.php -------------------------------------------------------------------------------- /browser/backends/getamimage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/backends/getamimage.php -------------------------------------------------------------------------------- /browser/helpers/brave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/helpers/brave.js -------------------------------------------------------------------------------- /browser/helpers/discogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/helpers/discogs.js -------------------------------------------------------------------------------- /browser/helpers/lastfm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/helpers/lastfm.js -------------------------------------------------------------------------------- /browser/helpers/musicbrainz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/helpers/musicbrainz.js -------------------------------------------------------------------------------- /browser/helpers/soundcloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/helpers/soundcloud.js -------------------------------------------------------------------------------- /browser/helpers/spotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/helpers/spotify.js -------------------------------------------------------------------------------- /browser/helpers/wikipedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/helpers/wikipedia.js -------------------------------------------------------------------------------- /browser/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/info.js -------------------------------------------------------------------------------- /browser/plugins/01_info_file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/plugins/01_info_file.js -------------------------------------------------------------------------------- /browser/plugins/02_info_lastfm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/plugins/02_info_lastfm.js -------------------------------------------------------------------------------- /browser/plugins/06_info_lyrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/plugins/06_info_lyrics.js -------------------------------------------------------------------------------- /browser/plugins/09_info_videos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/plugins/09_info_videos.js -------------------------------------------------------------------------------- /browser/plugins/info_ratings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/browser/plugins/info_ratings.js -------------------------------------------------------------------------------- /collection/album.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/collection/album.class.php -------------------------------------------------------------------------------- /collection/mpdlistthing.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/collection/mpdlistthing.class.php -------------------------------------------------------------------------------- /collection/track.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/collection/track.class.php -------------------------------------------------------------------------------- /css/00_layout-january.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/css/00_layout-january.css -------------------------------------------------------------------------------- /css/01_basic_elements.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/css/01_basic_elements.css -------------------------------------------------------------------------------- /css/10-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/css/10-icons.css -------------------------------------------------------------------------------- /css/20_animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/css/20_animations.css -------------------------------------------------------------------------------- /css/33_wikipedia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/css/33_wikipedia.css -------------------------------------------------------------------------------- /css/albumartmanager/albumart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/css/albumartmanager/albumart.css -------------------------------------------------------------------------------- /docs/Alarm-And-Sleep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Alarm-And-Sleep.md -------------------------------------------------------------------------------- /docs/Album-Art-Manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Album-Art-Manager.md -------------------------------------------------------------------------------- /docs/Albums-To-Listen-To.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Albums-To-Listen-To.md -------------------------------------------------------------------------------- /docs/Automating-RompR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Automating-RompR.md -------------------------------------------------------------------------------- /docs/Backend-Daemon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Backend-Daemon.md -------------------------------------------------------------------------------- /docs/Backing-Up-Your-Metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Backing-Up-Your-Metadata.md -------------------------------------------------------------------------------- /docs/Browser-Compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Browser-Compatibility.md -------------------------------------------------------------------------------- /docs/Cantata-Importer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Cantata-Importer.md -------------------------------------------------------------------------------- /docs/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Changelog.md -------------------------------------------------------------------------------- /docs/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Contributing.md -------------------------------------------------------------------------------- /docs/Desktop-Skin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Desktop-Skin.md -------------------------------------------------------------------------------- /docs/File-Browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/File-Browser.md -------------------------------------------------------------------------------- /docs/Installation-on-Android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Installation-on-Android.md -------------------------------------------------------------------------------- /docs/Installation-on-macOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Installation-on-macOS.md -------------------------------------------------------------------------------- /docs/Installation-with-Docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Installation-with-Docker.md -------------------------------------------------------------------------------- /docs/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Installation.md -------------------------------------------------------------------------------- /docs/Internet-Radio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Internet-Radio.md -------------------------------------------------------------------------------- /docs/Keyboard-Shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Keyboard-Shortcuts.md -------------------------------------------------------------------------------- /docs/LastFM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/LastFM.md -------------------------------------------------------------------------------- /docs/Music-Collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Music-Collection.md -------------------------------------------------------------------------------- /docs/Music-Discovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Music-Discovery.md -------------------------------------------------------------------------------- /docs/OPML-Importer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/OPML-Importer.md -------------------------------------------------------------------------------- /docs/Personalised-Radio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Personalised-Radio.md -------------------------------------------------------------------------------- /docs/Phone-Skin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Phone-Skin.md -------------------------------------------------------------------------------- /docs/Podcasts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Podcasts.md -------------------------------------------------------------------------------- /docs/Rompr-And-MPD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Rompr-And-MPD.md -------------------------------------------------------------------------------- /docs/Rompr-And-Mopidy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Rompr-And-Mopidy.md -------------------------------------------------------------------------------- /docs/Searching-For-Music.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Searching-For-Music.md -------------------------------------------------------------------------------- /docs/Skins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Skins.md -------------------------------------------------------------------------------- /docs/Skypotato-Skin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Skypotato-Skin.md -------------------------------------------------------------------------------- /docs/Spoken-Word.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Spoken-Word.md -------------------------------------------------------------------------------- /docs/The-Info-Panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/The-Info-Panel.md -------------------------------------------------------------------------------- /docs/The-Playlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/The-Playlist.md -------------------------------------------------------------------------------- /docs/The-Wishlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/The-Wishlist.md -------------------------------------------------------------------------------- /docs/Theming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Theming.md -------------------------------------------------------------------------------- /docs/Translating-Rompr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Translating-Rompr.md -------------------------------------------------------------------------------- /docs/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Troubleshooting.md -------------------------------------------------------------------------------- /docs/Using-Multiple-Players.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Using-Multiple-Players.md -------------------------------------------------------------------------------- /docs/Using-Saved-Playlists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Using-Saved-Playlists.md -------------------------------------------------------------------------------- /docs/Using-a-MySQL-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/Using-a-MySQL-server.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/assets/css/style.scss -------------------------------------------------------------------------------- /docs/images/alarmclock1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/alarmclock1.png -------------------------------------------------------------------------------- /docs/images/alarmclock2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/alarmclock2.png -------------------------------------------------------------------------------- /docs/images/alarmclock3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/alarmclock3.png -------------------------------------------------------------------------------- /docs/images/alarmclock4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/alarmclock4.png -------------------------------------------------------------------------------- /docs/images/alarmclock5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/alarmclock5.png -------------------------------------------------------------------------------- /docs/images/albumart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/albumart.png -------------------------------------------------------------------------------- /docs/images/albumart2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/albumart2.png -------------------------------------------------------------------------------- /docs/images/albummenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/albummenu.png -------------------------------------------------------------------------------- /docs/images/appearance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/appearance.png -------------------------------------------------------------------------------- /docs/images/atl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/atl.png -------------------------------------------------------------------------------- /docs/images/backimage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/backimage1.png -------------------------------------------------------------------------------- /docs/images/backimage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/backimage2.png -------------------------------------------------------------------------------- /docs/images/backimage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/backimage3.png -------------------------------------------------------------------------------- /docs/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/button.png -------------------------------------------------------------------------------- /docs/images/collectionnew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/collectionnew.png -------------------------------------------------------------------------------- /docs/images/collectionsetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/collectionsetup.png -------------------------------------------------------------------------------- /docs/images/commradio3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/commradio3.png -------------------------------------------------------------------------------- /docs/images/composersort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/composersort.png -------------------------------------------------------------------------------- /docs/images/consumearound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/consumearound.png -------------------------------------------------------------------------------- /docs/images/cusrad1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/cusrad1.png -------------------------------------------------------------------------------- /docs/images/cusrad2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/cusrad2.png -------------------------------------------------------------------------------- /docs/images/cusradio3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/cusradio3.png -------------------------------------------------------------------------------- /docs/images/cusradio4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/cusradio4.png -------------------------------------------------------------------------------- /docs/images/cusradio5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/cusradio5.png -------------------------------------------------------------------------------- /docs/images/cusradio6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/cusradio6.png -------------------------------------------------------------------------------- /docs/images/darkness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/darkness.png -------------------------------------------------------------------------------- /docs/images/debuginfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/debuginfo.png -------------------------------------------------------------------------------- /docs/images/debugsetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/debugsetup.png -------------------------------------------------------------------------------- /docs/images/desktopskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/desktopskin.png -------------------------------------------------------------------------------- /docs/images/download-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/download-icon.png -------------------------------------------------------------------------------- /docs/images/favicon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/favicon-128.png -------------------------------------------------------------------------------- /docs/images/filebrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/filebrowser.png -------------------------------------------------------------------------------- /docs/images/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/fire.png -------------------------------------------------------------------------------- /docs/images/infopanel1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/infopanel1.png -------------------------------------------------------------------------------- /docs/images/infopanel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/infopanel2.png -------------------------------------------------------------------------------- /docs/images/infopanel3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/infopanel3.png -------------------------------------------------------------------------------- /docs/images/infopanel4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/infopanel4.png -------------------------------------------------------------------------------- /docs/images/infopanel5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/infopanel5.png -------------------------------------------------------------------------------- /docs/images/ipad-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/ipad-landscape.png -------------------------------------------------------------------------------- /docs/images/ipad-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/ipad-portrait.png -------------------------------------------------------------------------------- /docs/images/iphone4-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/iphone4-landscape.png -------------------------------------------------------------------------------- /docs/images/iphone5-albums.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/iphone5-albums.png -------------------------------------------------------------------------------- /docs/images/iphone5-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/iphone5-portrait.png -------------------------------------------------------------------------------- /docs/images/iphonemove1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/iphonemove1.png -------------------------------------------------------------------------------- /docs/images/landscape-tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/landscape-tablet.png -------------------------------------------------------------------------------- /docs/images/lastfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/lastfm.png -------------------------------------------------------------------------------- /docs/images/lastfmsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/lastfmsync.png -------------------------------------------------------------------------------- /docs/images/lfmsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/lfmsync.png -------------------------------------------------------------------------------- /docs/images/lyrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/lyrics.png -------------------------------------------------------------------------------- /docs/images/metabackup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/metabackup.png -------------------------------------------------------------------------------- /docs/images/mopcolbeets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/mopcolbeets.png -------------------------------------------------------------------------------- /docs/images/mpd_on_ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/mpd_on_ws.png -------------------------------------------------------------------------------- /docs/images/mpdsocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/mpdsocket.png -------------------------------------------------------------------------------- /docs/images/musicfromspotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/musicfromspotify.png -------------------------------------------------------------------------------- /docs/images/nodaemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/nodaemon.png -------------------------------------------------------------------------------- /docs/images/numismatist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/numismatist.png -------------------------------------------------------------------------------- /docs/images/opmlimporter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/opmlimporter1.png -------------------------------------------------------------------------------- /docs/images/opmlimporter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/opmlimporter2.png -------------------------------------------------------------------------------- /docs/images/personal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/personal2.png -------------------------------------------------------------------------------- /docs/images/personalradio1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/personalradio1.png -------------------------------------------------------------------------------- /docs/images/phone-album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/phone-album.png -------------------------------------------------------------------------------- /docs/images/playerdefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/playerdefs.png -------------------------------------------------------------------------------- /docs/images/players2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/players2.png -------------------------------------------------------------------------------- /docs/images/players3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/players3.png -------------------------------------------------------------------------------- /docs/images/players4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/players4.png -------------------------------------------------------------------------------- /docs/images/playersetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/playersetup.png -------------------------------------------------------------------------------- /docs/images/playlist1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/playlist1.png -------------------------------------------------------------------------------- /docs/images/playlistmpd1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/playlistmpd1.png -------------------------------------------------------------------------------- /docs/images/playlists1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/playlists1.png -------------------------------------------------------------------------------- /docs/images/playlists3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/playlists3.png -------------------------------------------------------------------------------- /docs/images/podcast6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/podcast6.png -------------------------------------------------------------------------------- /docs/images/podcastcontrols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/podcastcontrols.png -------------------------------------------------------------------------------- /docs/images/podcasts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/podcasts1.png -------------------------------------------------------------------------------- /docs/images/podcasts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/podcasts3.png -------------------------------------------------------------------------------- /docs/images/podcasts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/podcasts4.png -------------------------------------------------------------------------------- /docs/images/podcasts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/podcasts5.png -------------------------------------------------------------------------------- /docs/images/podcasts6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/podcasts6.png -------------------------------------------------------------------------------- /docs/images/podcastsort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/podcastsort.png -------------------------------------------------------------------------------- /docs/images/podresume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/podresume.png -------------------------------------------------------------------------------- /docs/images/proxysetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/proxysetup.png -------------------------------------------------------------------------------- /docs/images/remoteplaylist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/remoteplaylist.png -------------------------------------------------------------------------------- /docs/images/rollyourown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/rollyourown.png -------------------------------------------------------------------------------- /docs/images/rompr-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/rompr-1.png -------------------------------------------------------------------------------- /docs/images/search6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/search6.png -------------------------------------------------------------------------------- /docs/images/search9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/search9.png -------------------------------------------------------------------------------- /docs/images/shortcuts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/shortcuts1.png -------------------------------------------------------------------------------- /docs/images/skypotato1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/skypotato1.png -------------------------------------------------------------------------------- /docs/images/skypotato2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/skypotato2.png -------------------------------------------------------------------------------- /docs/images/sleeptimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/sleeptimer.png -------------------------------------------------------------------------------- /docs/images/sleeptimer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/sleeptimer2.png -------------------------------------------------------------------------------- /docs/images/snapcast1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/snapcast1d.png -------------------------------------------------------------------------------- /docs/images/snapcast1e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/snapcast1e.png -------------------------------------------------------------------------------- /docs/images/snapcast3c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/snapcast3c.png -------------------------------------------------------------------------------- /docs/images/snapcast4c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/snapcast4c.png -------------------------------------------------------------------------------- /docs/images/somafm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/somafm.png -------------------------------------------------------------------------------- /docs/images/spoken-word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/spoken-word.png -------------------------------------------------------------------------------- /docs/images/spokenword2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/spokenword2.png -------------------------------------------------------------------------------- /docs/images/spokenword3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/spokenword3.png -------------------------------------------------------------------------------- /docs/images/spokenword4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/spokenword4.png -------------------------------------------------------------------------------- /docs/images/spokenword5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/spokenword5.png -------------------------------------------------------------------------------- /docs/images/spotifyinfo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/spotifyinfo2.png -------------------------------------------------------------------------------- /docs/images/taggedtrack1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/taggedtrack1.png -------------------------------------------------------------------------------- /docs/images/taggedtrack2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/taggedtrack2.png -------------------------------------------------------------------------------- /docs/images/timeout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/timeout.png -------------------------------------------------------------------------------- /docs/images/trackinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/trackinfo.png -------------------------------------------------------------------------------- /docs/images/tunein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/tunein.png -------------------------------------------------------------------------------- /docs/images/unplayable1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/unplayable1.png -------------------------------------------------------------------------------- /docs/images/unplayable2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/unplayable2.png -------------------------------------------------------------------------------- /docs/images/upcomingtracks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/upcomingtracks.png -------------------------------------------------------------------------------- /docs/images/wishlist1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/wishlist1.png -------------------------------------------------------------------------------- /docs/images/wishlist2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/wishlist2.png -------------------------------------------------------------------------------- /docs/images/yourradio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/yourradio.png -------------------------------------------------------------------------------- /docs/images/yourradio2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/yourradio2.png -------------------------------------------------------------------------------- /docs/images/yourradio3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/yourradio3.png -------------------------------------------------------------------------------- /docs/images/youtubedl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/images/youtubedl.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/macOS-With-Nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/macOS-With-Nginx.md -------------------------------------------------------------------------------- /docs/snapcast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/docs/snapcast.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/favicon.ico -------------------------------------------------------------------------------- /fonts/Alegreya.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Alegreya.css -------------------------------------------------------------------------------- /fonts/AppleGothic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/AppleGothic.css -------------------------------------------------------------------------------- /fonts/ArimaMadurai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/ArimaMadurai.css -------------------------------------------------------------------------------- /fonts/Audiowide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Audiowide.css -------------------------------------------------------------------------------- /fonts/Baloo 2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Baloo 2.css -------------------------------------------------------------------------------- /fonts/Baskerville.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Baskerville.css -------------------------------------------------------------------------------- /fonts/Cabin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Cabin.css -------------------------------------------------------------------------------- /fonts/Calibri.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Calibri.css -------------------------------------------------------------------------------- /fonts/Calisto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Calisto.css -------------------------------------------------------------------------------- /fonts/Comfortaa.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Comfortaa.css -------------------------------------------------------------------------------- /fonts/Comic Neue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Comic Neue.css -------------------------------------------------------------------------------- /fonts/Copperplate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Copperplate.css -------------------------------------------------------------------------------- /fonts/CormorantGaramond.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/CormorantGaramond.css -------------------------------------------------------------------------------- /fonts/Crimson Text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Crimson Text.css -------------------------------------------------------------------------------- /fonts/Darker Grotesque.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Darker Grotesque.css -------------------------------------------------------------------------------- /fonts/Delius.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Delius.css -------------------------------------------------------------------------------- /fonts/Dosis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Dosis.css -------------------------------------------------------------------------------- /fonts/Fahkwang.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Fahkwang.css -------------------------------------------------------------------------------- /fonts/Fantasy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Fantasy.css -------------------------------------------------------------------------------- /fonts/Futura.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Futura.css -------------------------------------------------------------------------------- /fonts/Garamond.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Garamond.css -------------------------------------------------------------------------------- /fonts/Geneva.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Geneva.css -------------------------------------------------------------------------------- /fonts/Georgia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Georgia.css -------------------------------------------------------------------------------- /fonts/GillSans.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/GillSans.css -------------------------------------------------------------------------------- /fonts/Goldman.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Goldman.css -------------------------------------------------------------------------------- /fonts/Handwriting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Handwriting.css -------------------------------------------------------------------------------- /fonts/Herculanum.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Herculanum.css -------------------------------------------------------------------------------- /fonts/IBMPlexSans.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/IBMPlexSans.css -------------------------------------------------------------------------------- /fonts/IBMPlexSerif.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/IBMPlexSerif.css -------------------------------------------------------------------------------- /fonts/Inconsolata.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Inconsolata.css -------------------------------------------------------------------------------- /fonts/Itim.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Itim.css -------------------------------------------------------------------------------- /fonts/JosefinSans.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/JosefinSans.css -------------------------------------------------------------------------------- /fonts/JosefinSlab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/JosefinSlab.css -------------------------------------------------------------------------------- /fonts/Libre Franklin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Libre Franklin.css -------------------------------------------------------------------------------- /fonts/Lora.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Lora.css -------------------------------------------------------------------------------- /fonts/Lucida.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Lucida.css -------------------------------------------------------------------------------- /fonts/Luminari.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Luminari.css -------------------------------------------------------------------------------- /fonts/Marker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Marker.css -------------------------------------------------------------------------------- /fonts/Mirza.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Mirza.css -------------------------------------------------------------------------------- /fonts/Monospace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Monospace.css -------------------------------------------------------------------------------- /fonts/Montserrat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Montserrat.css -------------------------------------------------------------------------------- /fonts/Mukta.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Mukta.css -------------------------------------------------------------------------------- /fonts/Muli.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Muli.css -------------------------------------------------------------------------------- /fonts/Noteworthy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Noteworthy.css -------------------------------------------------------------------------------- /fonts/NoticiaText.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/NoticiaText.css -------------------------------------------------------------------------------- /fonts/Nunito Sans.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Nunito Sans.css -------------------------------------------------------------------------------- /fonts/Nunito.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Nunito.css -------------------------------------------------------------------------------- /fonts/Optima.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Optima.css -------------------------------------------------------------------------------- /fonts/Overlock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Overlock.css -------------------------------------------------------------------------------- /fonts/OverlockSC.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/OverlockSC.css -------------------------------------------------------------------------------- /fonts/PT Sans Narrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/PT Sans Narrow.css -------------------------------------------------------------------------------- /fonts/PT Sans.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/PT Sans.css -------------------------------------------------------------------------------- /fonts/Palatino.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Palatino.css -------------------------------------------------------------------------------- /fonts/Papyrus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Papyrus.css -------------------------------------------------------------------------------- /fonts/Patrick Hand.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Patrick Hand.css -------------------------------------------------------------------------------- /fonts/Playfair Display.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Playfair Display.css -------------------------------------------------------------------------------- /fonts/Pompiere.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Pompiere.css -------------------------------------------------------------------------------- /fonts/Poppins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Poppins.css -------------------------------------------------------------------------------- /fonts/Qucksand.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Qucksand.css -------------------------------------------------------------------------------- /fonts/Quintessential.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Quintessential.css -------------------------------------------------------------------------------- /fonts/Raleway.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Raleway.css -------------------------------------------------------------------------------- /fonts/Righteous.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Righteous.css -------------------------------------------------------------------------------- /fonts/Roboto Condensed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Roboto Condensed.css -------------------------------------------------------------------------------- /fonts/Rockwell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Rockwell.css -------------------------------------------------------------------------------- /fonts/Rubik.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Rubik.css -------------------------------------------------------------------------------- /fonts/Savoye.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Savoye.css -------------------------------------------------------------------------------- /fonts/Script.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Script.css -------------------------------------------------------------------------------- /fonts/Skia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Skia.css -------------------------------------------------------------------------------- /fonts/Source Sans Pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Source Sans Pro.css -------------------------------------------------------------------------------- /fonts/Special Elite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Special Elite.css -------------------------------------------------------------------------------- /fonts/Tahoma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Tahoma.css -------------------------------------------------------------------------------- /fonts/Tamil.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Tamil.css -------------------------------------------------------------------------------- /fonts/Times.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Times.css -------------------------------------------------------------------------------- /fonts/Titilium Web.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Titilium Web.css -------------------------------------------------------------------------------- /fonts/Trattatello.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Trattatello.css -------------------------------------------------------------------------------- /fonts/Ubuntu Mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Ubuntu Mono.css -------------------------------------------------------------------------------- /fonts/Ubuntu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Ubuntu.css -------------------------------------------------------------------------------- /fonts/Verdana.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Verdana.css -------------------------------------------------------------------------------- /fonts/Xanh Mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/fonts/Xanh Mono.css -------------------------------------------------------------------------------- /getRemoteImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getRemoteImage.php -------------------------------------------------------------------------------- /getShrunkImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getShrunkImage.php -------------------------------------------------------------------------------- /get_css.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/get_css.php -------------------------------------------------------------------------------- /getid3/extension.cache.dbm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/extension.cache.dbm.php -------------------------------------------------------------------------------- /getid3/getid3.lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/getid3.lib.php -------------------------------------------------------------------------------- /getid3/getid3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/getid3.php -------------------------------------------------------------------------------- /getid3/module.archive.gzip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.archive.gzip.php -------------------------------------------------------------------------------- /getid3/module.archive.hpk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.archive.hpk.php -------------------------------------------------------------------------------- /getid3/module.archive.rar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.archive.rar.php -------------------------------------------------------------------------------- /getid3/module.archive.szip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.archive.szip.php -------------------------------------------------------------------------------- /getid3/module.archive.tar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.archive.tar.php -------------------------------------------------------------------------------- /getid3/module.archive.xz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.archive.xz.php -------------------------------------------------------------------------------- /getid3/module.archive.zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.archive.zip.php -------------------------------------------------------------------------------- /getid3/module.audio.aa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.aa.php -------------------------------------------------------------------------------- /getid3/module.audio.aac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.aac.php -------------------------------------------------------------------------------- /getid3/module.audio.ac3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.ac3.php -------------------------------------------------------------------------------- /getid3/module.audio.amr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.amr.php -------------------------------------------------------------------------------- /getid3/module.audio.au.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.au.php -------------------------------------------------------------------------------- /getid3/module.audio.avr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.avr.php -------------------------------------------------------------------------------- /getid3/module.audio.bonk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.bonk.php -------------------------------------------------------------------------------- /getid3/module.audio.dsdiff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.dsdiff.php -------------------------------------------------------------------------------- /getid3/module.audio.dsf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.dsf.php -------------------------------------------------------------------------------- /getid3/module.audio.dss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.dss.php -------------------------------------------------------------------------------- /getid3/module.audio.dts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.dts.php -------------------------------------------------------------------------------- /getid3/module.audio.flac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.flac.php -------------------------------------------------------------------------------- /getid3/module.audio.la.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.la.php -------------------------------------------------------------------------------- /getid3/module.audio.lpac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.lpac.php -------------------------------------------------------------------------------- /getid3/module.audio.midi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.midi.php -------------------------------------------------------------------------------- /getid3/module.audio.mod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.mod.php -------------------------------------------------------------------------------- /getid3/module.audio.monkey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.monkey.php -------------------------------------------------------------------------------- /getid3/module.audio.mp3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.mp3.php -------------------------------------------------------------------------------- /getid3/module.audio.mpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.mpc.php -------------------------------------------------------------------------------- /getid3/module.audio.ogg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.ogg.php -------------------------------------------------------------------------------- /getid3/module.audio.rkau.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.rkau.php -------------------------------------------------------------------------------- /getid3/module.audio.tak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.tak.php -------------------------------------------------------------------------------- /getid3/module.audio.tta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.tta.php -------------------------------------------------------------------------------- /getid3/module.audio.voc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.voc.php -------------------------------------------------------------------------------- /getid3/module.audio.vqf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.audio.vqf.php -------------------------------------------------------------------------------- /getid3/module.graphic.bmp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.graphic.bmp.php -------------------------------------------------------------------------------- /getid3/module.graphic.efax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.graphic.efax.php -------------------------------------------------------------------------------- /getid3/module.graphic.gif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.graphic.gif.php -------------------------------------------------------------------------------- /getid3/module.graphic.jpg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.graphic.jpg.php -------------------------------------------------------------------------------- /getid3/module.graphic.pcd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.graphic.pcd.php -------------------------------------------------------------------------------- /getid3/module.graphic.png.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.graphic.png.php -------------------------------------------------------------------------------- /getid3/module.graphic.svg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.graphic.svg.php -------------------------------------------------------------------------------- /getid3/module.graphic.tiff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.graphic.tiff.php -------------------------------------------------------------------------------- /getid3/module.misc.cue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.misc.cue.php -------------------------------------------------------------------------------- /getid3/module.misc.exe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.misc.exe.php -------------------------------------------------------------------------------- /getid3/module.misc.iso.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.misc.iso.php -------------------------------------------------------------------------------- /getid3/module.misc.par2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.misc.par2.php -------------------------------------------------------------------------------- /getid3/module.misc.pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.misc.pdf.php -------------------------------------------------------------------------------- /getid3/module.misc.torrent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.misc.torrent.php -------------------------------------------------------------------------------- /getid3/module.tag.apetag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.tag.apetag.php -------------------------------------------------------------------------------- /getid3/module.tag.id3v1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.tag.id3v1.php -------------------------------------------------------------------------------- /getid3/module.tag.id3v2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.tag.id3v2.php -------------------------------------------------------------------------------- /getid3/module.tag.lyrics3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.tag.lyrics3.php -------------------------------------------------------------------------------- /getid3/module.tag.xmp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/module.tag.xmp.php -------------------------------------------------------------------------------- /getid3/write.apetag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/write.apetag.php -------------------------------------------------------------------------------- /getid3/write.id3v1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/write.id3v1.php -------------------------------------------------------------------------------- /getid3/write.id3v2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/write.id3v2.php -------------------------------------------------------------------------------- /getid3/write.lyrics3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/write.lyrics3.php -------------------------------------------------------------------------------- /getid3/write.metaflac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/write.metaflac.php -------------------------------------------------------------------------------- /getid3/write.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/write.php -------------------------------------------------------------------------------- /getid3/write.real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/write.real.php -------------------------------------------------------------------------------- /getid3/write.vorbiscomment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/getid3/write.vorbiscomment.php -------------------------------------------------------------------------------- /gettheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/gettheme.php -------------------------------------------------------------------------------- /iconsets/Bobalofire/0stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/0stars.svg -------------------------------------------------------------------------------- /iconsets/Bobalofire/1stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/1stars.svg -------------------------------------------------------------------------------- /iconsets/Bobalofire/2stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/2stars.svg -------------------------------------------------------------------------------- /iconsets/Bobalofire/3stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/3stars.svg -------------------------------------------------------------------------------- /iconsets/Bobalofire/4stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/4stars.svg -------------------------------------------------------------------------------- /iconsets/Bobalofire/5stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/5stars.svg -------------------------------------------------------------------------------- /iconsets/Bobalofire/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/add.svg -------------------------------------------------------------------------------- /iconsets/Bobalofire/ffwd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/ffwd.svg -------------------------------------------------------------------------------- /iconsets/Bobalofire/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/file.svg -------------------------------------------------------------------------------- /iconsets/Bobalofire/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/folder.svg -------------------------------------------------------------------------------- /iconsets/Bobalofire/lastfm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/lastfm.svg -------------------------------------------------------------------------------- /iconsets/Bobalofire/lyrics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/lyrics.svg -------------------------------------------------------------------------------- /iconsets/Bobalofire/output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/output.svg -------------------------------------------------------------------------------- /iconsets/Bobalofire/random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/random.svg -------------------------------------------------------------------------------- /iconsets/Bobalofire/resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/resize.svg -------------------------------------------------------------------------------- /iconsets/Bobalofire/rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/rewind.svg -------------------------------------------------------------------------------- /iconsets/Bobalofire/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/rss.svg -------------------------------------------------------------------------------- /iconsets/Bobalofire/sleep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/sleep.svg -------------------------------------------------------------------------------- /iconsets/Bobalofire/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/tag.svg -------------------------------------------------------------------------------- /iconsets/Bobalofire/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/theme.css -------------------------------------------------------------------------------- /iconsets/Bobalofire/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/tick.svg -------------------------------------------------------------------------------- /iconsets/Bobalofire/volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Bobalofire/volume.svg -------------------------------------------------------------------------------- /iconsets/Colourful/0stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/0stars.svg -------------------------------------------------------------------------------- /iconsets/Colourful/1stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/1stars.svg -------------------------------------------------------------------------------- /iconsets/Colourful/2stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/2stars.svg -------------------------------------------------------------------------------- /iconsets/Colourful/3stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/3stars.svg -------------------------------------------------------------------------------- /iconsets/Colourful/4stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/4stars.svg -------------------------------------------------------------------------------- /iconsets/Colourful/5stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/5stars.svg -------------------------------------------------------------------------------- /iconsets/Colourful/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/add.svg -------------------------------------------------------------------------------- /iconsets/Colourful/cd_case.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/cd_case.svg -------------------------------------------------------------------------------- /iconsets/Colourful/consume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/consume.svg -------------------------------------------------------------------------------- /iconsets/Colourful/ffwd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/ffwd.svg -------------------------------------------------------------------------------- /iconsets/Colourful/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/file.svg -------------------------------------------------------------------------------- /iconsets/Colourful/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/folder.svg -------------------------------------------------------------------------------- /iconsets/Colourful/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/history.svg -------------------------------------------------------------------------------- /iconsets/Colourful/lastfm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/lastfm.svg -------------------------------------------------------------------------------- /iconsets/Colourful/lyrics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/lyrics.svg -------------------------------------------------------------------------------- /iconsets/Colourful/movie-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/movie-1.svg -------------------------------------------------------------------------------- /iconsets/Colourful/output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/output.svg -------------------------------------------------------------------------------- /iconsets/Colourful/padlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/padlock.svg -------------------------------------------------------------------------------- /iconsets/Colourful/random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/random.svg -------------------------------------------------------------------------------- /iconsets/Colourful/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/refresh.svg -------------------------------------------------------------------------------- /iconsets/Colourful/resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/resize.svg -------------------------------------------------------------------------------- /iconsets/Colourful/rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/rewind.svg -------------------------------------------------------------------------------- /iconsets/Colourful/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/rss.svg -------------------------------------------------------------------------------- /iconsets/Colourful/shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/shuffle.png -------------------------------------------------------------------------------- /iconsets/Colourful/sleep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/sleep.svg -------------------------------------------------------------------------------- /iconsets/Colourful/sliders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/sliders.svg -------------------------------------------------------------------------------- /iconsets/Colourful/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/spinner.svg -------------------------------------------------------------------------------- /iconsets/Colourful/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/tag.svg -------------------------------------------------------------------------------- /iconsets/Colourful/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/theme.css -------------------------------------------------------------------------------- /iconsets/Colourful/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/tick.svg -------------------------------------------------------------------------------- /iconsets/Colourful/volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Colourful/volume.svg -------------------------------------------------------------------------------- /iconsets/Fiery/0stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/0stars.svg -------------------------------------------------------------------------------- /iconsets/Fiery/1stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/1stars.svg -------------------------------------------------------------------------------- /iconsets/Fiery/2stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/2stars.svg -------------------------------------------------------------------------------- /iconsets/Fiery/3stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/3stars.svg -------------------------------------------------------------------------------- /iconsets/Fiery/4stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/4stars.svg -------------------------------------------------------------------------------- /iconsets/Fiery/5stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/5stars.svg -------------------------------------------------------------------------------- /iconsets/Fiery/aac-audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/aac-audio.svg -------------------------------------------------------------------------------- /iconsets/Fiery/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/add.svg -------------------------------------------------------------------------------- /iconsets/Fiery/artist-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/artist-icon.svg -------------------------------------------------------------------------------- /iconsets/Fiery/audiobook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/audiobook.svg -------------------------------------------------------------------------------- /iconsets/Fiery/backbutton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/backbutton.svg -------------------------------------------------------------------------------- /iconsets/Fiery/bandcamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/bandcamp.svg -------------------------------------------------------------------------------- /iconsets/Fiery/bbc-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/bbc-logo.svg -------------------------------------------------------------------------------- /iconsets/Fiery/blobdown3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/blobdown3.svg -------------------------------------------------------------------------------- /iconsets/Fiery/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/bookmark.svg -------------------------------------------------------------------------------- /iconsets/Fiery/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/calendar.svg -------------------------------------------------------------------------------- /iconsets/Fiery/cd_case.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/cd_case.svg -------------------------------------------------------------------------------- /iconsets/Fiery/collection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/collection.svg -------------------------------------------------------------------------------- /iconsets/Fiery/consume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/consume.svg -------------------------------------------------------------------------------- /iconsets/Fiery/consume_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/consume_off.svg -------------------------------------------------------------------------------- /iconsets/Fiery/crossfade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/crossfade.svg -------------------------------------------------------------------------------- /iconsets/Fiery/edit-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/edit-delete.svg -------------------------------------------------------------------------------- /iconsets/Fiery/expand-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/expand-up.svg -------------------------------------------------------------------------------- /iconsets/Fiery/ffwd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/ffwd.svg -------------------------------------------------------------------------------- /iconsets/Fiery/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/file.svg -------------------------------------------------------------------------------- /iconsets/Fiery/flac-audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/flac-audio.svg -------------------------------------------------------------------------------- /iconsets/Fiery/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/folder.svg -------------------------------------------------------------------------------- /iconsets/Fiery/gmusic-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/gmusic-logo.svg -------------------------------------------------------------------------------- /iconsets/Fiery/headphones.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/headphones.svg -------------------------------------------------------------------------------- /iconsets/Fiery/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/history.svg -------------------------------------------------------------------------------- /iconsets/Fiery/icon-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/icon-new.svg -------------------------------------------------------------------------------- /iconsets/Fiery/imdb-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/imdb-logo.svg -------------------------------------------------------------------------------- /iconsets/Fiery/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/instagram.svg -------------------------------------------------------------------------------- /iconsets/Fiery/interrupt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/interrupt.svg -------------------------------------------------------------------------------- /iconsets/Fiery/lastfm-ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/lastfm-ban.svg -------------------------------------------------------------------------------- /iconsets/Fiery/lastfm-love.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/lastfm-love.svg -------------------------------------------------------------------------------- /iconsets/Fiery/lastfm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/lastfm.svg -------------------------------------------------------------------------------- /iconsets/Fiery/lyrics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/lyrics.svg -------------------------------------------------------------------------------- /iconsets/Fiery/movie-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/movie-1.svg -------------------------------------------------------------------------------- /iconsets/Fiery/mp3-audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/mp3-audio.svg -------------------------------------------------------------------------------- /iconsets/Fiery/neverheard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/neverheard.svg -------------------------------------------------------------------------------- /iconsets/Fiery/ogg-audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/ogg-audio.svg -------------------------------------------------------------------------------- /iconsets/Fiery/output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/output.svg -------------------------------------------------------------------------------- /iconsets/Fiery/output_mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/output_mute.svg -------------------------------------------------------------------------------- /iconsets/Fiery/padlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/padlock.svg -------------------------------------------------------------------------------- /iconsets/Fiery/playlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/playlist.svg -------------------------------------------------------------------------------- /iconsets/Fiery/preferences.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/preferences.svg -------------------------------------------------------------------------------- /iconsets/Fiery/pushbutton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/pushbutton.svg -------------------------------------------------------------------------------- /iconsets/Fiery/qobuz-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/qobuz-logo.svg -------------------------------------------------------------------------------- /iconsets/Fiery/ratandtag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/ratandtag.svg -------------------------------------------------------------------------------- /iconsets/Fiery/ratortag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/ratortag.svg -------------------------------------------------------------------------------- /iconsets/Fiery/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/refresh.svg -------------------------------------------------------------------------------- /iconsets/Fiery/refresh_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/refresh_off.svg -------------------------------------------------------------------------------- /iconsets/Fiery/resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/resize.svg -------------------------------------------------------------------------------- /iconsets/Fiery/rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/rewind.svg -------------------------------------------------------------------------------- /iconsets/Fiery/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/rss.svg -------------------------------------------------------------------------------- /iconsets/Fiery/shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/shuffle.svg -------------------------------------------------------------------------------- /iconsets/Fiery/shuffle_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/shuffle_off.svg -------------------------------------------------------------------------------- /iconsets/Fiery/singlestar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/singlestar.svg -------------------------------------------------------------------------------- /iconsets/Fiery/sleep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/sleep.svg -------------------------------------------------------------------------------- /iconsets/Fiery/sliders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/sliders.svg -------------------------------------------------------------------------------- /iconsets/Fiery/smartradio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/smartradio.svg -------------------------------------------------------------------------------- /iconsets/Fiery/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/spinner.svg -------------------------------------------------------------------------------- /iconsets/Fiery/stopafter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/stopafter.svg -------------------------------------------------------------------------------- /iconsets/Fiery/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/tag.svg -------------------------------------------------------------------------------- /iconsets/Fiery/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/theme.css -------------------------------------------------------------------------------- /iconsets/Fiery/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/tick.svg -------------------------------------------------------------------------------- /iconsets/Fiery/toggle-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/toggle-open.svg -------------------------------------------------------------------------------- /iconsets/Fiery/unlistened.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/unlistened.svg -------------------------------------------------------------------------------- /iconsets/Fiery/volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/volume.svg -------------------------------------------------------------------------------- /iconsets/Fiery/wma-audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Fiery/wma-audio.svg -------------------------------------------------------------------------------- /iconsets/Greydient/0stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/0stars.svg -------------------------------------------------------------------------------- /iconsets/Greydient/1stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/1stars.svg -------------------------------------------------------------------------------- /iconsets/Greydient/2stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/2stars.svg -------------------------------------------------------------------------------- /iconsets/Greydient/3stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/3stars.svg -------------------------------------------------------------------------------- /iconsets/Greydient/4stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/4stars.svg -------------------------------------------------------------------------------- /iconsets/Greydient/5stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/5stars.svg -------------------------------------------------------------------------------- /iconsets/Greydient/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/add.svg -------------------------------------------------------------------------------- /iconsets/Greydient/cd_case.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/cd_case.svg -------------------------------------------------------------------------------- /iconsets/Greydient/consume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/consume.svg -------------------------------------------------------------------------------- /iconsets/Greydient/ffwd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/ffwd.svg -------------------------------------------------------------------------------- /iconsets/Greydient/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/file.svg -------------------------------------------------------------------------------- /iconsets/Greydient/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/folder.svg -------------------------------------------------------------------------------- /iconsets/Greydient/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/history.svg -------------------------------------------------------------------------------- /iconsets/Greydient/lastfm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/lastfm.svg -------------------------------------------------------------------------------- /iconsets/Greydient/lyrics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/lyrics.svg -------------------------------------------------------------------------------- /iconsets/Greydient/movie-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/movie-1.svg -------------------------------------------------------------------------------- /iconsets/Greydient/output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/output.svg -------------------------------------------------------------------------------- /iconsets/Greydient/padlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/padlock.svg -------------------------------------------------------------------------------- /iconsets/Greydient/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/refresh.svg -------------------------------------------------------------------------------- /iconsets/Greydient/resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/resize.svg -------------------------------------------------------------------------------- /iconsets/Greydient/rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/rewind.svg -------------------------------------------------------------------------------- /iconsets/Greydient/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/rss.svg -------------------------------------------------------------------------------- /iconsets/Greydient/shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/shuffle.svg -------------------------------------------------------------------------------- /iconsets/Greydient/sleep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/sleep.svg -------------------------------------------------------------------------------- /iconsets/Greydient/sliders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/sliders.svg -------------------------------------------------------------------------------- /iconsets/Greydient/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/spinner.svg -------------------------------------------------------------------------------- /iconsets/Greydient/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/tag.svg -------------------------------------------------------------------------------- /iconsets/Greydient/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/theme.css -------------------------------------------------------------------------------- /iconsets/Greydient/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/tick.svg -------------------------------------------------------------------------------- /iconsets/Greydient/volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Greydient/volume.svg -------------------------------------------------------------------------------- /iconsets/Modern-Dark/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Modern-Dark/add.svg -------------------------------------------------------------------------------- /iconsets/Modern-Dark/ffwd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Modern-Dark/ffwd.svg -------------------------------------------------------------------------------- /iconsets/Modern-Dark/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Modern-Dark/file.svg -------------------------------------------------------------------------------- /iconsets/Modern-Dark/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Modern-Dark/rss.svg -------------------------------------------------------------------------------- /iconsets/Modern-Dark/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Modern-Dark/sleep.png -------------------------------------------------------------------------------- /iconsets/Modern-Dark/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Modern-Dark/tag.svg -------------------------------------------------------------------------------- /iconsets/Modern-Dark/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Modern-Dark/theme.css -------------------------------------------------------------------------------- /iconsets/Modern-Dark/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Modern-Dark/tick.svg -------------------------------------------------------------------------------- /iconsets/Modern-Light/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Modern-Light/add.svg -------------------------------------------------------------------------------- /iconsets/Modern-Light/ffwd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Modern-Light/ffwd.svg -------------------------------------------------------------------------------- /iconsets/Modern-Light/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Modern-Light/file.svg -------------------------------------------------------------------------------- /iconsets/Modern-Light/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Modern-Light/rss.svg -------------------------------------------------------------------------------- /iconsets/Modern-Light/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Modern-Light/tag.svg -------------------------------------------------------------------------------- /iconsets/Modern-Light/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Modern-Light/tick.svg -------------------------------------------------------------------------------- /iconsets/Purpletrator/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Purpletrator/add.svg -------------------------------------------------------------------------------- /iconsets/Purpletrator/ffwd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Purpletrator/ffwd.svg -------------------------------------------------------------------------------- /iconsets/Purpletrator/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Purpletrator/file.svg -------------------------------------------------------------------------------- /iconsets/Purpletrator/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Purpletrator/rss.svg -------------------------------------------------------------------------------- /iconsets/Purpletrator/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Purpletrator/tag.svg -------------------------------------------------------------------------------- /iconsets/Purpletrator/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Purpletrator/tick.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/0stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/0stars.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/1stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/1stars.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/2stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/2stars.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/3stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/3stars.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/4stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/4stars.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/5stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/5stars.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/add.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/ffwd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/ffwd.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/file.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/folder.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/lastfm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/lastfm.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/lyrics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/lyrics.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/output.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/random.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/resize.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/rewind.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/rss.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/sleep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/sleep.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/tag.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/theme.css -------------------------------------------------------------------------------- /iconsets/Slush-Dark/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/tick.svg -------------------------------------------------------------------------------- /iconsets/Slush-Dark/volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Dark/volume.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/0stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/0stars.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/1stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/1stars.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/2stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/2stars.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/3stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/3stars.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/4stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/4stars.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/5stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/5stars.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/add.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/ffwd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/ffwd.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/file.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/folder.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/lastfm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/lastfm.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/lyrics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/lyrics.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/output.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/random.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/resize.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/rewind.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/rss.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/sleep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/sleep.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/tag.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/theme.css -------------------------------------------------------------------------------- /iconsets/Slush-Fire/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/tick.svg -------------------------------------------------------------------------------- /iconsets/Slush-Fire/volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Fire/volume.svg -------------------------------------------------------------------------------- /iconsets/Slush-Purple/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Purple/add.svg -------------------------------------------------------------------------------- /iconsets/Slush-Purple/ffwd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Purple/ffwd.svg -------------------------------------------------------------------------------- /iconsets/Slush-Purple/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Purple/file.svg -------------------------------------------------------------------------------- /iconsets/Slush-Purple/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Purple/rss.svg -------------------------------------------------------------------------------- /iconsets/Slush-Purple/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Purple/tag.svg -------------------------------------------------------------------------------- /iconsets/Slush-Purple/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush-Purple/tick.svg -------------------------------------------------------------------------------- /iconsets/Slush/0stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/0stars.svg -------------------------------------------------------------------------------- /iconsets/Slush/1stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/1stars.svg -------------------------------------------------------------------------------- /iconsets/Slush/2stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/2stars.svg -------------------------------------------------------------------------------- /iconsets/Slush/3stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/3stars.svg -------------------------------------------------------------------------------- /iconsets/Slush/4stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/4stars.svg -------------------------------------------------------------------------------- /iconsets/Slush/5stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/5stars.svg -------------------------------------------------------------------------------- /iconsets/Slush/aac-audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/aac-audio.svg -------------------------------------------------------------------------------- /iconsets/Slush/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/add.svg -------------------------------------------------------------------------------- /iconsets/Slush/artist-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/artist-icon.svg -------------------------------------------------------------------------------- /iconsets/Slush/audiobook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/audiobook.svg -------------------------------------------------------------------------------- /iconsets/Slush/backbutton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/backbutton.svg -------------------------------------------------------------------------------- /iconsets/Slush/bandcamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/bandcamp.svg -------------------------------------------------------------------------------- /iconsets/Slush/bbc-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/bbc-logo.svg -------------------------------------------------------------------------------- /iconsets/Slush/blobdown2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/blobdown2.svg -------------------------------------------------------------------------------- /iconsets/Slush/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/bookmark.svg -------------------------------------------------------------------------------- /iconsets/Slush/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/calendar.svg -------------------------------------------------------------------------------- /iconsets/Slush/cd_case.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/cd_case.svg -------------------------------------------------------------------------------- /iconsets/Slush/collection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/collection.svg -------------------------------------------------------------------------------- /iconsets/Slush/consume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/consume.svg -------------------------------------------------------------------------------- /iconsets/Slush/consume_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/consume_off.svg -------------------------------------------------------------------------------- /iconsets/Slush/crossfade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/crossfade.svg -------------------------------------------------------------------------------- /iconsets/Slush/edit-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/edit-delete.svg -------------------------------------------------------------------------------- /iconsets/Slush/expand-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/expand-up.svg -------------------------------------------------------------------------------- /iconsets/Slush/ffwd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/ffwd.svg -------------------------------------------------------------------------------- /iconsets/Slush/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/file.svg -------------------------------------------------------------------------------- /iconsets/Slush/flac-audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/flac-audio.svg -------------------------------------------------------------------------------- /iconsets/Slush/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/folder.svg -------------------------------------------------------------------------------- /iconsets/Slush/gmusic-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/gmusic-logo.svg -------------------------------------------------------------------------------- /iconsets/Slush/headphones.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/headphones.svg -------------------------------------------------------------------------------- /iconsets/Slush/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/history.svg -------------------------------------------------------------------------------- /iconsets/Slush/icon-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/icon-new.svg -------------------------------------------------------------------------------- /iconsets/Slush/imdb-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/imdb-logo.svg -------------------------------------------------------------------------------- /iconsets/Slush/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/instagram.svg -------------------------------------------------------------------------------- /iconsets/Slush/interrupt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/interrupt.svg -------------------------------------------------------------------------------- /iconsets/Slush/lastfm-ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/lastfm-ban.svg -------------------------------------------------------------------------------- /iconsets/Slush/lastfm-love.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/lastfm-love.svg -------------------------------------------------------------------------------- /iconsets/Slush/lastfm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/lastfm.svg -------------------------------------------------------------------------------- /iconsets/Slush/lyrics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/lyrics.svg -------------------------------------------------------------------------------- /iconsets/Slush/movie-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/movie-1.svg -------------------------------------------------------------------------------- /iconsets/Slush/mp3-audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/mp3-audio.svg -------------------------------------------------------------------------------- /iconsets/Slush/neverheard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/neverheard.svg -------------------------------------------------------------------------------- /iconsets/Slush/ogg-audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/ogg-audio.svg -------------------------------------------------------------------------------- /iconsets/Slush/output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/output.svg -------------------------------------------------------------------------------- /iconsets/Slush/output_mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/output_mute.svg -------------------------------------------------------------------------------- /iconsets/Slush/padlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/padlock.svg -------------------------------------------------------------------------------- /iconsets/Slush/playlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/playlist.svg -------------------------------------------------------------------------------- /iconsets/Slush/preferences.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/preferences.svg -------------------------------------------------------------------------------- /iconsets/Slush/pushbutton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/pushbutton.svg -------------------------------------------------------------------------------- /iconsets/Slush/qobuz-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/qobuz-logo.svg -------------------------------------------------------------------------------- /iconsets/Slush/random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/random.svg -------------------------------------------------------------------------------- /iconsets/Slush/random_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/random_off.svg -------------------------------------------------------------------------------- /iconsets/Slush/ratandtag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/ratandtag.svg -------------------------------------------------------------------------------- /iconsets/Slush/ratortag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/ratortag.svg -------------------------------------------------------------------------------- /iconsets/Slush/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/refresh.svg -------------------------------------------------------------------------------- /iconsets/Slush/refresh_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/refresh_off.svg -------------------------------------------------------------------------------- /iconsets/Slush/resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/resize.svg -------------------------------------------------------------------------------- /iconsets/Slush/rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/rewind.svg -------------------------------------------------------------------------------- /iconsets/Slush/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/rss.svg -------------------------------------------------------------------------------- /iconsets/Slush/shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/shuffle.svg -------------------------------------------------------------------------------- /iconsets/Slush/singlestar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/singlestar.svg -------------------------------------------------------------------------------- /iconsets/Slush/sleep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/sleep.svg -------------------------------------------------------------------------------- /iconsets/Slush/sliders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/sliders.svg -------------------------------------------------------------------------------- /iconsets/Slush/smartradio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/smartradio.svg -------------------------------------------------------------------------------- /iconsets/Slush/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/spinner.svg -------------------------------------------------------------------------------- /iconsets/Slush/stopafter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/stopafter.svg -------------------------------------------------------------------------------- /iconsets/Slush/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/tag.svg -------------------------------------------------------------------------------- /iconsets/Slush/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/theme.css -------------------------------------------------------------------------------- /iconsets/Slush/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/tick.svg -------------------------------------------------------------------------------- /iconsets/Slush/toggle-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/toggle-open.svg -------------------------------------------------------------------------------- /iconsets/Slush/unlistened.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/unlistened.svg -------------------------------------------------------------------------------- /iconsets/Slush/volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/volume.svg -------------------------------------------------------------------------------- /iconsets/Slush/wma-audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/Slush/wma-audio.svg -------------------------------------------------------------------------------- /iconsets/colourconverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/iconsets/colourconverter.php -------------------------------------------------------------------------------- /includes/MobileDetect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/includes/MobileDetect.php -------------------------------------------------------------------------------- /includes/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/includes/about.html -------------------------------------------------------------------------------- /includes/begging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/includes/begging.html -------------------------------------------------------------------------------- /includes/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/includes/constants.php -------------------------------------------------------------------------------- /includes/firstrun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/includes/firstrun.php -------------------------------------------------------------------------------- /includes/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/includes/functions.php -------------------------------------------------------------------------------- /includes/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/includes/globals.js -------------------------------------------------------------------------------- /includes/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/includes/license.html -------------------------------------------------------------------------------- /includes/loadprefs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/includes/loadprefs.php -------------------------------------------------------------------------------- /includes/logger.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/includes/logger.class.php -------------------------------------------------------------------------------- /includes/podcast_base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/includes/podcast_base.php -------------------------------------------------------------------------------- /includes/prefs.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/includes/prefs.class.php -------------------------------------------------------------------------------- /includes/vars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/includes/vars.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/index.php -------------------------------------------------------------------------------- /international/de-DE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/international/de-DE.php -------------------------------------------------------------------------------- /international/en-GB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/international/en-GB.php -------------------------------------------------------------------------------- /international/fr-FR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/international/fr-FR.php -------------------------------------------------------------------------------- /international/it-IT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/international/it-IT.php -------------------------------------------------------------------------------- /international/pirate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/international/pirate.php -------------------------------------------------------------------------------- /international/pl-PL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/international/pl-PL.php -------------------------------------------------------------------------------- /international/ru-RU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/international/ru-RU.php -------------------------------------------------------------------------------- /international/sr-YU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/international/sr-YU.php -------------------------------------------------------------------------------- /international/zh-CN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/international/zh-CN.php -------------------------------------------------------------------------------- /jquery/jquery-3.6.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/jquery/jquery-3.6.4.min.js -------------------------------------------------------------------------------- /jquery/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/jquery/jquery-ui.min.js -------------------------------------------------------------------------------- /jquery/jquery.hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/jquery/jquery.hotkeys.js -------------------------------------------------------------------------------- /jquery/jquery.scrollTo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/jquery/jquery.scrollTo.min.js -------------------------------------------------------------------------------- /jquery/masonry.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/jquery/masonry.pkgd.min.js -------------------------------------------------------------------------------- /jshash-2.2/md5-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/jshash-2.2/md5-min.js -------------------------------------------------------------------------------- /manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/manifest.webmanifest -------------------------------------------------------------------------------- /newimages/artist-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/artist-icon.png -------------------------------------------------------------------------------- /newimages/broadcast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/broadcast.svg -------------------------------------------------------------------------------- /newimages/commradio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/commradio.svg -------------------------------------------------------------------------------- /newimages/compact-disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/compact-disc.png -------------------------------------------------------------------------------- /newimages/discoverweekly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/discoverweekly.jpg -------------------------------------------------------------------------------- /newimages/favicon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/favicon-114.png -------------------------------------------------------------------------------- /newimages/favicon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/favicon-120.png -------------------------------------------------------------------------------- /newimages/favicon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/favicon-128.png -------------------------------------------------------------------------------- /newimages/favicon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/favicon-144.png -------------------------------------------------------------------------------- /newimages/favicon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/favicon-152.png -------------------------------------------------------------------------------- /newimages/favicon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/favicon-16.png -------------------------------------------------------------------------------- /newimages/favicon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/favicon-180.png -------------------------------------------------------------------------------- /newimages/favicon-196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/favicon-196.png -------------------------------------------------------------------------------- /newimages/favicon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/favicon-32.png -------------------------------------------------------------------------------- /newimages/favicon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/favicon-48.png -------------------------------------------------------------------------------- /newimages/favicon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/favicon-64.png -------------------------------------------------------------------------------- /newimages/favicon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/favicon-72.png -------------------------------------------------------------------------------- /newimages/favicon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/favicon-76.png -------------------------------------------------------------------------------- /newimages/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/favicon.ico -------------------------------------------------------------------------------- /newimages/icecast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/icecast.svg -------------------------------------------------------------------------------- /newimages/imgnotfound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/imgnotfound.svg -------------------------------------------------------------------------------- /newimages/lastfm-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/lastfm-icon.png -------------------------------------------------------------------------------- /newimages/lastfm-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/lastfm-logo.png -------------------------------------------------------------------------------- /newimages/mCSB_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/mCSB_buttons.png -------------------------------------------------------------------------------- /newimages/podcast-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/podcast-logo.svg -------------------------------------------------------------------------------- /newimages/radio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/radio.svg -------------------------------------------------------------------------------- /newimages/snapcast_800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/snapcast_800.png -------------------------------------------------------------------------------- /newimages/somafmlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/somafmlogo.svg -------------------------------------------------------------------------------- /newimages/soundcloud-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/soundcloud-logo.svg -------------------------------------------------------------------------------- /newimages/spotify-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/spotify-icon.png -------------------------------------------------------------------------------- /newimages/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/transparent.png -------------------------------------------------------------------------------- /newimages/tunein-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/tunein-logo.svg -------------------------------------------------------------------------------- /newimages/vinyl_record.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/vinyl_record.svg -------------------------------------------------------------------------------- /newimages/youtube-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/newimages/youtube-logo.svg -------------------------------------------------------------------------------- /phpinfo.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /player/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/player/controller.js -------------------------------------------------------------------------------- /player/mopidy/checkprogress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/player/mopidy/checkprogress.js -------------------------------------------------------------------------------- /player/mopidy/player.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/player/mopidy/player.class.php -------------------------------------------------------------------------------- /player/mpd/checkprogress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/player/mpd/checkprogress.js -------------------------------------------------------------------------------- /player/mpd/mpd_websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/player/mpd/mpd_websocket.py -------------------------------------------------------------------------------- /player/mpd/player.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/player/mpd/player.class.php -------------------------------------------------------------------------------- /player/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/player/player.js -------------------------------------------------------------------------------- /player/transferplaylist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/player/transferplaylist.php -------------------------------------------------------------------------------- /player/utils/loadplaylists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/player/utils/loadplaylists.php -------------------------------------------------------------------------------- /player/utils/outputs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/player/utils/outputs.php -------------------------------------------------------------------------------- /plugins/alarmclock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/plugins/alarmclock.js -------------------------------------------------------------------------------- /plugins/code/canimporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/plugins/code/canimporter.php -------------------------------------------------------------------------------- /plugins/code/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/plugins/code/charts.js -------------------------------------------------------------------------------- /plugins/code/getunplayable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/plugins/code/getunplayable.php -------------------------------------------------------------------------------- /plugins/code/getwishlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/plugins/code/getwishlist.php -------------------------------------------------------------------------------- /plugins/code/helpfulthings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/plugins/code/helpfulthings.js -------------------------------------------------------------------------------- /plugins/code/lfmimporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/plugins/code/lfmimporter.js -------------------------------------------------------------------------------- /plugins/code/lfmimporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/plugins/code/lfmimporter.php -------------------------------------------------------------------------------- /plugins/code/metaBackup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/plugins/code/metaBackup.js -------------------------------------------------------------------------------- /plugins/code/opmlImporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/plugins/code/opmlImporter.js -------------------------------------------------------------------------------- /plugins/code/opmlexport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/plugins/code/opmlexport.php -------------------------------------------------------------------------------- /plugins/code/opmluploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/plugins/code/opmluploader.php -------------------------------------------------------------------------------- /plugins/code/pollcani.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /plugins/code/recentlyplayed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/plugins/code/recentlyplayed.js -------------------------------------------------------------------------------- /plugins/code/wishlistviewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/plugins/code/wishlistviewer.js -------------------------------------------------------------------------------- /plugins/dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/plugins/dynamic.js -------------------------------------------------------------------------------- /plugins/sleeptimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/plugins/sleeptimer.js -------------------------------------------------------------------------------- /plugins/zzz-aboutrompr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/plugins/zzz-aboutrompr.js -------------------------------------------------------------------------------- /plugins/zzzz-debuginfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/plugins/zzzz-debuginfo.js -------------------------------------------------------------------------------- /radios/00_builtins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/radios/00_builtins.js -------------------------------------------------------------------------------- /radios/api/loadcustom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/radios/api/loadcustom.php -------------------------------------------------------------------------------- /radios/api/savecustom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/radios/api/savecustom.php -------------------------------------------------------------------------------- /radios/api/starRadios.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/radios/api/starRadios.php -------------------------------------------------------------------------------- /radios/code/faveartistradio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/radios/code/faveartistradio.js -------------------------------------------------------------------------------- /radios/code/genreradio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/radios/code/genreradio.js -------------------------------------------------------------------------------- /radios/code/mixradio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/radios/code/mixradio.js -------------------------------------------------------------------------------- /radios/code/spotirecradio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/radios/code/spotirecradio.js -------------------------------------------------------------------------------- /radios/code/starRadios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/radios/code/starRadios.js -------------------------------------------------------------------------------- /radios/customradio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/radios/customradio.js -------------------------------------------------------------------------------- /radios/musicfromeverywhere.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/radios/musicfromeverywhere.js -------------------------------------------------------------------------------- /radios/spotifyradio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/radios/spotifyradio.js -------------------------------------------------------------------------------- /resources/iso3166.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/resources/iso3166.xml -------------------------------------------------------------------------------- /resources/iso639.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/resources/iso639.json -------------------------------------------------------------------------------- /romonitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/romonitor.php -------------------------------------------------------------------------------- /rompr_backend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/rompr_backend.php -------------------------------------------------------------------------------- /setupscreen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/setupscreen.php -------------------------------------------------------------------------------- /skins/desktop/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/skins/desktop/skin.css -------------------------------------------------------------------------------- /skins/desktop/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/skins/desktop/skin.js -------------------------------------------------------------------------------- /skins/desktop/skin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/skins/desktop/skin.php -------------------------------------------------------------------------------- /skins/desktop/uibits.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/skins/desktop/uibits.class.php -------------------------------------------------------------------------------- /skins/phone/controlbuttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/skins/phone/controlbuttons.css -------------------------------------------------------------------------------- /skins/phone/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/skins/phone/skin.css -------------------------------------------------------------------------------- /skins/phone/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/skins/phone/skin.js -------------------------------------------------------------------------------- /skins/phone/skin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/skins/phone/skin.php -------------------------------------------------------------------------------- /skins/phone/uibits.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/skins/phone/uibits.class.php -------------------------------------------------------------------------------- /skins/playlistpanel.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/skins/playlistpanel.class.php -------------------------------------------------------------------------------- /skins/prefspanel.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/skins/prefspanel.class.php -------------------------------------------------------------------------------- /skins/skypotato/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/skins/skypotato/skin.css -------------------------------------------------------------------------------- /skins/skypotato/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/skins/skypotato/skin.js -------------------------------------------------------------------------------- /skins/skypotato/skin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/skins/skypotato/skin.php -------------------------------------------------------------------------------- /skins/ui_elements.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/skins/ui_elements.class.php -------------------------------------------------------------------------------- /sleeptimer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/sleeptimer.php -------------------------------------------------------------------------------- /snapcast/snapcast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/snapcast/snapcast.js -------------------------------------------------------------------------------- /snoozer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/snoozer.php -------------------------------------------------------------------------------- /speedtest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/speedtest.php -------------------------------------------------------------------------------- /streamplugins/000_header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/streamplugins/000_header.php -------------------------------------------------------------------------------- /streamplugins/00_yourradio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/streamplugins/00_yourradio.php -------------------------------------------------------------------------------- /streamplugins/01_somafm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/streamplugins/01_somafm.php -------------------------------------------------------------------------------- /streamplugins/somafm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/streamplugins/somafm.js -------------------------------------------------------------------------------- /streamplugins/tuneinradio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/streamplugins/tuneinradio.js -------------------------------------------------------------------------------- /streamplugins/yourradio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/streamplugins/yourradio.js -------------------------------------------------------------------------------- /sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/sw.js -------------------------------------------------------------------------------- /theme_base/colour_theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/theme_base/colour_theme.css -------------------------------------------------------------------------------- /theme_base/image_theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/theme_base/image_theme.css -------------------------------------------------------------------------------- /themes/Acers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Acers.css -------------------------------------------------------------------------------- /themes/Aqua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Aqua.css -------------------------------------------------------------------------------- /themes/BrushedAluminium.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/BrushedAluminium.css -------------------------------------------------------------------------------- /themes/Crystals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Crystals.css -------------------------------------------------------------------------------- /themes/Crystals.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Crystals.jpg -------------------------------------------------------------------------------- /themes/Curves.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Curves.css -------------------------------------------------------------------------------- /themes/Darkness.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Darkness.css -------------------------------------------------------------------------------- /themes/DarknessHiDPI.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/DarknessHiDPI.css -------------------------------------------------------------------------------- /themes/ElegantGrey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/ElegantGrey.css -------------------------------------------------------------------------------- /themes/Field.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Field.css -------------------------------------------------------------------------------- /themes/Fire.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Fire.css -------------------------------------------------------------------------------- /themes/Flatworld.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Flatworld.css -------------------------------------------------------------------------------- /themes/Leaf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Leaf.css -------------------------------------------------------------------------------- /themes/Leafinity.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Leafinity.css -------------------------------------------------------------------------------- /themes/MistySunset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/MistySunset.css -------------------------------------------------------------------------------- /themes/Mountains.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Mountains.css -------------------------------------------------------------------------------- /themes/Negative.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Negative.css -------------------------------------------------------------------------------- /themes/Numismatist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Numismatist.css -------------------------------------------------------------------------------- /themes/Oxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Oxygen.css -------------------------------------------------------------------------------- /themes/Paper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Paper.css -------------------------------------------------------------------------------- /themes/Paper1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Paper1.jpg -------------------------------------------------------------------------------- /themes/Plasma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Plasma.css -------------------------------------------------------------------------------- /themes/RelaxingBlue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/RelaxingBlue.css -------------------------------------------------------------------------------- /themes/ShootingStars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/ShootingStars.css -------------------------------------------------------------------------------- /themes/Skytrails.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Skytrails.css -------------------------------------------------------------------------------- /themes/Sunburst.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Sunburst.css -------------------------------------------------------------------------------- /themes/Sunset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Sunset.css -------------------------------------------------------------------------------- /themes/SunsetLoch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/SunsetLoch.css -------------------------------------------------------------------------------- /themes/Table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/Table.css -------------------------------------------------------------------------------- /themes/VariableLight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/VariableLight.css -------------------------------------------------------------------------------- /themes/VariableLight.css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/VariableLight.css.js -------------------------------------------------------------------------------- /themes/acers2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/acers2.jpg -------------------------------------------------------------------------------- /themes/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/bg.jpg -------------------------------------------------------------------------------- /themes/cloudy_ls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/cloudy_ls.jpg -------------------------------------------------------------------------------- /themes/cloudy_pt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/cloudy_pt.jpg -------------------------------------------------------------------------------- /themes/field.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/field.jpg -------------------------------------------------------------------------------- /themes/fire-portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/fire-portrait.jpg -------------------------------------------------------------------------------- /themes/fire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/fire.jpg -------------------------------------------------------------------------------- /themes/leaf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/leaf.jpg -------------------------------------------------------------------------------- /themes/leafinity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/leafinity.jpg -------------------------------------------------------------------------------- /themes/mountains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/mountains.jpg -------------------------------------------------------------------------------- /themes/oldpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/oldpaper.jpg -------------------------------------------------------------------------------- /themes/plasma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/plasma.jpg -------------------------------------------------------------------------------- /themes/plasma_portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/plasma_portrait.jpg -------------------------------------------------------------------------------- /themes/shootingstars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/shootingstars.jpg -------------------------------------------------------------------------------- /themes/silver1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/silver1.jpg -------------------------------------------------------------------------------- /themes/silver2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/silver2.jpg -------------------------------------------------------------------------------- /themes/skytrailscrop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/skytrailscrop.jpg -------------------------------------------------------------------------------- /themes/sunset_loch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/sunset_loch.jpg -------------------------------------------------------------------------------- /themes/sunsetbirds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/sunsetbirds.jpg -------------------------------------------------------------------------------- /themes/table.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/table.jpg -------------------------------------------------------------------------------- /themes/table_portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/table_portrait.jpg -------------------------------------------------------------------------------- /themes/tanpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/themes/tanpaper.jpg -------------------------------------------------------------------------------- /timezones.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/timezones.txt -------------------------------------------------------------------------------- /ui/albumart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/ui/albumart.js -------------------------------------------------------------------------------- /ui/clickfunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/ui/clickfunctions.js -------------------------------------------------------------------------------- /ui/collectionhelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/ui/collectionhelper.js -------------------------------------------------------------------------------- /ui/coverscraper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/ui/coverscraper.js -------------------------------------------------------------------------------- /ui/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/ui/debug.js -------------------------------------------------------------------------------- /ui/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/ui/functions.js -------------------------------------------------------------------------------- /ui/hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/ui/hotkeys.js -------------------------------------------------------------------------------- /ui/infobar2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/ui/infobar2.js -------------------------------------------------------------------------------- /ui/language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/ui/language.php -------------------------------------------------------------------------------- /ui/metahandlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/ui/metahandlers.js -------------------------------------------------------------------------------- /ui/nowplaying.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/ui/nowplaying.js -------------------------------------------------------------------------------- /ui/playlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/ui/playlist.js -------------------------------------------------------------------------------- /ui/podcasts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/ui/podcasts.js -------------------------------------------------------------------------------- /ui/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/ui/prefs.js -------------------------------------------------------------------------------- /ui/readyhandlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/ui/readyhandlers.js -------------------------------------------------------------------------------- /ui/searchmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/ui/searchmanager.js -------------------------------------------------------------------------------- /ui/setupbits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/ui/setupbits.js -------------------------------------------------------------------------------- /ui/uifunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/ui/uifunctions.js -------------------------------------------------------------------------------- /ui/uihelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/ui/uihelper.js -------------------------------------------------------------------------------- /ui/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/ui/widgets.js -------------------------------------------------------------------------------- /updateinfo/1.20/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/updateinfo/1.20/info.html -------------------------------------------------------------------------------- /updateinfo/1.22/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/updateinfo/1.22/info.html -------------------------------------------------------------------------------- /updateinfo/1.30/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/updateinfo/1.30/info.html -------------------------------------------------------------------------------- /updateinfo/1.33/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/updateinfo/1.33/info.html -------------------------------------------------------------------------------- /updateinfo/1.41/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/updateinfo/1.41/info.html -------------------------------------------------------------------------------- /updateinfo/1.52/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/updateinfo/1.52/info.html -------------------------------------------------------------------------------- /updateinfo/1.54/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/updateinfo/1.54/info.html -------------------------------------------------------------------------------- /updateinfo/1.58/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/updateinfo/1.58/info.html -------------------------------------------------------------------------------- /updateinfo/1.60/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/updateinfo/1.60/info.html -------------------------------------------------------------------------------- /updateinfo/2.00/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/updateinfo/2.00/info.html -------------------------------------------------------------------------------- /utils/archiveimages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/utils/archiveimages.php -------------------------------------------------------------------------------- /utils/checkServerTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/utils/checkServerTime.php -------------------------------------------------------------------------------- /utils/check_version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/utils/check_version.php -------------------------------------------------------------------------------- /utils/checklocalcover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/utils/checklocalcover.php -------------------------------------------------------------------------------- /utils/checkpodcastdownload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/utils/checkpodcastdownload.php -------------------------------------------------------------------------------- /utils/checkrestoreprogress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/utils/checkrestoreprogress.php -------------------------------------------------------------------------------- /utils/checkupdateprogress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/utils/checkupdateprogress.php -------------------------------------------------------------------------------- /utils/checkyoutubedownload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/utils/checkyoutubedownload.php -------------------------------------------------------------------------------- /utils/debuginfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/utils/debuginfo.php -------------------------------------------------------------------------------- /utils/findLocalImages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/utils/findLocalImages.php -------------------------------------------------------------------------------- /utils/findsmallimages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/utils/findsmallimages.php -------------------------------------------------------------------------------- /utils/getUserPlaylist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/utils/getUserPlaylist.php -------------------------------------------------------------------------------- /utils/getalbumcover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/utils/getalbumcover.php -------------------------------------------------------------------------------- /utils/podcastupgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/utils/podcastupgrade.php -------------------------------------------------------------------------------- /utils/radioupgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/utils/radioupgrade.php -------------------------------------------------------------------------------- /utils/update_albumart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/utils/update_albumart.php -------------------------------------------------------------------------------- /utils/versioninfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatg3erman/RompR/HEAD/utils/versioninfo.php --------------------------------------------------------------------------------