├── .github └── workflows │ ├── Nuitka-Linux.yml │ ├── Nuitka-Windows.yml │ ├── Nuitka-macOS.yml │ ├── PyInstaller-Linux.yml │ ├── PyInstaller-Windows.yml │ └── PyInstaller-macOS.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── artemis-workspace.code-workspace ├── documentation ├── ArtemisLogoSmall.png ├── apple.png ├── linux.png └── win.png ├── requirements └── requirements.txt ├── spec_files ├── Linux │ ├── Artemis.spec │ ├── Artemis_onedir.spec │ ├── artemis3.svg │ ├── build.sh │ ├── create_shortcut.sh │ ├── raspbian_build.sh │ └── updater.spec ├── README.md ├── Windows │ ├── Artemis3.ico │ ├── Artemis_onedir.spec │ ├── artemis.spec │ ├── build.bat │ ├── excluded_files.txt │ └── updater.spec ├── __get_hash_code.py └── macOS │ ├── Artemis.spec │ └── Artemis3.icns ├── src ├── .flake8 ├── acfvalue.py ├── artemis.py ├── artemis.ui ├── audio_player.py ├── cacert.pem ├── clickable_progress_bar.py ├── constants.py ├── default_imgs.qrc ├── default_imgs_rc.py ├── default_pics │ ├── Artemis3.500px.png │ ├── Artemis3.ico │ ├── Artemis3.png │ ├── nosignalselected.png │ └── spectrumnotavailable.png ├── double_text_button.py ├── download_db_window.ui ├── download_window.py ├── downloadtargetfactory.py ├── executable_utilities.py ├── filters.py ├── fixed_aspect_ratio_label.py ├── fixed_aspect_ratio_widget.py ├── loggingconf.py ├── os_utilities.py ├── settings.py ├── spaceweathermanager.py ├── switchable_label.py ├── themes │ ├── acqua │ │ ├── acqua.qss │ │ ├── colors.txt │ │ └── icons │ │ │ ├── down-arrow.png │ │ │ ├── down-arrow_hover.png │ │ │ ├── down-arrow_off.png │ │ │ ├── search_icon.png │ │ │ ├── up-arrow.png │ │ │ ├── up-arrow_hover.png │ │ │ ├── up-arrow_off.png │ │ │ └── volume.png │ ├── console_style │ │ ├── colors.txt │ │ ├── console_style.qss │ │ └── icons │ │ │ ├── down-arrow.png │ │ │ ├── down-arrow_hover.png │ │ │ ├── down-arrow_off.png │ │ │ ├── search_icon.png │ │ │ ├── up-arrow.png │ │ │ ├── up-arrow_hover.png │ │ │ ├── up-arrow_off.png │ │ │ └── volume.png │ ├── dark │ │ ├── colors.txt │ │ ├── dark.qss │ │ └── icons │ │ │ ├── down-arrow.png │ │ │ ├── down-arrow_hover.png │ │ │ ├── down-arrow_off.png │ │ │ ├── off.png │ │ │ ├── off_press.png │ │ │ ├── on.png │ │ │ ├── on_press.png │ │ │ ├── search_icon.png │ │ │ ├── up-arrow.png │ │ │ ├── up-arrow_hover.png │ │ │ ├── up-arrow_off.png │ │ │ └── volume.png │ ├── elegant_dark │ │ ├── colors.txt │ │ ├── elegant_dark.qss │ │ └── icons │ │ │ ├── down-arrow.png │ │ │ ├── down-arrow_hover.png │ │ │ ├── down-arrow_off.png │ │ │ ├── search_icon.png │ │ │ ├── up-arrow.png │ │ │ ├── up-arrow_hover.png │ │ │ ├── up-arrow_off.png │ │ │ └── volume.png │ ├── material_design_dark │ │ ├── colors.txt │ │ ├── icons │ │ │ ├── down-arrow.png │ │ │ ├── down-arrow_hover.png │ │ │ ├── down-arrow_off.png │ │ │ ├── off.png │ │ │ ├── off_press.png │ │ │ ├── on.png │ │ │ ├── on_press.png │ │ │ ├── search_icon.png │ │ │ ├── up-arrow.png │ │ │ ├── up-arrow_hover.png │ │ │ ├── up-arrow_off.png │ │ │ └── volume.png │ │ └── material_design_dark.qss │ └── material_design_light │ │ ├── colors.txt │ │ ├── icons │ │ ├── down-arrow.png │ │ ├── down-arrow_hover.png │ │ ├── down-arrow_off.png │ │ ├── off.png │ │ ├── off_press.png │ │ ├── on.png │ │ ├── on_press.png │ │ ├── search_icon.png │ │ ├── up-arrow.png │ │ ├── up-arrow_hover.png │ │ ├── up-arrow_off.png │ │ └── volume.png │ │ └── material_design_light.qss ├── themesmanager.py ├── threads.py ├── updater.py ├── updatescontroller.py ├── urlbutton.py ├── utilities.py ├── versioncontroller.py ├── weatherdata.py └── web_utilities.py └── unused_installation_scripts ├── Linux ├── artemis3.svg ├── deploy_linux.sh └── requirements_lin.txt ├── README.md └── Windows ├── artemis3.ico ├── deploy_win.bat └── requirements_win.txt /.github/workflows/Nuitka-Linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/.github/workflows/Nuitka-Linux.yml -------------------------------------------------------------------------------- /.github/workflows/Nuitka-Windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/.github/workflows/Nuitka-Windows.yml -------------------------------------------------------------------------------- /.github/workflows/Nuitka-macOS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/.github/workflows/Nuitka-macOS.yml -------------------------------------------------------------------------------- /.github/workflows/PyInstaller-Linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/.github/workflows/PyInstaller-Linux.yml -------------------------------------------------------------------------------- /.github/workflows/PyInstaller-Windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/.github/workflows/PyInstaller-Windows.yml -------------------------------------------------------------------------------- /.github/workflows/PyInstaller-macOS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/.github/workflows/PyInstaller-macOS.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/README.md -------------------------------------------------------------------------------- /artemis-workspace.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/artemis-workspace.code-workspace -------------------------------------------------------------------------------- /documentation/ArtemisLogoSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/documentation/ArtemisLogoSmall.png -------------------------------------------------------------------------------- /documentation/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/documentation/apple.png -------------------------------------------------------------------------------- /documentation/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/documentation/linux.png -------------------------------------------------------------------------------- /documentation/win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/documentation/win.png -------------------------------------------------------------------------------- /requirements/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/requirements/requirements.txt -------------------------------------------------------------------------------- /spec_files/Linux/Artemis.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/spec_files/Linux/Artemis.spec -------------------------------------------------------------------------------- /spec_files/Linux/Artemis_onedir.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/spec_files/Linux/Artemis_onedir.spec -------------------------------------------------------------------------------- /spec_files/Linux/artemis3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/spec_files/Linux/artemis3.svg -------------------------------------------------------------------------------- /spec_files/Linux/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/spec_files/Linux/build.sh -------------------------------------------------------------------------------- /spec_files/Linux/create_shortcut.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/spec_files/Linux/create_shortcut.sh -------------------------------------------------------------------------------- /spec_files/Linux/raspbian_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/spec_files/Linux/raspbian_build.sh -------------------------------------------------------------------------------- /spec_files/Linux/updater.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/spec_files/Linux/updater.spec -------------------------------------------------------------------------------- /spec_files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/spec_files/README.md -------------------------------------------------------------------------------- /spec_files/Windows/Artemis3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/spec_files/Windows/Artemis3.ico -------------------------------------------------------------------------------- /spec_files/Windows/Artemis_onedir.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/spec_files/Windows/Artemis_onedir.spec -------------------------------------------------------------------------------- /spec_files/Windows/artemis.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/spec_files/Windows/artemis.spec -------------------------------------------------------------------------------- /spec_files/Windows/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/spec_files/Windows/build.bat -------------------------------------------------------------------------------- /spec_files/Windows/excluded_files.txt: -------------------------------------------------------------------------------- 1 | __current_theme -------------------------------------------------------------------------------- /spec_files/Windows/updater.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/spec_files/Windows/updater.spec -------------------------------------------------------------------------------- /spec_files/__get_hash_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/spec_files/__get_hash_code.py -------------------------------------------------------------------------------- /spec_files/macOS/Artemis.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/spec_files/macOS/Artemis.spec -------------------------------------------------------------------------------- /spec_files/macOS/Artemis3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/spec_files/macOS/Artemis3.icns -------------------------------------------------------------------------------- /src/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/.flake8 -------------------------------------------------------------------------------- /src/acfvalue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/acfvalue.py -------------------------------------------------------------------------------- /src/artemis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/artemis.py -------------------------------------------------------------------------------- /src/artemis.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/artemis.ui -------------------------------------------------------------------------------- /src/audio_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/audio_player.py -------------------------------------------------------------------------------- /src/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/cacert.pem -------------------------------------------------------------------------------- /src/clickable_progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/clickable_progress_bar.py -------------------------------------------------------------------------------- /src/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/constants.py -------------------------------------------------------------------------------- /src/default_imgs.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/default_imgs.qrc -------------------------------------------------------------------------------- /src/default_imgs_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/default_imgs_rc.py -------------------------------------------------------------------------------- /src/default_pics/Artemis3.500px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/default_pics/Artemis3.500px.png -------------------------------------------------------------------------------- /src/default_pics/Artemis3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/default_pics/Artemis3.ico -------------------------------------------------------------------------------- /src/default_pics/Artemis3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/default_pics/Artemis3.png -------------------------------------------------------------------------------- /src/default_pics/nosignalselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/default_pics/nosignalselected.png -------------------------------------------------------------------------------- /src/default_pics/spectrumnotavailable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/default_pics/spectrumnotavailable.png -------------------------------------------------------------------------------- /src/double_text_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/double_text_button.py -------------------------------------------------------------------------------- /src/download_db_window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/download_db_window.ui -------------------------------------------------------------------------------- /src/download_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/download_window.py -------------------------------------------------------------------------------- /src/downloadtargetfactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/downloadtargetfactory.py -------------------------------------------------------------------------------- /src/executable_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/executable_utilities.py -------------------------------------------------------------------------------- /src/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/filters.py -------------------------------------------------------------------------------- /src/fixed_aspect_ratio_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/fixed_aspect_ratio_label.py -------------------------------------------------------------------------------- /src/fixed_aspect_ratio_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/fixed_aspect_ratio_widget.py -------------------------------------------------------------------------------- /src/loggingconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/loggingconf.py -------------------------------------------------------------------------------- /src/os_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/os_utilities.py -------------------------------------------------------------------------------- /src/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/settings.py -------------------------------------------------------------------------------- /src/spaceweathermanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/spaceweathermanager.py -------------------------------------------------------------------------------- /src/switchable_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/switchable_label.py -------------------------------------------------------------------------------- /src/themes/acqua/acqua.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/acqua/acqua.qss -------------------------------------------------------------------------------- /src/themes/acqua/colors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/acqua/colors.txt -------------------------------------------------------------------------------- /src/themes/acqua/icons/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/acqua/icons/down-arrow.png -------------------------------------------------------------------------------- /src/themes/acqua/icons/down-arrow_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/acqua/icons/down-arrow_hover.png -------------------------------------------------------------------------------- /src/themes/acqua/icons/down-arrow_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/acqua/icons/down-arrow_off.png -------------------------------------------------------------------------------- /src/themes/acqua/icons/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/acqua/icons/search_icon.png -------------------------------------------------------------------------------- /src/themes/acqua/icons/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/acqua/icons/up-arrow.png -------------------------------------------------------------------------------- /src/themes/acqua/icons/up-arrow_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/acqua/icons/up-arrow_hover.png -------------------------------------------------------------------------------- /src/themes/acqua/icons/up-arrow_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/acqua/icons/up-arrow_off.png -------------------------------------------------------------------------------- /src/themes/acqua/icons/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/acqua/icons/volume.png -------------------------------------------------------------------------------- /src/themes/console_style/colors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/console_style/colors.txt -------------------------------------------------------------------------------- /src/themes/console_style/console_style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/console_style/console_style.qss -------------------------------------------------------------------------------- /src/themes/console_style/icons/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/console_style/icons/down-arrow.png -------------------------------------------------------------------------------- /src/themes/console_style/icons/down-arrow_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/console_style/icons/down-arrow_hover.png -------------------------------------------------------------------------------- /src/themes/console_style/icons/down-arrow_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/console_style/icons/down-arrow_off.png -------------------------------------------------------------------------------- /src/themes/console_style/icons/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/console_style/icons/search_icon.png -------------------------------------------------------------------------------- /src/themes/console_style/icons/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/console_style/icons/up-arrow.png -------------------------------------------------------------------------------- /src/themes/console_style/icons/up-arrow_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/console_style/icons/up-arrow_hover.png -------------------------------------------------------------------------------- /src/themes/console_style/icons/up-arrow_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/console_style/icons/up-arrow_off.png -------------------------------------------------------------------------------- /src/themes/console_style/icons/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/console_style/icons/volume.png -------------------------------------------------------------------------------- /src/themes/dark/colors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/dark/colors.txt -------------------------------------------------------------------------------- /src/themes/dark/dark.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/dark/dark.qss -------------------------------------------------------------------------------- /src/themes/dark/icons/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/dark/icons/down-arrow.png -------------------------------------------------------------------------------- /src/themes/dark/icons/down-arrow_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/dark/icons/down-arrow_hover.png -------------------------------------------------------------------------------- /src/themes/dark/icons/down-arrow_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/dark/icons/down-arrow_off.png -------------------------------------------------------------------------------- /src/themes/dark/icons/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/dark/icons/off.png -------------------------------------------------------------------------------- /src/themes/dark/icons/off_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/dark/icons/off_press.png -------------------------------------------------------------------------------- /src/themes/dark/icons/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/dark/icons/on.png -------------------------------------------------------------------------------- /src/themes/dark/icons/on_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/dark/icons/on_press.png -------------------------------------------------------------------------------- /src/themes/dark/icons/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/dark/icons/search_icon.png -------------------------------------------------------------------------------- /src/themes/dark/icons/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/dark/icons/up-arrow.png -------------------------------------------------------------------------------- /src/themes/dark/icons/up-arrow_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/dark/icons/up-arrow_hover.png -------------------------------------------------------------------------------- /src/themes/dark/icons/up-arrow_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/dark/icons/up-arrow_off.png -------------------------------------------------------------------------------- /src/themes/dark/icons/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/dark/icons/volume.png -------------------------------------------------------------------------------- /src/themes/elegant_dark/colors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/elegant_dark/colors.txt -------------------------------------------------------------------------------- /src/themes/elegant_dark/elegant_dark.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/elegant_dark/elegant_dark.qss -------------------------------------------------------------------------------- /src/themes/elegant_dark/icons/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/elegant_dark/icons/down-arrow.png -------------------------------------------------------------------------------- /src/themes/elegant_dark/icons/down-arrow_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/elegant_dark/icons/down-arrow_hover.png -------------------------------------------------------------------------------- /src/themes/elegant_dark/icons/down-arrow_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/elegant_dark/icons/down-arrow_off.png -------------------------------------------------------------------------------- /src/themes/elegant_dark/icons/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/elegant_dark/icons/search_icon.png -------------------------------------------------------------------------------- /src/themes/elegant_dark/icons/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/elegant_dark/icons/up-arrow.png -------------------------------------------------------------------------------- /src/themes/elegant_dark/icons/up-arrow_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/elegant_dark/icons/up-arrow_hover.png -------------------------------------------------------------------------------- /src/themes/elegant_dark/icons/up-arrow_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/elegant_dark/icons/up-arrow_off.png -------------------------------------------------------------------------------- /src/themes/elegant_dark/icons/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/elegant_dark/icons/volume.png -------------------------------------------------------------------------------- /src/themes/material_design_dark/colors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_dark/colors.txt -------------------------------------------------------------------------------- /src/themes/material_design_dark/icons/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_dark/icons/down-arrow.png -------------------------------------------------------------------------------- /src/themes/material_design_dark/icons/down-arrow_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_dark/icons/down-arrow_hover.png -------------------------------------------------------------------------------- /src/themes/material_design_dark/icons/down-arrow_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_dark/icons/down-arrow_off.png -------------------------------------------------------------------------------- /src/themes/material_design_dark/icons/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_dark/icons/off.png -------------------------------------------------------------------------------- /src/themes/material_design_dark/icons/off_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_dark/icons/off_press.png -------------------------------------------------------------------------------- /src/themes/material_design_dark/icons/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_dark/icons/on.png -------------------------------------------------------------------------------- /src/themes/material_design_dark/icons/on_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_dark/icons/on_press.png -------------------------------------------------------------------------------- /src/themes/material_design_dark/icons/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_dark/icons/search_icon.png -------------------------------------------------------------------------------- /src/themes/material_design_dark/icons/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_dark/icons/up-arrow.png -------------------------------------------------------------------------------- /src/themes/material_design_dark/icons/up-arrow_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_dark/icons/up-arrow_hover.png -------------------------------------------------------------------------------- /src/themes/material_design_dark/icons/up-arrow_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_dark/icons/up-arrow_off.png -------------------------------------------------------------------------------- /src/themes/material_design_dark/icons/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_dark/icons/volume.png -------------------------------------------------------------------------------- /src/themes/material_design_dark/material_design_dark.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_dark/material_design_dark.qss -------------------------------------------------------------------------------- /src/themes/material_design_light/colors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_light/colors.txt -------------------------------------------------------------------------------- /src/themes/material_design_light/icons/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_light/icons/down-arrow.png -------------------------------------------------------------------------------- /src/themes/material_design_light/icons/down-arrow_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_light/icons/down-arrow_hover.png -------------------------------------------------------------------------------- /src/themes/material_design_light/icons/down-arrow_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_light/icons/down-arrow_off.png -------------------------------------------------------------------------------- /src/themes/material_design_light/icons/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_light/icons/off.png -------------------------------------------------------------------------------- /src/themes/material_design_light/icons/off_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_light/icons/off_press.png -------------------------------------------------------------------------------- /src/themes/material_design_light/icons/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_light/icons/on.png -------------------------------------------------------------------------------- /src/themes/material_design_light/icons/on_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_light/icons/on_press.png -------------------------------------------------------------------------------- /src/themes/material_design_light/icons/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_light/icons/search_icon.png -------------------------------------------------------------------------------- /src/themes/material_design_light/icons/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_light/icons/up-arrow.png -------------------------------------------------------------------------------- /src/themes/material_design_light/icons/up-arrow_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_light/icons/up-arrow_hover.png -------------------------------------------------------------------------------- /src/themes/material_design_light/icons/up-arrow_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_light/icons/up-arrow_off.png -------------------------------------------------------------------------------- /src/themes/material_design_light/icons/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_light/icons/volume.png -------------------------------------------------------------------------------- /src/themes/material_design_light/material_design_light.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themes/material_design_light/material_design_light.qss -------------------------------------------------------------------------------- /src/themesmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/themesmanager.py -------------------------------------------------------------------------------- /src/threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/threads.py -------------------------------------------------------------------------------- /src/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/updater.py -------------------------------------------------------------------------------- /src/updatescontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/updatescontroller.py -------------------------------------------------------------------------------- /src/urlbutton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/urlbutton.py -------------------------------------------------------------------------------- /src/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/utilities.py -------------------------------------------------------------------------------- /src/versioncontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/versioncontroller.py -------------------------------------------------------------------------------- /src/weatherdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/weatherdata.py -------------------------------------------------------------------------------- /src/web_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/src/web_utilities.py -------------------------------------------------------------------------------- /unused_installation_scripts/Linux/artemis3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/unused_installation_scripts/Linux/artemis3.svg -------------------------------------------------------------------------------- /unused_installation_scripts/Linux/deploy_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/unused_installation_scripts/Linux/deploy_linux.sh -------------------------------------------------------------------------------- /unused_installation_scripts/Linux/requirements_lin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/unused_installation_scripts/Linux/requirements_lin.txt -------------------------------------------------------------------------------- /unused_installation_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/unused_installation_scripts/README.md -------------------------------------------------------------------------------- /unused_installation_scripts/Windows/artemis3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/unused_installation_scripts/Windows/artemis3.ico -------------------------------------------------------------------------------- /unused_installation_scripts/Windows/deploy_win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/unused_installation_scripts/Windows/deploy_win.bat -------------------------------------------------------------------------------- /unused_installation_scripts/Windows/requirements_win.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyk/Artemis/HEAD/unused_installation_scripts/Windows/requirements_win.txt --------------------------------------------------------------------------------