├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml └── workflows │ └── codeberg-mirror.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── page.codeberg.ethicalhaquer.galaxyflasher.svg └── screenshots │ ├── galaxy-flasher-flash-complete-page-dark.png │ ├── galaxy-flasher-flash-progress-page-dark.png │ ├── galaxy-flasher-flash-tool-setting-dark.png │ ├── galaxy-flasher-select-device-page-dark.png │ ├── galaxy-flasher-select-files-page-dark.png │ ├── galaxy-flasher-select-partitions-page-dark.png │ ├── galaxy-flasher-settings-dialog-dark.png │ ├── galaxy-flasher-start-page-dark.png │ ├── galaxy-flasher-theme-setting-dark.png │ └── galaxy-flasher-verify-flash-page-dark.png └── source ├── data ├── build-flatpak.sh ├── build-python.sh ├── flatpak-pip-generator ├── galaxy-flasher.sh ├── icons │ ├── checkmark-symbolic.svg │ ├── cross-small-symbolic.svg │ ├── document-open-symbolic.svg │ ├── info-outline-symbolic.svg │ ├── menu-large-symbolic.svg │ ├── page.codeberg.ethicalhaquer.galaxyflasher.Source.svg │ ├── page.codeberg.ethicalhaquer.galaxyflasher.png │ └── page.codeberg.ethicalhaquer.galaxyflasher.svg ├── page.codeberg.ethicalhaquer.galaxyflasher.desktop ├── page.codeberg.ethicalhaquer.galaxyflasher.metainfo.xml ├── page.codeberg.ethicalhaquer.galaxyflasher.yml ├── python3-requirements.json ├── requirements.txt └── resources.gresource.xml ├── flash_tool_plugins ├── __init__.py ├── odin4.py ├── thor.py └── wannabe.py ├── galaxy_flasher_gtk.py ├── locales ├── README.md └── en.json ├── odin4-wrapper.sh ├── share └── resources │ └── resources.gresource ├── shared_utils.py └── usb.ids /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/codeberg-mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/.github/workflows/codeberg-mirror.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/README.md -------------------------------------------------------------------------------- /assets/page.codeberg.ethicalhaquer.galaxyflasher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/assets/page.codeberg.ethicalhaquer.galaxyflasher.svg -------------------------------------------------------------------------------- /assets/screenshots/galaxy-flasher-flash-complete-page-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/assets/screenshots/galaxy-flasher-flash-complete-page-dark.png -------------------------------------------------------------------------------- /assets/screenshots/galaxy-flasher-flash-progress-page-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/assets/screenshots/galaxy-flasher-flash-progress-page-dark.png -------------------------------------------------------------------------------- /assets/screenshots/galaxy-flasher-flash-tool-setting-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/assets/screenshots/galaxy-flasher-flash-tool-setting-dark.png -------------------------------------------------------------------------------- /assets/screenshots/galaxy-flasher-select-device-page-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/assets/screenshots/galaxy-flasher-select-device-page-dark.png -------------------------------------------------------------------------------- /assets/screenshots/galaxy-flasher-select-files-page-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/assets/screenshots/galaxy-flasher-select-files-page-dark.png -------------------------------------------------------------------------------- /assets/screenshots/galaxy-flasher-select-partitions-page-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/assets/screenshots/galaxy-flasher-select-partitions-page-dark.png -------------------------------------------------------------------------------- /assets/screenshots/galaxy-flasher-settings-dialog-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/assets/screenshots/galaxy-flasher-settings-dialog-dark.png -------------------------------------------------------------------------------- /assets/screenshots/galaxy-flasher-start-page-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/assets/screenshots/galaxy-flasher-start-page-dark.png -------------------------------------------------------------------------------- /assets/screenshots/galaxy-flasher-theme-setting-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/assets/screenshots/galaxy-flasher-theme-setting-dark.png -------------------------------------------------------------------------------- /assets/screenshots/galaxy-flasher-verify-flash-page-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/assets/screenshots/galaxy-flasher-verify-flash-page-dark.png -------------------------------------------------------------------------------- /source/data/build-flatpak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/data/build-flatpak.sh -------------------------------------------------------------------------------- /source/data/build-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/data/build-python.sh -------------------------------------------------------------------------------- /source/data/flatpak-pip-generator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/data/flatpak-pip-generator -------------------------------------------------------------------------------- /source/data/galaxy-flasher.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd /app || exit 1 3 | 4 | ./galaxy_flasher_gtk.py 5 | -------------------------------------------------------------------------------- /source/data/icons/checkmark-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/data/icons/checkmark-symbolic.svg -------------------------------------------------------------------------------- /source/data/icons/cross-small-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/data/icons/cross-small-symbolic.svg -------------------------------------------------------------------------------- /source/data/icons/document-open-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/data/icons/document-open-symbolic.svg -------------------------------------------------------------------------------- /source/data/icons/info-outline-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/data/icons/info-outline-symbolic.svg -------------------------------------------------------------------------------- /source/data/icons/menu-large-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/data/icons/menu-large-symbolic.svg -------------------------------------------------------------------------------- /source/data/icons/page.codeberg.ethicalhaquer.galaxyflasher.Source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/data/icons/page.codeberg.ethicalhaquer.galaxyflasher.Source.svg -------------------------------------------------------------------------------- /source/data/icons/page.codeberg.ethicalhaquer.galaxyflasher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/data/icons/page.codeberg.ethicalhaquer.galaxyflasher.png -------------------------------------------------------------------------------- /source/data/icons/page.codeberg.ethicalhaquer.galaxyflasher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/data/icons/page.codeberg.ethicalhaquer.galaxyflasher.svg -------------------------------------------------------------------------------- /source/data/page.codeberg.ethicalhaquer.galaxyflasher.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/data/page.codeberg.ethicalhaquer.galaxyflasher.desktop -------------------------------------------------------------------------------- /source/data/page.codeberg.ethicalhaquer.galaxyflasher.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/data/page.codeberg.ethicalhaquer.galaxyflasher.metainfo.xml -------------------------------------------------------------------------------- /source/data/page.codeberg.ethicalhaquer.galaxyflasher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/data/page.codeberg.ethicalhaquer.galaxyflasher.yml -------------------------------------------------------------------------------- /source/data/python3-requirements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/data/python3-requirements.json -------------------------------------------------------------------------------- /source/data/requirements.txt: -------------------------------------------------------------------------------- 1 | pexpect 2 | -------------------------------------------------------------------------------- /source/data/resources.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/data/resources.gresource.xml -------------------------------------------------------------------------------- /source/flash_tool_plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/flash_tool_plugins/__init__.py -------------------------------------------------------------------------------- /source/flash_tool_plugins/odin4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/flash_tool_plugins/odin4.py -------------------------------------------------------------------------------- /source/flash_tool_plugins/thor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/flash_tool_plugins/thor.py -------------------------------------------------------------------------------- /source/flash_tool_plugins/wannabe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/flash_tool_plugins/wannabe.py -------------------------------------------------------------------------------- /source/galaxy_flasher_gtk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/galaxy_flasher_gtk.py -------------------------------------------------------------------------------- /source/locales/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/locales/README.md -------------------------------------------------------------------------------- /source/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/locales/en.json -------------------------------------------------------------------------------- /source/odin4-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/odin4-wrapper.sh -------------------------------------------------------------------------------- /source/share/resources/resources.gresource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/share/resources/resources.gresource -------------------------------------------------------------------------------- /source/shared_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/shared_utils.py -------------------------------------------------------------------------------- /source/usb.ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-haquer/Galaxy-Flasher/HEAD/source/usb.ids --------------------------------------------------------------------------------