gitextract_zrp3by6s/ ├── .dockerignore ├── .github/ │ └── workflows/ │ ├── build.yml │ └── winget.yml ├── .gitignore ├── CHANGELOG.txt ├── Dockerfile ├── LICENSE ├── README.md ├── build.cmd ├── build.py ├── build_files/ │ ├── TkinterDnD2/ │ │ ├── TkinterDnD.py │ │ └── __init__.py │ ├── Updater.cs.txt │ ├── Updater.exe.MANIFEST │ ├── daemon.spec │ ├── flatpak-pip-generator.py │ ├── mc_version_info.txt │ ├── mcu_version_info.txt │ ├── onedir.spec │ ├── portable.spec │ ├── pyaudio-0.2.14-cp314-cp314-win_amd64.whl │ ├── pyinstaller-6.16.0-py3-none-any.whl │ ├── setup_script.iss │ ├── tkdnd2.9.2/ │ │ ├── pkgIndex.tcl │ │ ├── tkdnd.tcl │ │ ├── tkdnd2.9.2.lib │ │ ├── tkdnd_compat.tcl │ │ ├── tkdnd_generic.tcl │ │ ├── tkdnd_macosx.tcl │ │ ├── tkdnd_unix.tcl │ │ ├── tkdnd_utils.tcl │ │ └── tkdnd_windows.tcl │ └── updater.spec ├── conftest.py ├── linux_install.py ├── linux_install.sh ├── music_caster.desktop ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── resources/ │ ├── Music Caster Icon.psd │ ├── assets.psd │ ├── favicons/ │ │ ├── browserconfig.xml │ │ └── site.webmanifest │ ├── gude-2023-11-11.log │ └── icons/ │ └── icon.icns ├── scripts/ │ ├── arch-install.sh │ ├── debian-install.sh │ ├── fedora-install.sh │ ├── pre-req.sh │ └── suse-install.sh └── src/ ├── audio_player.py ├── b64_images.py ├── ca.elijahlopez.MusicCaster.yml ├── experiments.py ├── go.mod ├── go.sum ├── gui/ │ ├── __init__.py │ ├── components.py │ └── views.py ├── knownpaths.py ├── languages/ │ ├── da.txt │ ├── de.txt │ ├── en.txt │ ├── es.txt │ ├── fr.txt │ ├── it.txt │ ├── nl.txt │ ├── pt-br.txt │ ├── ru.txt │ ├── sk.txt │ └── uk.txt ├── meta.py ├── modules/ │ ├── db.py │ ├── error_reporting.py │ ├── iph1papi.py │ ├── playing_status.py │ ├── resolution_switcher.py │ ├── url_metadata.py │ └── win32_media_controls.py ├── music_caster.bat ├── music_caster.py ├── pyoxidizer.bzl ├── shared.py ├── static/ │ └── style.css ├── sys_tray.py ├── templates/ │ └── index.html ├── test_cases/ │ └── ipconfig.py ├── test_harness.py ├── theme/ │ ├── LICENSE │ ├── dark.tcl │ ├── light.tcl │ └── sun-valley.tcl ├── updater.go ├── utils.py ├── vlc_lib/ │ ├── libvlc.so.5.6.0 │ └── libvlccore.so.9.0.0 └── webview_demo.py