├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── feature_request.yml └── workflows │ └── release-builder.yml ├── .gitignore ├── DISCLAIMER.md ├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── gifs │ └── download.gif ├── images │ ├── download_queue.png │ ├── search.png │ └── settings.png └── logos │ └── repository_logo.png ├── distros ├── arch │ └── PKGBUILD ├── fedora │ └── onthespot.spec └── gentoo │ ├── acct-group │ └── onthespot │ │ ├── metadata.xml │ │ └── onthespot-0.ebuild │ ├── acct-user │ └── onthespot │ │ ├── metadata.xml │ │ └── onthespot-0.ebuild │ ├── dev-python │ ├── altgraph │ │ ├── altgraph-0.17.4.ebuild │ │ └── metadata.xml │ ├── construct │ │ ├── construct-2.8.8.ebuild │ │ └── metadata.xml │ ├── librespot │ │ ├── librespot-0.0.9.ebuild │ │ └── metadata.xml │ ├── m3u8 │ │ ├── m3u8-6.0.0.ebuild │ │ └── metadata.xml │ ├── music-tag │ │ ├── metadata.xml │ │ └── music-tag-0.4.3.ebuild │ ├── pycryptodomex │ │ ├── metadata.xml │ │ └── pycryptodomex-3.20.0.ebuild │ ├── pyinstaller-hooks-contrib │ │ ├── metadata.xml │ │ └── pyinstaller-hooks-contrib-2024.8.ebuild │ ├── pyinstaller │ │ ├── metadata.xml │ │ └── pyinstaller-6.10.0.ebuild │ ├── pymp4 │ │ ├── metadata.xml │ │ └── pymp4-1.4.0.ebuild │ └── pywidevine │ │ ├── metadata.xml │ │ └── pywidevine-1.8.0.ebuild │ └── media-sound │ └── onthespot │ ├── files │ ├── onthespot.confd │ └── onthespot.initd │ ├── metadata.xml │ ├── onthespot-1.1.2.ebuild │ └── onthespot-9999.ebuild ├── docker-compose.yml ├── docs ├── INSTALLATION.md └── USAGE.md ├── pyproject.toml ├── requirements.txt ├── scripts ├── build_appimage.sh ├── build_linux.sh ├── build_mac.sh ├── build_rpm.sh └── build_windows.bat ├── setup.cfg └── src ├── onthespot ├── __init__.py ├── accounts.py ├── api │ ├── __init__.py │ ├── apple_music.py │ ├── bandcamp.py │ ├── crunchyroll.py │ ├── deezer.py │ ├── generic.py │ ├── qobuz.py │ ├── soundcloud.py │ ├── spotify.py │ ├── tidal.py │ └── youtube_music.py ├── cli.py ├── constants.py ├── downloader.py ├── gui.py ├── otsconfig.py ├── parse_item.py ├── qt │ ├── __init__.py │ ├── dl_progressbtn.py │ ├── mainui.py │ ├── minidialog.py │ ├── qtui │ │ ├── __init__.py │ │ ├── main.ui │ │ └── notice.ui │ ├── settings.py │ └── thumb_listitem.py ├── resources │ ├── __init__.py │ ├── icons │ │ ├── __init__.py │ │ ├── active.png │ │ ├── apple_music.png │ │ ├── bandcamp.png │ │ ├── collapse_down.png │ │ ├── collapse_up.png │ │ ├── crunchyroll.png │ │ ├── de_DE.png │ │ ├── deezer.png │ │ ├── delete.png │ │ ├── download.png │ │ ├── empty_heart.png │ │ ├── en_US.png │ │ ├── error.png │ │ ├── export_file.png │ │ ├── file.png │ │ ├── filled_heart.png │ │ ├── folder.png │ │ ├── generic.png │ │ ├── ja_JP.png │ │ ├── leave.png │ │ ├── light.png │ │ ├── link.png │ │ ├── onthespot.png │ │ ├── pirate_flag.png │ │ ├── play.png │ │ ├── pt_PT.png │ │ ├── qobuz.png │ │ ├── queue.png │ │ ├── retry.png │ │ ├── save.png │ │ ├── search.png │ │ ├── soundcloud.png │ │ ├── spotify.png │ │ ├── stop.png │ │ ├── tidal.png │ │ ├── trash.png │ │ └── youtube_music.png │ ├── org.onthespot.OnTheSpot.desktop │ ├── translations │ │ ├── __init__.py │ │ ├── de_DE.qm │ │ ├── de_DE.ts │ │ ├── ja_JP.qm │ │ ├── ja_JP.ts │ │ ├── pt_PT.qm │ │ └── pt_PT.ts │ └── web │ │ ├── __init__.py │ │ ├── about.html │ │ ├── download_queue.html │ │ ├── favicon.ico │ │ ├── login.css │ │ ├── login.html │ │ ├── search.html │ │ ├── settings.html │ │ ├── style.css │ │ └── utils.js ├── runtimedata.py ├── search.py ├── utils.py └── web.py └── portable.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/release-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/.github/workflows/release-builder.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/.gitignore -------------------------------------------------------------------------------- /DISCLAIMER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/DISCLAIMER.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/README.md -------------------------------------------------------------------------------- /assets/gifs/download.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/assets/gifs/download.gif -------------------------------------------------------------------------------- /assets/images/download_queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/assets/images/download_queue.png -------------------------------------------------------------------------------- /assets/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/assets/images/search.png -------------------------------------------------------------------------------- /assets/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/assets/images/settings.png -------------------------------------------------------------------------------- /assets/logos/repository_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/assets/logos/repository_logo.png -------------------------------------------------------------------------------- /distros/arch/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/arch/PKGBUILD -------------------------------------------------------------------------------- /distros/fedora/onthespot.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/fedora/onthespot.spec -------------------------------------------------------------------------------- /distros/gentoo/acct-group/onthespot/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/acct-group/onthespot/metadata.xml -------------------------------------------------------------------------------- /distros/gentoo/acct-group/onthespot/onthespot-0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/acct-group/onthespot/onthespot-0.ebuild -------------------------------------------------------------------------------- /distros/gentoo/acct-user/onthespot/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/acct-user/onthespot/metadata.xml -------------------------------------------------------------------------------- /distros/gentoo/acct-user/onthespot/onthespot-0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/acct-user/onthespot/onthespot-0.ebuild -------------------------------------------------------------------------------- /distros/gentoo/dev-python/altgraph/altgraph-0.17.4.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/dev-python/altgraph/altgraph-0.17.4.ebuild -------------------------------------------------------------------------------- /distros/gentoo/dev-python/altgraph/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/dev-python/altgraph/metadata.xml -------------------------------------------------------------------------------- /distros/gentoo/dev-python/construct/construct-2.8.8.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/dev-python/construct/construct-2.8.8.ebuild -------------------------------------------------------------------------------- /distros/gentoo/dev-python/construct/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/dev-python/construct/metadata.xml -------------------------------------------------------------------------------- /distros/gentoo/dev-python/librespot/librespot-0.0.9.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/dev-python/librespot/librespot-0.0.9.ebuild -------------------------------------------------------------------------------- /distros/gentoo/dev-python/librespot/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/dev-python/librespot/metadata.xml -------------------------------------------------------------------------------- /distros/gentoo/dev-python/m3u8/m3u8-6.0.0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/dev-python/m3u8/m3u8-6.0.0.ebuild -------------------------------------------------------------------------------- /distros/gentoo/dev-python/m3u8/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/dev-python/m3u8/metadata.xml -------------------------------------------------------------------------------- /distros/gentoo/dev-python/music-tag/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/dev-python/music-tag/metadata.xml -------------------------------------------------------------------------------- /distros/gentoo/dev-python/music-tag/music-tag-0.4.3.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/dev-python/music-tag/music-tag-0.4.3.ebuild -------------------------------------------------------------------------------- /distros/gentoo/dev-python/pycryptodomex/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/dev-python/pycryptodomex/metadata.xml -------------------------------------------------------------------------------- /distros/gentoo/dev-python/pycryptodomex/pycryptodomex-3.20.0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/dev-python/pycryptodomex/pycryptodomex-3.20.0.ebuild -------------------------------------------------------------------------------- /distros/gentoo/dev-python/pyinstaller-hooks-contrib/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/dev-python/pyinstaller-hooks-contrib/metadata.xml -------------------------------------------------------------------------------- /distros/gentoo/dev-python/pyinstaller-hooks-contrib/pyinstaller-hooks-contrib-2024.8.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/dev-python/pyinstaller-hooks-contrib/pyinstaller-hooks-contrib-2024.8.ebuild -------------------------------------------------------------------------------- /distros/gentoo/dev-python/pyinstaller/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/dev-python/pyinstaller/metadata.xml -------------------------------------------------------------------------------- /distros/gentoo/dev-python/pyinstaller/pyinstaller-6.10.0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/dev-python/pyinstaller/pyinstaller-6.10.0.ebuild -------------------------------------------------------------------------------- /distros/gentoo/dev-python/pymp4/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/dev-python/pymp4/metadata.xml -------------------------------------------------------------------------------- /distros/gentoo/dev-python/pymp4/pymp4-1.4.0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/dev-python/pymp4/pymp4-1.4.0.ebuild -------------------------------------------------------------------------------- /distros/gentoo/dev-python/pywidevine/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/dev-python/pywidevine/metadata.xml -------------------------------------------------------------------------------- /distros/gentoo/dev-python/pywidevine/pywidevine-1.8.0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/dev-python/pywidevine/pywidevine-1.8.0.ebuild -------------------------------------------------------------------------------- /distros/gentoo/media-sound/onthespot/files/onthespot.confd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/media-sound/onthespot/files/onthespot.confd -------------------------------------------------------------------------------- /distros/gentoo/media-sound/onthespot/files/onthespot.initd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/media-sound/onthespot/files/onthespot.initd -------------------------------------------------------------------------------- /distros/gentoo/media-sound/onthespot/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/media-sound/onthespot/metadata.xml -------------------------------------------------------------------------------- /distros/gentoo/media-sound/onthespot/onthespot-1.1.2.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/media-sound/onthespot/onthespot-1.1.2.ebuild -------------------------------------------------------------------------------- /distros/gentoo/media-sound/onthespot/onthespot-9999.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/distros/gentoo/media-sound/onthespot/onthespot-9999.ebuild -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/docs/INSTALLATION.md -------------------------------------------------------------------------------- /docs/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/docs/USAGE.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/build_appimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/scripts/build_appimage.sh -------------------------------------------------------------------------------- /scripts/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/scripts/build_linux.sh -------------------------------------------------------------------------------- /scripts/build_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/scripts/build_mac.sh -------------------------------------------------------------------------------- /scripts/build_rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/scripts/build_rpm.sh -------------------------------------------------------------------------------- /scripts/build_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/scripts/build_windows.bat -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/onthespot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/onthespot/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/accounts.py -------------------------------------------------------------------------------- /src/onthespot/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/onthespot/api/apple_music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/api/apple_music.py -------------------------------------------------------------------------------- /src/onthespot/api/bandcamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/api/bandcamp.py -------------------------------------------------------------------------------- /src/onthespot/api/crunchyroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/api/crunchyroll.py -------------------------------------------------------------------------------- /src/onthespot/api/deezer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/api/deezer.py -------------------------------------------------------------------------------- /src/onthespot/api/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/api/generic.py -------------------------------------------------------------------------------- /src/onthespot/api/qobuz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/api/qobuz.py -------------------------------------------------------------------------------- /src/onthespot/api/soundcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/api/soundcloud.py -------------------------------------------------------------------------------- /src/onthespot/api/spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/api/spotify.py -------------------------------------------------------------------------------- /src/onthespot/api/tidal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/api/tidal.py -------------------------------------------------------------------------------- /src/onthespot/api/youtube_music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/api/youtube_music.py -------------------------------------------------------------------------------- /src/onthespot/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/cli.py -------------------------------------------------------------------------------- /src/onthespot/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/constants.py -------------------------------------------------------------------------------- /src/onthespot/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/downloader.py -------------------------------------------------------------------------------- /src/onthespot/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/gui.py -------------------------------------------------------------------------------- /src/onthespot/otsconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/otsconfig.py -------------------------------------------------------------------------------- /src/onthespot/parse_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/parse_item.py -------------------------------------------------------------------------------- /src/onthespot/qt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/onthespot/qt/dl_progressbtn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/qt/dl_progressbtn.py -------------------------------------------------------------------------------- /src/onthespot/qt/mainui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/qt/mainui.py -------------------------------------------------------------------------------- /src/onthespot/qt/minidialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/qt/minidialog.py -------------------------------------------------------------------------------- /src/onthespot/qt/qtui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/onthespot/qt/qtui/main.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/qt/qtui/main.ui -------------------------------------------------------------------------------- /src/onthespot/qt/qtui/notice.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/qt/qtui/notice.ui -------------------------------------------------------------------------------- /src/onthespot/qt/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/qt/settings.py -------------------------------------------------------------------------------- /src/onthespot/qt/thumb_listitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/qt/thumb_listitem.py -------------------------------------------------------------------------------- /src/onthespot/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/onthespot/resources/icons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/onthespot/resources/icons/active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/active.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/apple_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/apple_music.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/bandcamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/bandcamp.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/collapse_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/collapse_down.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/collapse_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/collapse_up.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/crunchyroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/crunchyroll.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/de_DE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/de_DE.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/deezer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/deezer.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/delete.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/download.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/empty_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/empty_heart.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/en_US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/en_US.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/error.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/export_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/export_file.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/file.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/filled_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/filled_heart.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/folder.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/generic.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/ja_JP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/ja_JP.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/leave.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/light.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/link.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/onthespot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/onthespot.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/pirate_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/pirate_flag.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/play.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/pt_PT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/pt_PT.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/qobuz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/qobuz.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/queue.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/retry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/retry.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/save.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/search.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/soundcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/soundcloud.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/spotify.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/stop.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/tidal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/tidal.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/trash.png -------------------------------------------------------------------------------- /src/onthespot/resources/icons/youtube_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/icons/youtube_music.png -------------------------------------------------------------------------------- /src/onthespot/resources/org.onthespot.OnTheSpot.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/org.onthespot.OnTheSpot.desktop -------------------------------------------------------------------------------- /src/onthespot/resources/translations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/onthespot/resources/translations/de_DE.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/translations/de_DE.qm -------------------------------------------------------------------------------- /src/onthespot/resources/translations/de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/translations/de_DE.ts -------------------------------------------------------------------------------- /src/onthespot/resources/translations/ja_JP.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/translations/ja_JP.qm -------------------------------------------------------------------------------- /src/onthespot/resources/translations/ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/translations/ja_JP.ts -------------------------------------------------------------------------------- /src/onthespot/resources/translations/pt_PT.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/translations/pt_PT.qm -------------------------------------------------------------------------------- /src/onthespot/resources/translations/pt_PT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/translations/pt_PT.ts -------------------------------------------------------------------------------- /src/onthespot/resources/web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/onthespot/resources/web/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/web/about.html -------------------------------------------------------------------------------- /src/onthespot/resources/web/download_queue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/web/download_queue.html -------------------------------------------------------------------------------- /src/onthespot/resources/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/web/favicon.ico -------------------------------------------------------------------------------- /src/onthespot/resources/web/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/web/login.css -------------------------------------------------------------------------------- /src/onthespot/resources/web/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/web/login.html -------------------------------------------------------------------------------- /src/onthespot/resources/web/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/web/search.html -------------------------------------------------------------------------------- /src/onthespot/resources/web/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/web/settings.html -------------------------------------------------------------------------------- /src/onthespot/resources/web/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/web/style.css -------------------------------------------------------------------------------- /src/onthespot/resources/web/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/resources/web/utils.js -------------------------------------------------------------------------------- /src/onthespot/runtimedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/runtimedata.py -------------------------------------------------------------------------------- /src/onthespot/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/search.py -------------------------------------------------------------------------------- /src/onthespot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/utils.py -------------------------------------------------------------------------------- /src/onthespot/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/onthespot/web.py -------------------------------------------------------------------------------- /src/portable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justin025/onthespot/HEAD/src/portable.py --------------------------------------------------------------------------------