trcc-linux 1.2.16__tar.gz → 1.2.18__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/PKG-INFO +12 -4
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/README.md +11 -3
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/pyproject.toml +1 -1
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/__version__.py +8 -1
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/cli.py +4 -4
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/core/controllers.py +5 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/core/models.py +3 -1
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/device_detector.py +11 -11
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/hid_device.py +57 -11
- trcc_linux-1.2.18/src/trcc/kvm_led_device.py +228 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/led_device.py +35 -19
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/qt_app_mvc.py +8 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/uc_led_control.py +50 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/scsi_device.py +29 -9
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/hid_testing/test_led_controller.py +2 -2
- trcc_linux-1.2.18/tests/test_kvm_led_device.py +316 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/.gitignore +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/LICENSE +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/__init__.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/__main__.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/fonts/MSYH.TTC +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/fonts/MSYHBD.TTC +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/fonts/README.md +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/240240.gif +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/240320.gif +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/320240.gif +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/320320.gif +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A0/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A0/345/205/263/344/272/216d.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A0/345/205/263/344/272/216e.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A0/345/205/263/344/272/216en.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A0/345/205/263/344/272/216f.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A0/345/205/263/344/272/216p.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A0/345/205/263/344/272/216r.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A0/345/205/263/344/272/216tc.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A0/345/205/263/344/272/216x.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A0/345/220/257/345/212/250/347/225/214/351/235/242.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A0/346/225/260/346/215/256/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207en.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207tc.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A0/347/241/254/344/273/266/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1AK120 Digital.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1AK120 Digitala.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1AK120_Digital.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1AK120_Digitala.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1AS120 VISION.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1AS120 VISIONa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1AS120_VISION.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1AS120_VISIONa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1AX120 DIGITAL.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1AX120 DIGITALa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1AX120_DIGITAL.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1AX120_DIGITALa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1BA120 VISION.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1BA120 VISIONa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1BA120_VISION.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1BA120_VISIONa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1CORE VISION.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1CORE VISIONa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1CORE_VISION.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1CORE_VISIONa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1CZ1.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1CZ1a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1CZTV.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1CZTVa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1ELITE VISION.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1ELITE VISIONa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1ELITE_VISION.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1ELITE_VISIONa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN HORIZON PRO.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN HORIZON PROa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN MAGIC PRO.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN MAGIC PROa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN VISION V2.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN VISION V2a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN WARFRAME PRO.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN WARFRAME PROa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN WARFRAME SE.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN WARFRAME SEa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN WARFRAME.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN WARFRAMEa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN_HORIZON_PROa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN_MAGIC_PROa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN_VISION_V2.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN_VISION_V2a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN_WARFRAME.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PRO.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PROa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SE.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SEa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1FROZEN_WARFRAMEa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1GRAND VISION.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1GRAND VISIONa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1GRAND_VISION.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1GRAND_VISIONa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITAL.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITALa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1HYPER VISION.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1HYPER VISIONa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1HYPER_VISION.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1HYPER_VISIONa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1KVMALEDC6.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1KVMALEDC6a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LC1.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LC1a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LC2.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LC2JD.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LC2JDa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LC2a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LC3.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LC3a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LC5.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LC5a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF10.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF10a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF11.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF11a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF12.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF12a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF13.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF13a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF14.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF14a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF15.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF15a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF16.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF167.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF16a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF17a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF18.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF18a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF19.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF19a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF8.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LF8a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LM16SE.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LM16SEa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LM22.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LM22a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LM24.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LM24a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LM26.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LM26a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LM27.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1LM27a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1Mjolnir VISION PRO.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1Mjolnir VISION PROa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1Mjolnir VISION.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1Mjolnir VISIONa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1Mjolnir_VISION.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1Mjolnir_VISION_PRO.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1Mjolnir_VISION_PROa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1Mjolnir_VISIONa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1PA120 DIGITAL.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1PA120 DIGITALa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1PA120_DIGITAL.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1PA120_DIGITALa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1RK120 DIGITAL.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1RK120 DIGITALa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1RK120_DIGITAL.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1RK120_DIGITALa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1RP130 VISION.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1RP130 VISIONa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1RP130_VISION.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1RP130_VISIONa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1Stream Vision.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1Stream Visiona.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1Stream_Vision.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1Stream_Visiona.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A1/345/205/263/344/272/216a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A2/344/270/213/346/213/211/346/241/206/345/272/225/345/233/276.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A2/344/270/213/346/213/211/346/241/206/351/200/211/346/213/251/346/235/241.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A2/344/270/213/346/213/211/351/200/211/346/213/251/346/241/206.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A2/347/253/213/345/215/263/346/233/264/346/226/260.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/Acpu.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/Adram.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/Afan.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/Agpu.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/Ahdd.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/Alogout/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/Alogout/351/273/230/350/256/244.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/Anet.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A/344/270/212/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A/344/270/213/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A/345/242/236/345/212/240/346/225/260/347/273/204.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A/346/225/260/346/215/256/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A/346/273/232/345/212/250/346/235/241.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/A/350/207/252/345/256/232/344/271/211.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0CZ1.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0CZ1d.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0CZ1e.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0CZ1en.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0CZ1f.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0CZ1p.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0CZ1r.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0CZ1tc.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0CZ1x.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0KVMA/347/201/257/346/216/247.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LC1.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LC1d.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LC1e.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LC1en.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LC1f.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LC1p.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LC1r.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LC1tc.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LC1x.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LC2.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LC2d.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LC2e.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LC2en.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LC2f.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LC2p.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LC2r.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LC2tc.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LC2x.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF10.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF10d.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF10e.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF10en.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF10f.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF10p.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF10r.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF10tc.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF10x.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF11.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF11d.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF11e.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF11en.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF11f.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF11p.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF11r.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF11tc.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF11x.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF12.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF12d.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF12e.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF12en.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF12f.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF12p.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF12r.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF12tc.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF12x.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF13.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF13d.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF13e.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF13en.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF13f.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF13p.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF13r.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF13tc.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF13x.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF15.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF15d.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF15e.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF15en.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF15f.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF15p.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF15r.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF15tc.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF15x.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF8.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF8d.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF8e.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF8en.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF8f.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF8p.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF8r.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF8tc.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0LF8x.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0rgblf13.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237d.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237e.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237en.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237f.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237p.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237r.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237tc.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237x.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217d.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217e.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217en.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217f.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217p.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217r.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217tc.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217x.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D1/345/244/264/347/233/2241.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D1/345/244/264/347/233/2242.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D1/345/244/264/347/233/2243.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D1/345/244/264/347/233/2244.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D1/345/244/264/347/233/2245.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/2111.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/21110.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/21110a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/21111.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/21111a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/21112.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/21112a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/2111a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/2112.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/2112a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/2113.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/2113a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/2114.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/2114a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/2115.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/2115a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/2116.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/2116a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/2117.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/2117a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/2118.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/2118a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/2119.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D2/347/201/257/345/205/2119a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D3/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D3/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D3/345/274/200/345/205/263b.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D3/346/227/213/351/222/256.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D3/346/227/213/351/222/2560.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D3/346/251/231.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D3/346/271/226.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D3/346/273/221/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D3/347/231/275.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D3/347/264/253.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D3/347/272/242.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D3/347/273/277.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D3/350/223/235.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D3/351/273/204.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/345/274/200/346/234/272.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/345/274/200/346/234/272a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/346/214/211/351/222/2561.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/346/214/211/351/222/2561a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/346/214/211/351/222/2562a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/346/214/211/351/222/2563.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/346/214/211/351/222/2563a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/346/214/211/351/222/2564.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/346/214/211/351/222/2564a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/346/250/241/345/274/2171.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/346/250/241/345/274/2171a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/346/250/241/345/274/2172.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/346/250/241/345/274/2172a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/346/250/241/345/274/2173.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/346/250/241/345/274/2173a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/346/250/241/345/274/2174.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/346/250/241/345/274/2174a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/346/250/241/345/274/2175.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/346/250/241/345/274/2175a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/346/250/241/345/274/2176.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D4/346/250/241/345/274/2176a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/DAK120_DIGITAL.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/DAX120_DIGITAL.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/DCZ1.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/DFROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/DFROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/DLC1.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/DLC2.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/DLF10.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/DLF11.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/DLF12.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/DLF13.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/DLF15.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/DLF8.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/DPA120 DIGITAL.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/DPA120_DIGITAL.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/Dch1.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/Dch2.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/Dch3.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/Dch4.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/Dchcz1.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/2062.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/225.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/2252.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/256.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/2562.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultra.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultraa.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/206/205/345/256/271d.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/206/205/345/256/271e.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/206/205/345/256/271en.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/206/205/345/256/271f.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/206/205/345/256/271p.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/206/205/345/256/271r.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/206/205/345/256/271tc.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/206/205/345/256/271x.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/212/250/347/224/273/350/201/224/345/212/250.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277d.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277e.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277en.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277f.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277p.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277r.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277tc.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277x.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/242/236/345/212/240/345/206/205/345/256/271/351/201/256/347/275/251.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277d.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277e.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277en.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277f.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277p.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277r.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277tc.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277x.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xy.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyd.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xye.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyen.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyf.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyp.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyr.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xytc.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyx.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yx.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxd.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxe.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxen.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxf.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxp.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxr.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxtc.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxx.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250d.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250e.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250en.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250f.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250p.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250r.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250tc.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250x.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/346/250/241/345/235/227/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272d.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272e.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272f.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272p.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272r.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272x.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227en.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227tc.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2501.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2502.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2503.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0CZTV.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0CZTVd.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0CZTVe.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0CZTVen.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0CZTVf.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0CZTVp.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0CZTVr.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0CZTVtc.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0CZTVx.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0M1.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0M2.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0M3.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0M4.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0M5.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0M5a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0M6.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230d.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230e.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230en.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230f.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230p.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230r.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230tc.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230x.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/346/222/255/346/224/276.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/346/222/255/346/224/276/345/231/250/346/216/247/345/210/266.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/346/232/202/345/201/234.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230d.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230e.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230en.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230f.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230p.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230r.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230tc.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230x.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257d.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257e.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257f.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257p.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257r.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257x.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/351/242/204/350/247/210.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/351/242/204/350/247/210a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271280X480.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X462.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227360X800.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227462X1920.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X1280.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X800.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X854.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227540X960.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X360.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X480.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227854X480.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227960X540.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P12H.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P240240.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P240320.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P24H.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P320240.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P320320.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/PDM.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/PDMY.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/PL0.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/PL1.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/PL2.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/PL3.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/PM1.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/PM1a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/PM2.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/PM2a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/PM3.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/PM3a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/PM4.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/PM4a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/PM5.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/PM5a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/PM6.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/PM6a.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/PMD.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/PYMD.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206/345/272/225/345/233/2762X.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206/345/272/225/345/233/2764X.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206/351/253/230/344/272/256.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/344/270/273/351/242/230/345/210/206/347/261/273/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/344/270/273/351/242/230/345/210/206/347/261/273/351/200/211/346/213/2510.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/344/277/235/345/255/230/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/207/217.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227b.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/212/240.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/217/226/350/211/262.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/220/270/347/256/241.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/233/276/347/211/207.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/234/206/345/275/242/345/205/263/351/227/255.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/234/206/345/275/242/347/241/256/345/256/232.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/244/232/351/200/211.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/244/232/351/200/211a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/256/275/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/257/274/345/205/245.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/257/274/345/207/272.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/257/274/345/207/272/346/211/200/346/234/211/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/345/270/256/345/212/251.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/346/225/260/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/346/225/260/346/215/256.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/346/226/207/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/346/227/213/350/275/254.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206A.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/205/263.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/274/200.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/346/273/221/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/346/273/232/345/212/250/346/235/241/345/272/225/345/233/276.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/346/273/232/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233180.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233270.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/23390.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a180.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a270.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a90.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b180.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b270.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b90.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206A.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/216/257H1.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/216/257H2.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/216/257H3.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/216/257H4.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/216/257H5.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/216/257H6.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/233/264/346/222/255/350/247/206/351/242/221/350/275/275/345/205/245.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/275/221/347/273/234.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/347/275/221/347/273/234/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/350/243/201/345/207/217.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/350/247/206/351/242/221.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/350/275/256/346/222/2551.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/350/275/256/346/222/2552.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/350/275/256/346/222/2553.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/350/275/256/346/222/2554.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/350/275/256/346/222/2555.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/350/275/256/346/222/2556.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/350/275/256/346/222/255/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/350/275/275/345/205/245/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/350/277/233/345/272/246/346/235/241.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206M.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206Ma.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210116X480.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210180X400.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210180X480.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210240X240.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210240X320.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210240X400.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210240X427.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210270X480.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210320X240.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320/345/234/206.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210360360/345/234/206.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210400X180.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210400X240.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210427X240.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210480X116.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210480X180.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210480X270.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480/345/234/206.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251320320/345/234/206.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251360360/345/234/206.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251480480/345/234/206.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/234/350/211/262/346/273/221/345/212/250/345/235/227.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/242/234/350/211/262/351/200/211/346/213/251/345/234/210.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/P/351/253/230/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/p0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/p/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/ucBoFangQiKongZhi1.BackgroundImage.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/ucBoFangQiKongZhi1_BackgroundImage.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/ucVideoCut1.BackgroundImage.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/ucVideoCut1_BackgroundImage.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/ucXiTongXianShi1.BackgroundImage.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/ucXiTongXianShiAdd1.BackgroundImage.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/ucXiTongXianShiColor1.BackgroundImage.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/gui/ucXiTongXianShiTable1.BackgroundImage.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/icons/app.ico +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/icons/trcc.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/icons/trcc_128x128.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/icons/trcc_16x16.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/icons/trcc_24x24.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/icons/trcc_256x256.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/icons/trcc_32x32.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/icons/trcc_48x48.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/assets/icons/trcc_64x64.png +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/binary_reader.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/cloud_downloader.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/conf.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/core/__init__.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/dc_config.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/dc_parser.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/dc_writer.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/device_base.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/device_factory.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/device_implementations.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/gif_animator.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/hr10_display.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/hr10_tempd.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/lcd_driver.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/overlay_renderer.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/paths.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/__init__.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/assets.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/base.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/constants.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/eyedropper.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/pipewire_capture.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/screen_capture.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/uc_about.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/uc_activity_sidebar.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/uc_color_wheel.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/uc_device.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/uc_image_cut.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/uc_info_module.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/uc_preview.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/uc_screen_led.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/uc_sensor_picker.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/uc_seven_segment.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/uc_system_info.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/uc_theme_local.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/uc_theme_mask.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/uc_theme_setting.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/uc_theme_web.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/qt_components/uc_video_cut.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/sensor_enumerator.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/sysinfo_config.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/system_info.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/theme_downloader.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/src/trcc/theme_io.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/README.md +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/__init__.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/hid_testing/__init__.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/hid_testing/conftest.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/hid_testing/test_device_factory.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/hid_testing/test_hid_device.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/hid_testing/test_led_device.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/run_tests.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_cli.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_cloud_downloader.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_controllers.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_dc_parser.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_dc_writer.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_device_detector.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_device_implementations.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_gif_animator.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_hr10_display.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_integration.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_lcd_driver.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_models.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_overlay_renderer.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_paths.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_qt_base.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_qt_constants.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_qt_widgets.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_scsi_device.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_sensor_enumerator.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_sysinfo_config.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_system_info.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_theme_downloader.py +0 -0
- {trcc_linux-1.2.16 → trcc_linux-1.2.18}/tests/test_theme_io.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: trcc-linux
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.18
|
|
4
4
|
Summary: Linux implementation of Thermalright LCD Control Center
|
|
5
5
|
Project-URL: Homepage, https://github.com/Lexonight1/thermalright-trcc-linux
|
|
6
6
|
Project-URL: Documentation, https://github.com/Lexonight1/thermalright-trcc-linux#readme
|
|
@@ -205,9 +205,16 @@ environment.systemPackages = with pkgs; [
|
|
|
205
205
|
python3Packages.psutil sg3_utils ffmpeg p7zip
|
|
206
206
|
];
|
|
207
207
|
services.udev.extraRules = ''
|
|
208
|
-
|
|
209
|
-
SUBSYSTEM=="scsi_generic", ATTRS{idVendor}=="
|
|
210
|
-
SUBSYSTEM=="scsi_generic", ATTRS{idVendor}=="
|
|
208
|
+
# SCSI LCD devices
|
|
209
|
+
SUBSYSTEM=="scsi_generic", ATTRS{idVendor}=="87cd", ATTRS{idProduct}=="70db", MODE="0666"
|
|
210
|
+
SUBSYSTEM=="scsi_generic", ATTRS{idVendor}=="87ad", ATTRS{idProduct}=="70db", MODE="0666"
|
|
211
|
+
SUBSYSTEM=="scsi_generic", ATTRS{idVendor}=="0416", ATTRS{idProduct}=="5406", MODE="0666"
|
|
212
|
+
SUBSYSTEM=="scsi_generic", ATTRS{idVendor}=="0402", ATTRS{idProduct}=="3922", MODE="0666"
|
|
213
|
+
# HID LCD/LED devices
|
|
214
|
+
SUBSYSTEM=="hidraw", ATTRS{idVendor}=="0416", ATTRS{idProduct}=="5302", MODE="0666"
|
|
215
|
+
SUBSYSTEM=="hidraw", ATTRS{idVendor}=="0418", ATTRS{idProduct}=="5303", MODE="0666"
|
|
216
|
+
SUBSYSTEM=="hidraw", ATTRS{idVendor}=="0418", ATTRS{idProduct}=="5304", MODE="0666"
|
|
217
|
+
SUBSYSTEM=="hidraw", ATTRS{idVendor}=="0416", ATTRS{idProduct}=="8001", MODE="0666"
|
|
211
218
|
'';
|
|
212
219
|
```
|
|
213
220
|
Then:
|
|
@@ -233,6 +240,7 @@ See the **[CLI Reference](doc/CLI_REFERENCE.md)** for all 15 commands, options,
|
|
|
233
240
|
| Document | Description |
|
|
234
241
|
|----------|-------------|
|
|
235
242
|
| [Install Guide](doc/INSTALL_GUIDE.md) | Installation for all major distros |
|
|
243
|
+
| [Troubleshooting](doc/TROUBLESHOOTING.md) | Common issues and fixes |
|
|
236
244
|
| [CLI Reference](doc/CLI_REFERENCE.md) | All commands, options, and troubleshooting |
|
|
237
245
|
| [Changelog](doc/CHANGELOG.md) | Version history |
|
|
238
246
|
| [Architecture](doc/ARCHITECTURE.md) | Project layout and design |
|
|
@@ -153,9 +153,16 @@ environment.systemPackages = with pkgs; [
|
|
|
153
153
|
python3Packages.psutil sg3_utils ffmpeg p7zip
|
|
154
154
|
];
|
|
155
155
|
services.udev.extraRules = ''
|
|
156
|
-
|
|
157
|
-
SUBSYSTEM=="scsi_generic", ATTRS{idVendor}=="
|
|
158
|
-
SUBSYSTEM=="scsi_generic", ATTRS{idVendor}=="
|
|
156
|
+
# SCSI LCD devices
|
|
157
|
+
SUBSYSTEM=="scsi_generic", ATTRS{idVendor}=="87cd", ATTRS{idProduct}=="70db", MODE="0666"
|
|
158
|
+
SUBSYSTEM=="scsi_generic", ATTRS{idVendor}=="87ad", ATTRS{idProduct}=="70db", MODE="0666"
|
|
159
|
+
SUBSYSTEM=="scsi_generic", ATTRS{idVendor}=="0416", ATTRS{idProduct}=="5406", MODE="0666"
|
|
160
|
+
SUBSYSTEM=="scsi_generic", ATTRS{idVendor}=="0402", ATTRS{idProduct}=="3922", MODE="0666"
|
|
161
|
+
# HID LCD/LED devices
|
|
162
|
+
SUBSYSTEM=="hidraw", ATTRS{idVendor}=="0416", ATTRS{idProduct}=="5302", MODE="0666"
|
|
163
|
+
SUBSYSTEM=="hidraw", ATTRS{idVendor}=="0418", ATTRS{idProduct}=="5303", MODE="0666"
|
|
164
|
+
SUBSYSTEM=="hidraw", ATTRS{idVendor}=="0418", ATTRS{idProduct}=="5304", MODE="0666"
|
|
165
|
+
SUBSYSTEM=="hidraw", ATTRS{idVendor}=="0416", ATTRS{idProduct}=="8001", MODE="0666"
|
|
159
166
|
'';
|
|
160
167
|
```
|
|
161
168
|
Then:
|
|
@@ -181,6 +188,7 @@ See the **[CLI Reference](doc/CLI_REFERENCE.md)** for all 15 commands, options,
|
|
|
181
188
|
| Document | Description |
|
|
182
189
|
|----------|-------------|
|
|
183
190
|
| [Install Guide](doc/INSTALL_GUIDE.md) | Installation for all major distros |
|
|
191
|
+
| [Troubleshooting](doc/TROUBLESHOOTING.md) | Common issues and fixes |
|
|
184
192
|
| [CLI Reference](doc/CLI_REFERENCE.md) | All commands, options, and troubleshooting |
|
|
185
193
|
| [Changelog](doc/CHANGELOG.md) | Version history |
|
|
186
194
|
| [Architecture](doc/ARCHITECTURE.md) | Project layout and design |
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"""TRCC Linux version information."""
|
|
2
2
|
|
|
3
|
-
__version__ = "1.2.
|
|
3
|
+
__version__ = "1.2.18"
|
|
4
4
|
__version_info__ = tuple(int(x) for x in __version__.split("."))
|
|
5
5
|
|
|
6
6
|
# Version history:
|
|
@@ -45,3 +45,10 @@ __version_info__ = tuple(int(x) for x in __version__.split("."))
|
|
|
45
45
|
# sudo trcc setup-udev + reboot when USB storage quirk is missing
|
|
46
46
|
# 1.2.16 - Fix udev permissions on SELinux/immutable distros (Bazzite, Silverblue):
|
|
47
47
|
# use MODE="0666" instead of TAG+="uaccess" which fails with SELinux enforcing
|
|
48
|
+
# 1.2.17 - SCSI device identification via poll resolution byte (PM mapping from
|
|
49
|
+
# USBLCD.exe protocol), KVM LED backend, sensor-driven LED fix (cpu_percent/
|
|
50
|
+
# gpu_usage metric keys), unified DEVICE_BUTTON_IMAGE dict for all protocols,
|
|
51
|
+
# LED button image resolver, sensor source CPU/GPU toggle in LED control UI
|
|
52
|
+
# 1.2.18 - Fix GrandVision 360 AIO (87AD:70DB) causing GUI hang: device is vendor-
|
|
53
|
+
# specific USB (class 255), not HID — removed from LED device list to stop
|
|
54
|
+
# timeout loop on startup
|
|
@@ -664,8 +664,8 @@ def _hid_debug_lcd(dev) -> None:
|
|
|
664
664
|
from trcc.device_factory import HidProtocol
|
|
665
665
|
from trcc.hid_device import (
|
|
666
666
|
FBL_TO_RESOLUTION,
|
|
667
|
-
PM_TO_BUTTON_IMAGE,
|
|
668
667
|
fbl_to_resolution,
|
|
668
|
+
get_button_image,
|
|
669
669
|
pm_to_fbl,
|
|
670
670
|
)
|
|
671
671
|
|
|
@@ -696,12 +696,12 @@ def _hid_debug_lcd(dev) -> None:
|
|
|
696
696
|
print(f" Serial = {info.serial}")
|
|
697
697
|
print(f" Resolution = {resolution[0]}x{resolution[1]}")
|
|
698
698
|
|
|
699
|
-
# Button image from PM
|
|
700
|
-
button =
|
|
699
|
+
# Button image from PM + SUB
|
|
700
|
+
button = get_button_image(pm, sub)
|
|
701
701
|
if button:
|
|
702
702
|
print(f" Button image = {button}")
|
|
703
703
|
else:
|
|
704
|
-
print(f" Button image = unknown PM={pm} (defaulting to CZTV)")
|
|
704
|
+
print(f" Button image = unknown PM={pm} SUB={sub} (defaulting to CZTV)")
|
|
705
705
|
|
|
706
706
|
# Known FBL?
|
|
707
707
|
if fbl in FBL_TO_RESOLUTION:
|
|
@@ -1335,6 +1335,11 @@ class LEDController:
|
|
|
1335
1335
|
"""Set brightness for a specific zone."""
|
|
1336
1336
|
self.model.set_zone_brightness(zone, brightness)
|
|
1337
1337
|
|
|
1338
|
+
def set_sensor_source(self, source: str) -> None:
|
|
1339
|
+
"""Set sensor source for temp/load linked modes ("cpu" or "gpu")."""
|
|
1340
|
+
self.model.state.temp_source = source
|
|
1341
|
+
self.model.state.load_source = source
|
|
1342
|
+
|
|
1338
1343
|
def set_clock_format(self, is_24h: bool) -> None:
|
|
1339
1344
|
"""Set LC2 clock format (24h vs 12h)."""
|
|
1340
1345
|
self.model.state.is_timer_24h = is_24h
|
|
@@ -1114,7 +1114,9 @@ class LEDModel:
|
|
|
1114
1114
|
from ..led_device import LOAD_COLOR_HIGH, LOAD_COLOR_THRESHOLDS, color_for_value
|
|
1115
1115
|
|
|
1116
1116
|
source = self.state.load_source
|
|
1117
|
-
|
|
1117
|
+
# system_info uses "cpu_percent" and "gpu_usage" (not "{source}_load")
|
|
1118
|
+
key = "cpu_percent" if source == "cpu" else "gpu_usage"
|
|
1119
|
+
load = self._metrics.get(key, 0)
|
|
1118
1120
|
color = color_for_value(load, LOAD_COLOR_THRESHOLDS, LOAD_COLOR_HIGH)
|
|
1119
1121
|
return [color] * seg_count
|
|
1120
1122
|
|
|
@@ -59,6 +59,14 @@ KNOWN_DEVICES = {
|
|
|
59
59
|
"button_image": "A1CZTV",
|
|
60
60
|
"implementation": "thermalright_lcd_v1"
|
|
61
61
|
},
|
|
62
|
+
# USB 87AD:70DB - GrandVision 360 AIO (ChiZhu Tech, case 257 LCD+LED combo)
|
|
63
|
+
(0x87AD, 0x70DB): {
|
|
64
|
+
"vendor": "ChiZhu Tech",
|
|
65
|
+
"product": "GrandVision 360 AIO (USBLCD)",
|
|
66
|
+
"model": "GRAND_VISION",
|
|
67
|
+
"button_image": "A1CZTV",
|
|
68
|
+
"implementation": "thermalright_lcd_v1"
|
|
69
|
+
},
|
|
62
70
|
(0x0416, 0x5406): {
|
|
63
71
|
"vendor": "Winbond",
|
|
64
72
|
"product": "LCD Display (USBLCD)",
|
|
@@ -128,17 +136,9 @@ _LED_DEVICES = {
|
|
|
128
136
|
"protocol": "hid",
|
|
129
137
|
"device_type": 1,
|
|
130
138
|
},
|
|
131
|
-
#
|
|
132
|
-
#
|
|
133
|
-
|
|
134
|
-
"vendor": "ChiZhu Tech",
|
|
135
|
-
"product": "LCD+LED Display (HID)",
|
|
136
|
-
"model": "GRAND_VISION",
|
|
137
|
-
"button_image": "A1GRAND_VISION",
|
|
138
|
-
"implementation": "hid_led",
|
|
139
|
-
"protocol": "hid",
|
|
140
|
-
"device_type": 1,
|
|
141
|
-
},
|
|
139
|
+
# NOTE: 87AD:70DB (GrandVision) is NOT HID — bInterfaceClass=255 (Vendor Specific).
|
|
140
|
+
# Uses USBLCDNew raw bulk protocol (ThreadSendDeviceData), not HID handshake.
|
|
141
|
+
# Removed from _LED_DEVICES to prevent timeout loops. Needs raw bulk implementation.
|
|
142
142
|
}
|
|
143
143
|
|
|
144
144
|
# Backward-compat alias (tests and setup-udev reference this)
|
|
@@ -140,19 +140,65 @@ _PM_TO_FBL_TYPE2: dict = {
|
|
|
140
140
|
65: 192, # 1920x462
|
|
141
141
|
}
|
|
142
142
|
|
|
143
|
-
#
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
143
|
+
# Unified device → button image map (from UCDevice.cs ADDUserButton).
|
|
144
|
+
# Outer key: HID PM byte (0-255) or SCSI VID (>255).
|
|
145
|
+
# Inner key: HID SUB byte or SCSI PID. None = default when sub/pid not matched.
|
|
146
|
+
DEVICE_BUTTON_IMAGE: dict[int, dict[Optional[int], str]] = {
|
|
147
|
+
# -- HID Vision/RGB devices (case 257, PM + SUB) --
|
|
148
|
+
1: {0: 'A1GRAND VISION', 1: 'A1GRAND VISION',
|
|
149
|
+
48: 'A1LM22', 49: 'A1LF14', None: 'A1GRAND VISION'},
|
|
150
|
+
3: {None: 'A1CORE VISION'},
|
|
151
|
+
4: {1: 'A1HYPER VISION', 2: 'A1RP130 VISION', 3: 'A1LM16SE'},
|
|
152
|
+
5: {None: 'A1Mjolnir VISION'},
|
|
153
|
+
6: {1: 'FROZEN WARFRAME Ultra', 2: 'A1FROZEN VISION V2'},
|
|
154
|
+
7: {1: 'A1Stream Vision', 2: 'A1Mjolnir VISION PRO'},
|
|
155
|
+
9: {None: 'A1LC2JD'},
|
|
156
|
+
10: {5: 'A1LF16', 6: 'A1LF18', None: 'A1LC3'},
|
|
157
|
+
11: {None: 'A1LF19'},
|
|
158
|
+
12: {None: 'A1LF167'},
|
|
159
|
+
# -- HID LCD devices (case 2 + case 257 merged, PM + SUB) --
|
|
160
|
+
32: {0: 'A1ELITE VISION', 1: 'A1FROZEN WARFRAME PRO',
|
|
161
|
+
None: 'A1ELITE VISION'},
|
|
162
|
+
36: {None: 'A1AS120 VISION'},
|
|
163
|
+
50: {None: 'A1FROZEN WARFRAME'},
|
|
164
|
+
51: {None: 'A1FROZEN WARFRAME'},
|
|
165
|
+
52: {None: 'A1BA120 VISION'},
|
|
166
|
+
53: {None: 'A1BA120 VISION'},
|
|
167
|
+
54: {None: 'A1LC5'},
|
|
168
|
+
58: {0: 'A1FROZEN WARFRAME SE', None: 'A1LM26'},
|
|
169
|
+
64: {0: 'A1FROZEN WARFRAME PRO', 1: 'A1LM22', 2: 'A1LM27'},
|
|
170
|
+
65: {0: 'A1ELITE VISION', 1: 'A1LF14'},
|
|
171
|
+
100: {0: 'A1FROZEN WARFRAME PRO', 1: 'A1LM22',
|
|
172
|
+
None: 'A1FROZEN WARFRAME PRO'},
|
|
173
|
+
101: {0: 'A1ELITE VISION', 1: 'A1LF14', None: 'A1ELITE VISION'},
|
|
174
|
+
128: {None: 'A1LM24'},
|
|
175
|
+
# -- SCSI devices (VID → {PID: image}) --
|
|
176
|
+
0x87CD: {0x70DB: 'A1CZTV', None: 'A1CZTV'},
|
|
177
|
+
0x87AD: {0x70DB: 'A1GRAND VISION', None: 'A1GRAND VISION'},
|
|
178
|
+
0x0402: {0x3922: 'A1FROZEN WARFRAME', None: 'A1FROZEN WARFRAME'},
|
|
179
|
+
0x0416: {0x5406: 'A1CZTV', None: 'A1CZTV'},
|
|
154
180
|
}
|
|
155
181
|
|
|
182
|
+
# Keep old name as alias for backward compat
|
|
183
|
+
PM_TO_BUTTON_IMAGE = DEVICE_BUTTON_IMAGE
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
def get_button_image(key: int, sub: int = 0) -> Optional[str]:
|
|
187
|
+
"""Resolve device button image from PM+SUB (HID) or VID+PID (SCSI).
|
|
188
|
+
|
|
189
|
+
Args:
|
|
190
|
+
key: PM byte (0-255) for HID devices, or VID for SCSI devices.
|
|
191
|
+
sub: SUB byte for HID devices, or PID for SCSI devices.
|
|
192
|
+
|
|
193
|
+
Returns image name, or None if unknown.
|
|
194
|
+
"""
|
|
195
|
+
sub_map = DEVICE_BUTTON_IMAGE.get(key)
|
|
196
|
+
if sub_map is None:
|
|
197
|
+
return None
|
|
198
|
+
if sub in sub_map:
|
|
199
|
+
return sub_map[sub]
|
|
200
|
+
return sub_map.get(None)
|
|
201
|
+
|
|
156
202
|
|
|
157
203
|
def fbl_to_resolution(fbl: int, pm: int = 0) -> tuple:
|
|
158
204
|
"""Map FBL byte to (width, height).
|
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
KVM LED protocol layer for 10-channel ARGB LED controllers (FormKVMALED6 equivalent).
|
|
4
|
+
|
|
5
|
+
Packet format: all packets start with [0xDC, 0xDD] header, followed by command,
|
|
6
|
+
channel index, and mode byte. Data payload varies by command type.
|
|
7
|
+
|
|
8
|
+
Protocol reverse-engineered from FormKVMALED6.cs (TRCC 2.0.3).
|
|
9
|
+
No VID:PID known yet — backend-only, no UI. Will be activated when a KVM LED
|
|
10
|
+
device is identified during HID handshake.
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from __future__ import annotations
|
|
14
|
+
|
|
15
|
+
import logging
|
|
16
|
+
from dataclasses import dataclass, field
|
|
17
|
+
from pathlib import Path
|
|
18
|
+
from typing import List, Optional
|
|
19
|
+
|
|
20
|
+
log = logging.getLogger(__name__)
|
|
21
|
+
|
|
22
|
+
# =========================================================================
|
|
23
|
+
# Constants (from FormKVMALED6.cs)
|
|
24
|
+
# =========================================================================
|
|
25
|
+
|
|
26
|
+
HEADER = bytes([0xDC, 0xDD])
|
|
27
|
+
|
|
28
|
+
# Commands (byte[2])
|
|
29
|
+
CMD_ONOFF = 0x00
|
|
30
|
+
CMD_STATE_QUERY = 0x01
|
|
31
|
+
CMD_LED = 0x10
|
|
32
|
+
CMD_SCENE_SAVE = 0x68
|
|
33
|
+
|
|
34
|
+
# Channel count
|
|
35
|
+
NUM_CHANNELS = 10
|
|
36
|
+
|
|
37
|
+
# proMode.dc file structure
|
|
38
|
+
PROMODE_HEADER = 0xDC
|
|
39
|
+
PROMODE_SIZE = 61 # 1 header + 10 on/off + 10 mode + 10 brightness + 30 rgb
|
|
40
|
+
|
|
41
|
+
# Default channel enable flags (channel 8 disabled by default)
|
|
42
|
+
DEFAULT_CHANNEL_ENABLES = [1, 1, 1, 1, 1, 1, 1, 1, 0, 1]
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
# =========================================================================
|
|
46
|
+
# Data model
|
|
47
|
+
# =========================================================================
|
|
48
|
+
|
|
49
|
+
@dataclass
|
|
50
|
+
class KvmChannelState:
|
|
51
|
+
"""Per-channel LED state."""
|
|
52
|
+
on: bool = True
|
|
53
|
+
mode: int = 1
|
|
54
|
+
brightness: int = 100
|
|
55
|
+
r: int = 255
|
|
56
|
+
g: int = 0
|
|
57
|
+
b: int = 0
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
@dataclass
|
|
61
|
+
class KvmLedState:
|
|
62
|
+
"""Complete KVM LED controller state (10 channels)."""
|
|
63
|
+
channels: List[KvmChannelState] = field(default_factory=lambda: [
|
|
64
|
+
KvmChannelState() for _ in range(NUM_CHANNELS)
|
|
65
|
+
])
|
|
66
|
+
channel_enables: List[int] = field(
|
|
67
|
+
default_factory=lambda: list(DEFAULT_CHANNEL_ENABLES)
|
|
68
|
+
)
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
# =========================================================================
|
|
72
|
+
# Packet builder
|
|
73
|
+
# =========================================================================
|
|
74
|
+
|
|
75
|
+
class KvmPacketBuilder:
|
|
76
|
+
"""Builds HID packets for KVM LED protocol commands."""
|
|
77
|
+
|
|
78
|
+
@staticmethod
|
|
79
|
+
def build_onoff(state: KvmLedState, mode: int = 0) -> bytes:
|
|
80
|
+
"""Build on/off command packet (CMD_ONOFF = 0x00).
|
|
81
|
+
|
|
82
|
+
Packet: [0xDC, 0xDD, 0x00, 0x00, mode, onoff[0..9]]
|
|
83
|
+
Total: 15 bytes (5 header + 10 data).
|
|
84
|
+
"""
|
|
85
|
+
pkt = bytearray(15)
|
|
86
|
+
pkt[0:2] = HEADER
|
|
87
|
+
pkt[2] = CMD_ONOFF
|
|
88
|
+
pkt[3] = 0x00 # channel index (broadcast)
|
|
89
|
+
pkt[4] = mode
|
|
90
|
+
for i, ch in enumerate(state.channels):
|
|
91
|
+
pkt[5 + i] = 1 if ch.on else 0
|
|
92
|
+
return bytes(pkt)
|
|
93
|
+
|
|
94
|
+
@staticmethod
|
|
95
|
+
def build_led(state: KvmLedState, channel: int = 0,
|
|
96
|
+
mode: int = 0) -> bytes:
|
|
97
|
+
"""Build LED data command packet (CMD_LED = 0x10).
|
|
98
|
+
|
|
99
|
+
Packet: [0xDC, 0xDD, 0x10, channel, mode,
|
|
100
|
+
brightness, speed, R, G, B, 0, 0, 0, enables[0..9]]
|
|
101
|
+
Total: 23 bytes (5 header + 18 data).
|
|
102
|
+
"""
|
|
103
|
+
ch = state.channels[channel] if 0 <= channel < NUM_CHANNELS else KvmChannelState()
|
|
104
|
+
pkt = bytearray(23)
|
|
105
|
+
pkt[0:2] = HEADER
|
|
106
|
+
pkt[2] = CMD_LED
|
|
107
|
+
pkt[3] = channel
|
|
108
|
+
pkt[4] = mode
|
|
109
|
+
# Data payload (18 bytes)
|
|
110
|
+
pkt[5] = ch.brightness
|
|
111
|
+
pkt[6] = 1 # speed (default)
|
|
112
|
+
pkt[7] = ch.r
|
|
113
|
+
pkt[8] = ch.g
|
|
114
|
+
pkt[9] = ch.b
|
|
115
|
+
# pkt[10..12] = reserved zeros
|
|
116
|
+
for i in range(NUM_CHANNELS):
|
|
117
|
+
pkt[13 + i] = state.channel_enables[i]
|
|
118
|
+
return bytes(pkt)
|
|
119
|
+
|
|
120
|
+
@staticmethod
|
|
121
|
+
def build_scene_save(state: KvmLedState, scene: int = 0) -> bytes:
|
|
122
|
+
"""Build scene save command packet (CMD_SCENE_SAVE = 0x68).
|
|
123
|
+
|
|
124
|
+
Packet: [0xDC, 0xDD, 0x68, scene, mode,
|
|
125
|
+
onoff[10], modes[10], brightness[10], rgb[30]]
|
|
126
|
+
Total: 65 bytes (5 header + 60 data).
|
|
127
|
+
"""
|
|
128
|
+
pkt = bytearray(65)
|
|
129
|
+
pkt[0:2] = HEADER
|
|
130
|
+
pkt[2] = CMD_SCENE_SAVE
|
|
131
|
+
pkt[3] = scene
|
|
132
|
+
pkt[4] = state.channels[0].mode if state.channels else 0
|
|
133
|
+
offset = 5
|
|
134
|
+
# On/off (10 bytes)
|
|
135
|
+
for i, ch in enumerate(state.channels):
|
|
136
|
+
pkt[offset + i] = 1 if ch.on else 0
|
|
137
|
+
offset += NUM_CHANNELS
|
|
138
|
+
# Modes (10 bytes)
|
|
139
|
+
for i, ch in enumerate(state.channels):
|
|
140
|
+
pkt[offset + i] = ch.mode
|
|
141
|
+
offset += NUM_CHANNELS
|
|
142
|
+
# Brightness (10 bytes)
|
|
143
|
+
for i, ch in enumerate(state.channels):
|
|
144
|
+
pkt[offset + i] = ch.brightness
|
|
145
|
+
offset += NUM_CHANNELS
|
|
146
|
+
# RGB (30 bytes: 10 channels × 3)
|
|
147
|
+
for i, ch in enumerate(state.channels):
|
|
148
|
+
pkt[offset + i * 3] = ch.r
|
|
149
|
+
pkt[offset + i * 3 + 1] = ch.g
|
|
150
|
+
pkt[offset + i * 3 + 2] = ch.b
|
|
151
|
+
return bytes(pkt)
|
|
152
|
+
|
|
153
|
+
@staticmethod
|
|
154
|
+
def build_state_query() -> bytes:
|
|
155
|
+
"""Build state query command packet (CMD_STATE_QUERY = 0x01).
|
|
156
|
+
|
|
157
|
+
Packet: [0xDC, 0xDD, 0x01, 0x00, 0x00]
|
|
158
|
+
Total: 5 bytes (header only, no data payload).
|
|
159
|
+
"""
|
|
160
|
+
pkt = bytearray(5)
|
|
161
|
+
pkt[0:2] = HEADER
|
|
162
|
+
pkt[2] = CMD_STATE_QUERY
|
|
163
|
+
return bytes(pkt)
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
# =========================================================================
|
|
167
|
+
# Persistence (proMode.dc)
|
|
168
|
+
# =========================================================================
|
|
169
|
+
|
|
170
|
+
class KvmProModePersistence:
|
|
171
|
+
"""Read/write proMode.dc config files for KVM LED state.
|
|
172
|
+
|
|
173
|
+
File format (61 bytes):
|
|
174
|
+
byte[0] = 0xDC (header marker)
|
|
175
|
+
byte[1-10] = on/off per channel
|
|
176
|
+
byte[11-20] = mode per channel
|
|
177
|
+
byte[21-30] = brightness per channel
|
|
178
|
+
byte[31-60] = RGB per channel (3 bytes each × 10)
|
|
179
|
+
"""
|
|
180
|
+
|
|
181
|
+
@staticmethod
|
|
182
|
+
def save(state: KvmLedState, path: Path) -> None:
|
|
183
|
+
"""Write state to proMode.dc file."""
|
|
184
|
+
data = bytearray(PROMODE_SIZE)
|
|
185
|
+
data[0] = PROMODE_HEADER
|
|
186
|
+
for i, ch in enumerate(state.channels):
|
|
187
|
+
data[1 + i] = 1 if ch.on else 0
|
|
188
|
+
data[11 + i] = ch.mode
|
|
189
|
+
data[21 + i] = ch.brightness
|
|
190
|
+
data[31 + i * 3] = ch.r
|
|
191
|
+
data[32 + i * 3] = ch.g
|
|
192
|
+
data[33 + i * 3] = ch.b
|
|
193
|
+
path.parent.mkdir(parents=True, exist_ok=True)
|
|
194
|
+
path.write_bytes(bytes(data))
|
|
195
|
+
log.debug("Saved KVM LED config to %s", path)
|
|
196
|
+
|
|
197
|
+
@staticmethod
|
|
198
|
+
def load(path: Path) -> Optional[KvmLedState]:
|
|
199
|
+
"""Load state from proMode.dc file. Returns None if invalid."""
|
|
200
|
+
if not path.is_file():
|
|
201
|
+
return None
|
|
202
|
+
data = path.read_bytes()
|
|
203
|
+
if len(data) < PROMODE_SIZE or data[0] != PROMODE_HEADER:
|
|
204
|
+
log.warning("Invalid proMode.dc: size=%d header=0x%02X",
|
|
205
|
+
len(data), data[0] if data else 0)
|
|
206
|
+
return None
|
|
207
|
+
state = KvmLedState()
|
|
208
|
+
for i in range(NUM_CHANNELS):
|
|
209
|
+
ch = state.channels[i]
|
|
210
|
+
ch.on = data[1 + i] != 0
|
|
211
|
+
ch.mode = data[11 + i]
|
|
212
|
+
ch.brightness = data[21 + i]
|
|
213
|
+
ch.r = data[31 + i * 3]
|
|
214
|
+
ch.g = data[32 + i * 3]
|
|
215
|
+
ch.b = data[33 + i * 3]
|
|
216
|
+
return state
|
|
217
|
+
|
|
218
|
+
@staticmethod
|
|
219
|
+
def save_scene(state: KvmLedState, scene: int, base_dir: Path) -> None:
|
|
220
|
+
"""Write state to a numbered scene file ({scene}proMode.dc)."""
|
|
221
|
+
path = base_dir / f"{scene}proMode.dc"
|
|
222
|
+
KvmProModePersistence.save(state, path)
|
|
223
|
+
|
|
224
|
+
@staticmethod
|
|
225
|
+
def load_scene(scene: int, base_dir: Path) -> Optional[KvmLedState]:
|
|
226
|
+
"""Load state from a numbered scene file."""
|
|
227
|
+
path = base_dir / f"{scene}proMode.dc"
|
|
228
|
+
return KvmProModePersistence.load(path)
|
|
@@ -155,27 +155,43 @@ PM_TO_MODEL = {
|
|
|
155
155
|
208: "CZ1",
|
|
156
156
|
}
|
|
157
157
|
|
|
158
|
-
#
|
|
159
|
-
#
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
158
|
+
# PM byte → {sub → button image} (from UCDevice.cs ADDUserButton, case 1)
|
|
159
|
+
# LED devices don't use SUB for button images in Windows, so all entries
|
|
160
|
+
# use None (default) key. The lookup function still accepts sub for
|
|
161
|
+
# forward-compat if future firmware adds sub-based disambiguation.
|
|
162
|
+
LED_PM_TO_BUTTON_IMAGE: dict[int, dict[Optional[int], str]] = {
|
|
163
|
+
1: {None: "A1FROZEN HORIZON PRO"},
|
|
164
|
+
2: {None: "A1FROZEN MAGIC PRO"},
|
|
165
|
+
3: {None: "A1AX120 DIGITAL"},
|
|
166
|
+
16: {None: "A1PA120 DIGITAL"},
|
|
167
|
+
23: {None: "A1RK120 DIGITAL"},
|
|
168
|
+
32: {None: "A1AK120 Digital"},
|
|
169
|
+
48: {None: "A1LF8"},
|
|
170
|
+
49: {None: "A1LF10"},
|
|
171
|
+
80: {None: "A1LF12"},
|
|
172
|
+
96: {None: "A1LF10"},
|
|
173
|
+
112: {None: "A1LC2"},
|
|
174
|
+
128: {None: "A1LC1"},
|
|
175
|
+
129: {None: "A1LF11"},
|
|
176
|
+
144: {None: "A1LF15"},
|
|
177
|
+
160: {None: "A1LF13"},
|
|
178
|
+
208: {None: "A1CZ1"},
|
|
177
179
|
}
|
|
178
180
|
|
|
181
|
+
|
|
182
|
+
def get_led_button_image(pm: int, sub: int = 0) -> Optional[str]:
|
|
183
|
+
"""Resolve LED device button image from PM + SUB bytes.
|
|
184
|
+
|
|
185
|
+
Tries exact (pm, sub) match first, falls back to None default for that PM.
|
|
186
|
+
Returns None if PM is unknown.
|
|
187
|
+
"""
|
|
188
|
+
sub_map = LED_PM_TO_BUTTON_IMAGE.get(pm)
|
|
189
|
+
if sub_map is None:
|
|
190
|
+
return None
|
|
191
|
+
if sub in sub_map:
|
|
192
|
+
return sub_map[sub]
|
|
193
|
+
return sub_map.get(None)
|
|
194
|
+
|
|
179
195
|
# (pm, sub_type) → style override for devices that share a PM byte.
|
|
180
196
|
# HR10 2280 Pro Digital shares PM=128 with LC1 but has sub_type=129.
|
|
181
197
|
SUB_TYPE_OVERRIDES = {
|
|
@@ -1683,6 +1683,10 @@ class TRCCMainWindowMVC(QMainWindow):
|
|
|
1683
1683
|
self.uc_led_control.initialize(
|
|
1684
1684
|
led_style, style.segment_count, style.zone_count, self._lang
|
|
1685
1685
|
)
|
|
1686
|
+
# Sync saved sensor source to UI
|
|
1687
|
+
source = self._led_controller.led.model.state.temp_source
|
|
1688
|
+
self.uc_led_control.set_sensor_source(source)
|
|
1689
|
+
|
|
1686
1690
|
self._show_view('led')
|
|
1687
1691
|
self._led_active = True
|
|
1688
1692
|
|
|
@@ -1724,6 +1728,10 @@ class TRCCMainWindowMVC(QMainWindow):
|
|
|
1724
1728
|
panel.week_start_changed.connect(
|
|
1725
1729
|
lambda is_sun: ctrl.led.set_week_start(is_sun))
|
|
1726
1730
|
|
|
1731
|
+
# Sensor source (CPU/GPU) for temp/load linked modes
|
|
1732
|
+
panel.sensor_source_changed.connect(
|
|
1733
|
+
lambda src: ctrl.led.set_sensor_source(src))
|
|
1734
|
+
|
|
1727
1735
|
# HR10 display metric selection → controller display value
|
|
1728
1736
|
panel.display_metric_changed.connect(self._on_hr10_metric_changed)
|
|
1729
1737
|
|
|
@@ -287,6 +287,8 @@ if PYQT6_AVAILABLE:
|
|
|
287
287
|
week_start_changed = pyqtSignal(bool) # True = Sunday
|
|
288
288
|
# Temperature unit signal
|
|
289
289
|
temp_unit_changed = pyqtSignal(str) # "C" or "F"
|
|
290
|
+
# Sensor source signal (for temp/load linked modes)
|
|
291
|
+
sensor_source_changed = pyqtSignal(str) # "cpu" or "gpu"
|
|
290
292
|
|
|
291
293
|
def __init__(self, parent=None):
|
|
292
294
|
super().__init__(parent)
|
|
@@ -376,6 +378,29 @@ if PYQT6_AVAILABLE:
|
|
|
376
378
|
if self._mode_buttons:
|
|
377
379
|
self._mode_buttons[0].setChecked(True)
|
|
378
380
|
|
|
381
|
+
# -- Sensor source selector (modes 4-5: Temp Link / Load Link) --
|
|
382
|
+
self._source_label = QLabel("Source:", self)
|
|
383
|
+
self._source_label.setGeometry(MODE_X_START, 300, 55, 24)
|
|
384
|
+
self._source_label.setStyleSheet(_STYLE_MUTED_LABEL)
|
|
385
|
+
self._source_label.setVisible(False)
|
|
386
|
+
|
|
387
|
+
self._btn_cpu = QPushButton("CPU", self)
|
|
388
|
+
self._btn_cpu.setGeometry(MODE_X_START + 58, 298, 55, 26)
|
|
389
|
+
self._btn_cpu.setCheckable(True)
|
|
390
|
+
self._btn_cpu.setChecked(True)
|
|
391
|
+
self._btn_cpu.setStyleSheet(_STYLE_CHECKABLE_BTN)
|
|
392
|
+
self._btn_cpu.clicked.connect(lambda: self._set_sensor_source("cpu"))
|
|
393
|
+
self._btn_cpu.setVisible(False)
|
|
394
|
+
|
|
395
|
+
self._btn_gpu = QPushButton("GPU", self)
|
|
396
|
+
self._btn_gpu.setGeometry(MODE_X_START + 118, 298, 55, 26)
|
|
397
|
+
self._btn_gpu.setCheckable(True)
|
|
398
|
+
self._btn_gpu.setStyleSheet(_STYLE_CHECKABLE_BTN)
|
|
399
|
+
self._btn_gpu.clicked.connect(lambda: self._set_sensor_source("gpu"))
|
|
400
|
+
self._btn_gpu.setVisible(False)
|
|
401
|
+
|
|
402
|
+
self._sensor_source = "cpu"
|
|
403
|
+
|
|
379
404
|
# -- Color Wheel (shown for HR10, hidden for others) --
|
|
380
405
|
self._color_wheel = UCColorWheel(self)
|
|
381
406
|
self._color_wheel.setGeometry(HR10_WHEEL_X, HR10_WHEEL_Y,
|
|
@@ -888,6 +913,16 @@ if PYQT6_AVAILABLE:
|
|
|
888
913
|
if bg_path:
|
|
889
914
|
set_background_pixmap(self, bg_name)
|
|
890
915
|
|
|
916
|
+
def set_sensor_source(self, source: str) -> None:
|
|
917
|
+
"""Set sensor source from saved config (without emitting signal).
|
|
918
|
+
|
|
919
|
+
Args:
|
|
920
|
+
source: "cpu" or "gpu".
|
|
921
|
+
"""
|
|
922
|
+
self._sensor_source = source
|
|
923
|
+
self._btn_cpu.setChecked(source == "cpu")
|
|
924
|
+
self._btn_gpu.setChecked(source == "gpu")
|
|
925
|
+
|
|
891
926
|
def set_temp_unit(self, unit_int: int) -> None:
|
|
892
927
|
"""Set temperature unit from app settings.
|
|
893
928
|
|
|
@@ -1039,6 +1074,8 @@ if PYQT6_AVAILABLE:
|
|
|
1039
1074
|
btn.setChecked(i == index)
|
|
1040
1075
|
if self._is_hr10:
|
|
1041
1076
|
self._update_mode_visibility()
|
|
1077
|
+
# Show sensor source selector for temp/load linked modes
|
|
1078
|
+
self._set_source_visibility(index in (4, 5))
|
|
1042
1079
|
self.mode_changed.emit(index)
|
|
1043
1080
|
|
|
1044
1081
|
def _update_mode_visibility(self):
|
|
@@ -1275,6 +1312,19 @@ if PYQT6_AVAILABLE:
|
|
|
1275
1312
|
self._btn_mon.setChecked(not is_sunday)
|
|
1276
1313
|
self.week_start_changed.emit(is_sunday)
|
|
1277
1314
|
|
|
1315
|
+
def _set_sensor_source(self, source: str):
|
|
1316
|
+
"""Handle CPU/GPU source toggle."""
|
|
1317
|
+
self._sensor_source = source
|
|
1318
|
+
self._btn_cpu.setChecked(source == "cpu")
|
|
1319
|
+
self._btn_gpu.setChecked(source == "gpu")
|
|
1320
|
+
self.sensor_source_changed.emit(source)
|
|
1321
|
+
|
|
1322
|
+
def _set_source_visibility(self, visible: bool):
|
|
1323
|
+
"""Show/hide sensor source selector."""
|
|
1324
|
+
self._source_label.setVisible(visible)
|
|
1325
|
+
self._btn_cpu.setVisible(visible)
|
|
1326
|
+
self._btn_gpu.setVisible(visible)
|
|
1327
|
+
|
|
1278
1328
|
def _set_temp_unit_btn(self, is_fahrenheit: bool):
|
|
1279
1329
|
"""Handle °C/°F toggle button click."""
|
|
1280
1330
|
self._btn_celsius.setChecked(not is_fahrenheit)
|