├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── feature_request.md │ └── getting-help.md ├── FETCH_HEAD ├── FreeDiLCD ├── LICENSE ├── colpic_helper.so ├── freedi_update.sh ├── helper.cpython-311-aarch64-linux-gnu.so ├── lcd.cpython-311-aarch64-linux-gnu.so ├── main.cpython-311-aarch64-linux-gnu.so ├── printer.cpython-311-aarch64-linux-gnu.so └── start.py ├── LICENSE ├── README.md ├── animation.gif ├── config_section ├── Plus4 │ ├── macros.cfg │ └── printer.cfg ├── Q1_Pro │ ├── macros.cfg │ └── printer.cfg ├── X-Max3 │ ├── macros.cfg │ └── printer.cfg ├── X-Plus3 │ ├── macros.cfg │ └── printer.cfg ├── X-Smart3 │ ├── macros.cfg │ └── printer.cfg └── generic │ ├── crowsnest.conf │ ├── freedi.cfg │ ├── macros.cfg │ ├── moonraker.conf │ └── printer.cfg ├── helpers ├── AutoFlasher.service ├── FreeDi.service ├── dtbo │ └── rockchip-mkspi-uart1.dtbo ├── flashtool.py ├── hid-flash ├── klipper_auto_flasher.sh ├── usbmounter.sh └── wifi │ ├── ax300-wifi-adapter-linux-driver.deb │ └── rtl8710bufw_SMIC.bin ├── install.sh ├── klipper_module ├── freedi.py ├── freedi_hall_filament_width_sensor.py └── qidi_auto_z_offset │ ├── LICENSE │ ├── README.md │ └── auto_z_offset.py ├── mainboard_and_toolhead_firmwares └── v0.13.0-154 │ ├── Toolhead_Plus4_katapult.bin │ ├── Toolhead_Plus4_klipper.bin │ ├── Toolhead_Q1_katapult.uf2 │ ├── Toolhead_Q1_klipper.bin │ ├── Toolhead_X3.uf2 │ ├── X_4.bin │ ├── flash_nuke.uf2 │ └── qd_mcu.bin ├── master ├── old_mainboard_and_toolhead_firmwares └── v0.10.0-530_old_stock │ ├── Toolhead_RP2040.uf2 │ └── X_4.bin ├── presliced_z-offset_calibration_files ├── Plus4 │ └── z-offset_calibration_Plus4_PLA_4m4s.gcode ├── Q1_Pro │ └── z-offset_calibration_Q1_Pro_PLA_4m6s.gcode ├── X-Max3 │ └── z-offset_calibration_X-Max3_PLA_8m46s.gcode ├── X-Plus3 │ └── z-offset_calibration_X-Plus3_PLA_4m4s.gcode └── X-Smart3 │ └── z-offset_calibration_X-Smart3_PLA_8m38s.gcode ├── requirements.txt ├── screen_firmwares ├── q1_pro_stable_v2.05.tft ├── x-plus3_x-max3_plus4_stable_v2.05.tft └── x-smart3_stable_v2.05.tft └── themes ├── Plus4 └── .theme │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon-180x180.png │ ├── custom.css │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── sidebar-background.png │ └── sidebar-logo.svg ├── Q1_Pro └── .theme │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon-180x180.png │ ├── custom.css │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── sidebar-background.png │ └── sidebar-logo.svg ├── X-Max3 └── .theme │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon-180x180.png │ ├── custom.css │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── sidebar-background.png │ └── sidebar-logo.svg ├── X-Plus3 └── .theme │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon-180x180.png │ ├── custom.css │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── sidebar-background.png │ └── sidebar-logo.svg └── X-Smart3 └── .theme ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon-180x180.png ├── custom.css ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── sidebar-background.png └── sidebar-logo.svg /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/getting-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/.github/ISSUE_TEMPLATE/getting-help.md -------------------------------------------------------------------------------- /FETCH_HEAD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FreeDiLCD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/FreeDiLCD/LICENSE -------------------------------------------------------------------------------- /FreeDiLCD/colpic_helper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/FreeDiLCD/colpic_helper.so -------------------------------------------------------------------------------- /FreeDiLCD/freedi_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/FreeDiLCD/freedi_update.sh -------------------------------------------------------------------------------- /FreeDiLCD/helper.cpython-311-aarch64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/FreeDiLCD/helper.cpython-311-aarch64-linux-gnu.so -------------------------------------------------------------------------------- /FreeDiLCD/lcd.cpython-311-aarch64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/FreeDiLCD/lcd.cpython-311-aarch64-linux-gnu.so -------------------------------------------------------------------------------- /FreeDiLCD/main.cpython-311-aarch64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/FreeDiLCD/main.cpython-311-aarch64-linux-gnu.so -------------------------------------------------------------------------------- /FreeDiLCD/printer.cpython-311-aarch64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/FreeDiLCD/printer.cpython-311-aarch64-linux-gnu.so -------------------------------------------------------------------------------- /FreeDiLCD/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/FreeDiLCD/start.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/README.md -------------------------------------------------------------------------------- /animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/animation.gif -------------------------------------------------------------------------------- /config_section/Plus4/macros.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/config_section/Plus4/macros.cfg -------------------------------------------------------------------------------- /config_section/Plus4/printer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/config_section/Plus4/printer.cfg -------------------------------------------------------------------------------- /config_section/Q1_Pro/macros.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/config_section/Q1_Pro/macros.cfg -------------------------------------------------------------------------------- /config_section/Q1_Pro/printer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/config_section/Q1_Pro/printer.cfg -------------------------------------------------------------------------------- /config_section/X-Max3/macros.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/config_section/X-Max3/macros.cfg -------------------------------------------------------------------------------- /config_section/X-Max3/printer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/config_section/X-Max3/printer.cfg -------------------------------------------------------------------------------- /config_section/X-Plus3/macros.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/config_section/X-Plus3/macros.cfg -------------------------------------------------------------------------------- /config_section/X-Plus3/printer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/config_section/X-Plus3/printer.cfg -------------------------------------------------------------------------------- /config_section/X-Smart3/macros.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/config_section/X-Smart3/macros.cfg -------------------------------------------------------------------------------- /config_section/X-Smart3/printer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/config_section/X-Smart3/printer.cfg -------------------------------------------------------------------------------- /config_section/generic/crowsnest.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/config_section/generic/crowsnest.conf -------------------------------------------------------------------------------- /config_section/generic/freedi.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/config_section/generic/freedi.cfg -------------------------------------------------------------------------------- /config_section/generic/macros.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/config_section/generic/macros.cfg -------------------------------------------------------------------------------- /config_section/generic/moonraker.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/config_section/generic/moonraker.conf -------------------------------------------------------------------------------- /config_section/generic/printer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/config_section/generic/printer.cfg -------------------------------------------------------------------------------- /helpers/AutoFlasher.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/helpers/AutoFlasher.service -------------------------------------------------------------------------------- /helpers/FreeDi.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/helpers/FreeDi.service -------------------------------------------------------------------------------- /helpers/dtbo/rockchip-mkspi-uart1.dtbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/helpers/dtbo/rockchip-mkspi-uart1.dtbo -------------------------------------------------------------------------------- /helpers/flashtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/helpers/flashtool.py -------------------------------------------------------------------------------- /helpers/hid-flash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/helpers/hid-flash -------------------------------------------------------------------------------- /helpers/klipper_auto_flasher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/helpers/klipper_auto_flasher.sh -------------------------------------------------------------------------------- /helpers/usbmounter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/helpers/usbmounter.sh -------------------------------------------------------------------------------- /helpers/wifi/ax300-wifi-adapter-linux-driver.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/helpers/wifi/ax300-wifi-adapter-linux-driver.deb -------------------------------------------------------------------------------- /helpers/wifi/rtl8710bufw_SMIC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/helpers/wifi/rtl8710bufw_SMIC.bin -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/install.sh -------------------------------------------------------------------------------- /klipper_module/freedi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/klipper_module/freedi.py -------------------------------------------------------------------------------- /klipper_module/freedi_hall_filament_width_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/klipper_module/freedi_hall_filament_width_sensor.py -------------------------------------------------------------------------------- /klipper_module/qidi_auto_z_offset/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/klipper_module/qidi_auto_z_offset/LICENSE -------------------------------------------------------------------------------- /klipper_module/qidi_auto_z_offset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/klipper_module/qidi_auto_z_offset/README.md -------------------------------------------------------------------------------- /klipper_module/qidi_auto_z_offset/auto_z_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/klipper_module/qidi_auto_z_offset/auto_z_offset.py -------------------------------------------------------------------------------- /mainboard_and_toolhead_firmwares/v0.13.0-154/Toolhead_Plus4_katapult.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/mainboard_and_toolhead_firmwares/v0.13.0-154/Toolhead_Plus4_katapult.bin -------------------------------------------------------------------------------- /mainboard_and_toolhead_firmwares/v0.13.0-154/Toolhead_Plus4_klipper.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/mainboard_and_toolhead_firmwares/v0.13.0-154/Toolhead_Plus4_klipper.bin -------------------------------------------------------------------------------- /mainboard_and_toolhead_firmwares/v0.13.0-154/Toolhead_Q1_katapult.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/mainboard_and_toolhead_firmwares/v0.13.0-154/Toolhead_Q1_katapult.uf2 -------------------------------------------------------------------------------- /mainboard_and_toolhead_firmwares/v0.13.0-154/Toolhead_Q1_klipper.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/mainboard_and_toolhead_firmwares/v0.13.0-154/Toolhead_Q1_klipper.bin -------------------------------------------------------------------------------- /mainboard_and_toolhead_firmwares/v0.13.0-154/Toolhead_X3.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/mainboard_and_toolhead_firmwares/v0.13.0-154/Toolhead_X3.uf2 -------------------------------------------------------------------------------- /mainboard_and_toolhead_firmwares/v0.13.0-154/X_4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/mainboard_and_toolhead_firmwares/v0.13.0-154/X_4.bin -------------------------------------------------------------------------------- /mainboard_and_toolhead_firmwares/v0.13.0-154/flash_nuke.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/mainboard_and_toolhead_firmwares/v0.13.0-154/flash_nuke.uf2 -------------------------------------------------------------------------------- /mainboard_and_toolhead_firmwares/v0.13.0-154/qd_mcu.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/mainboard_and_toolhead_firmwares/v0.13.0-154/qd_mcu.bin -------------------------------------------------------------------------------- /master: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /old_mainboard_and_toolhead_firmwares/v0.10.0-530_old_stock/Toolhead_RP2040.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/old_mainboard_and_toolhead_firmwares/v0.10.0-530_old_stock/Toolhead_RP2040.uf2 -------------------------------------------------------------------------------- /old_mainboard_and_toolhead_firmwares/v0.10.0-530_old_stock/X_4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/old_mainboard_and_toolhead_firmwares/v0.10.0-530_old_stock/X_4.bin -------------------------------------------------------------------------------- /presliced_z-offset_calibration_files/Plus4/z-offset_calibration_Plus4_PLA_4m4s.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/presliced_z-offset_calibration_files/Plus4/z-offset_calibration_Plus4_PLA_4m4s.gcode -------------------------------------------------------------------------------- /presliced_z-offset_calibration_files/Q1_Pro/z-offset_calibration_Q1_Pro_PLA_4m6s.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/presliced_z-offset_calibration_files/Q1_Pro/z-offset_calibration_Q1_Pro_PLA_4m6s.gcode -------------------------------------------------------------------------------- /presliced_z-offset_calibration_files/X-Max3/z-offset_calibration_X-Max3_PLA_8m46s.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/presliced_z-offset_calibration_files/X-Max3/z-offset_calibration_X-Max3_PLA_8m46s.gcode -------------------------------------------------------------------------------- /presliced_z-offset_calibration_files/X-Plus3/z-offset_calibration_X-Plus3_PLA_4m4s.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/presliced_z-offset_calibration_files/X-Plus3/z-offset_calibration_X-Plus3_PLA_4m4s.gcode -------------------------------------------------------------------------------- /presliced_z-offset_calibration_files/X-Smart3/z-offset_calibration_X-Smart3_PLA_8m38s.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/presliced_z-offset_calibration_files/X-Smart3/z-offset_calibration_X-Smart3_PLA_8m38s.gcode -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/requirements.txt -------------------------------------------------------------------------------- /screen_firmwares/q1_pro_stable_v2.05.tft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/screen_firmwares/q1_pro_stable_v2.05.tft -------------------------------------------------------------------------------- /screen_firmwares/x-plus3_x-max3_plus4_stable_v2.05.tft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/screen_firmwares/x-plus3_x-max3_plus4_stable_v2.05.tft -------------------------------------------------------------------------------- /screen_firmwares/x-smart3_stable_v2.05.tft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/screen_firmwares/x-smart3_stable_v2.05.tft -------------------------------------------------------------------------------- /themes/Plus4/.theme/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/Plus4/.theme/android-chrome-192x192.png -------------------------------------------------------------------------------- /themes/Plus4/.theme/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/Plus4/.theme/android-chrome-512x512.png -------------------------------------------------------------------------------- /themes/Plus4/.theme/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/Plus4/.theme/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /themes/Plus4/.theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/Plus4/.theme/custom.css -------------------------------------------------------------------------------- /themes/Plus4/.theme/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/Plus4/.theme/favicon-16x16.png -------------------------------------------------------------------------------- /themes/Plus4/.theme/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/Plus4/.theme/favicon-32x32.png -------------------------------------------------------------------------------- /themes/Plus4/.theme/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/Plus4/.theme/favicon.ico -------------------------------------------------------------------------------- /themes/Plus4/.theme/sidebar-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/Plus4/.theme/sidebar-background.png -------------------------------------------------------------------------------- /themes/Plus4/.theme/sidebar-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/Plus4/.theme/sidebar-logo.svg -------------------------------------------------------------------------------- /themes/Q1_Pro/.theme/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/Q1_Pro/.theme/android-chrome-192x192.png -------------------------------------------------------------------------------- /themes/Q1_Pro/.theme/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/Q1_Pro/.theme/android-chrome-512x512.png -------------------------------------------------------------------------------- /themes/Q1_Pro/.theme/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/Q1_Pro/.theme/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /themes/Q1_Pro/.theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/Q1_Pro/.theme/custom.css -------------------------------------------------------------------------------- /themes/Q1_Pro/.theme/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/Q1_Pro/.theme/favicon-16x16.png -------------------------------------------------------------------------------- /themes/Q1_Pro/.theme/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/Q1_Pro/.theme/favicon-32x32.png -------------------------------------------------------------------------------- /themes/Q1_Pro/.theme/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/Q1_Pro/.theme/favicon.ico -------------------------------------------------------------------------------- /themes/Q1_Pro/.theme/sidebar-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/Q1_Pro/.theme/sidebar-background.png -------------------------------------------------------------------------------- /themes/Q1_Pro/.theme/sidebar-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/Q1_Pro/.theme/sidebar-logo.svg -------------------------------------------------------------------------------- /themes/X-Max3/.theme/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Max3/.theme/android-chrome-192x192.png -------------------------------------------------------------------------------- /themes/X-Max3/.theme/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Max3/.theme/android-chrome-512x512.png -------------------------------------------------------------------------------- /themes/X-Max3/.theme/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Max3/.theme/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /themes/X-Max3/.theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Max3/.theme/custom.css -------------------------------------------------------------------------------- /themes/X-Max3/.theme/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Max3/.theme/favicon-16x16.png -------------------------------------------------------------------------------- /themes/X-Max3/.theme/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Max3/.theme/favicon-32x32.png -------------------------------------------------------------------------------- /themes/X-Max3/.theme/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Max3/.theme/favicon.ico -------------------------------------------------------------------------------- /themes/X-Max3/.theme/sidebar-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Max3/.theme/sidebar-background.png -------------------------------------------------------------------------------- /themes/X-Max3/.theme/sidebar-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Max3/.theme/sidebar-logo.svg -------------------------------------------------------------------------------- /themes/X-Plus3/.theme/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Plus3/.theme/android-chrome-192x192.png -------------------------------------------------------------------------------- /themes/X-Plus3/.theme/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Plus3/.theme/android-chrome-512x512.png -------------------------------------------------------------------------------- /themes/X-Plus3/.theme/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Plus3/.theme/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /themes/X-Plus3/.theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Plus3/.theme/custom.css -------------------------------------------------------------------------------- /themes/X-Plus3/.theme/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Plus3/.theme/favicon-16x16.png -------------------------------------------------------------------------------- /themes/X-Plus3/.theme/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Plus3/.theme/favicon-32x32.png -------------------------------------------------------------------------------- /themes/X-Plus3/.theme/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Plus3/.theme/favicon.ico -------------------------------------------------------------------------------- /themes/X-Plus3/.theme/sidebar-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Plus3/.theme/sidebar-background.png -------------------------------------------------------------------------------- /themes/X-Plus3/.theme/sidebar-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Plus3/.theme/sidebar-logo.svg -------------------------------------------------------------------------------- /themes/X-Smart3/.theme/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Smart3/.theme/android-chrome-192x192.png -------------------------------------------------------------------------------- /themes/X-Smart3/.theme/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Smart3/.theme/android-chrome-512x512.png -------------------------------------------------------------------------------- /themes/X-Smart3/.theme/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Smart3/.theme/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /themes/X-Smart3/.theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Smart3/.theme/custom.css -------------------------------------------------------------------------------- /themes/X-Smart3/.theme/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Smart3/.theme/favicon-16x16.png -------------------------------------------------------------------------------- /themes/X-Smart3/.theme/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Smart3/.theme/favicon-32x32.png -------------------------------------------------------------------------------- /themes/X-Smart3/.theme/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Smart3/.theme/favicon.ico -------------------------------------------------------------------------------- /themes/X-Smart3/.theme/sidebar-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Smart3/.theme/sidebar-background.png -------------------------------------------------------------------------------- /themes/X-Smart3/.theme/sidebar-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phil1988/FreeDi/HEAD/themes/X-Smart3/.theme/sidebar-logo.svg --------------------------------------------------------------------------------