trcc-linux 3.0.6__tar.gz → 3.0.8__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-3.0.6 → trcc_linux-3.0.8}/PKG-INFO +1 -1
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/pyproject.toml +1 -1
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/__version__.py +11 -1
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/cli.py +34 -38
- trcc_linux-3.0.8/src/trcc/conf.py +254 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/core/controllers.py +12 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/debug_report.py +2 -2
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/device_factory.py +131 -142
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/device_hid.py +48 -41
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/device_lcd.py +8 -8
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/device_led.py +163 -164
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/device_led_hr10.py +144 -147
- trcc_linux-3.0.8/src/trcc/device_led_segment.py +966 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/device_scsi.py +128 -128
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/qt_app_mvc.py +20 -20
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/uc_theme_setting.py +4 -4
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/services/device.py +5 -5
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/services/led.py +105 -15
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/hid_testing/test_device_factory.py +19 -44
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/hid_testing/test_device_hid.py +16 -17
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/hid_testing/test_device_led.py +103 -112
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/hid_testing/test_led_controller.py +50 -50
- trcc_linux-3.0.8/tests/test_ax120_display.py +784 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_cli.py +37 -37
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_controllers.py +3 -3
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_data_repository.py +37 -48
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_device_implementations.py +11 -11
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_device_lcd.py +22 -22
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_device_scsi.py +73 -80
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_integration.py +16 -16
- trcc_linux-3.0.6/src/trcc/conf.py +0 -268
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/.gitignore +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/LICENSE +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/README.md +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/__init__.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/__main__.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/api.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/fonts/MSYH.TTC +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/fonts/MSYHBD.TTC +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/fonts/README.md +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/240240.gif +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/240320.gif +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/320240.gif +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/320320.gif +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A0/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A0/345/205/263/344/272/216d.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A0/345/205/263/344/272/216e.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A0/345/205/263/344/272/216en.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A0/345/205/263/344/272/216f.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A0/345/205/263/344/272/216p.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A0/345/205/263/344/272/216r.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A0/345/205/263/344/272/216tc.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A0/345/205/263/344/272/216x.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A0/345/220/257/345/212/250/347/225/214/351/235/242.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A0/346/225/260/346/215/256/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207en.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207tc.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A0/347/241/254/344/273/266/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1AK120 Digital.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1AK120 Digitala.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1AK120_Digital.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1AK120_Digitala.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1AS120 VISION.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1AS120 VISIONa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1AS120_VISION.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1AS120_VISIONa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1AX120 DIGITAL.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1AX120 DIGITALa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1AX120_DIGITAL.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1AX120_DIGITALa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1BA120 VISION.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1BA120 VISIONa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1BA120_VISION.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1BA120_VISIONa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1CORE VISION.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1CORE VISIONa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1CORE_VISION.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1CORE_VISIONa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1CZ1.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1CZ1a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1CZTV.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1CZTVa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1ELITE VISION.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1ELITE VISIONa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1ELITE_VISION.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1ELITE_VISIONa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN HORIZON PRO.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN HORIZON PROa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN MAGIC PRO.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN MAGIC PROa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN VISION V2.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN VISION V2a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN WARFRAME PRO.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN WARFRAME PROa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN WARFRAME SE.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN WARFRAME SEa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN WARFRAME.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN WARFRAMEa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN_HORIZON_PROa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN_MAGIC_PROa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN_VISION_V2.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN_VISION_V2a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN_WARFRAME.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PRO.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PROa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SE.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SEa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1FROZEN_WARFRAMEa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1GRAND VISION.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1GRAND VISIONa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1GRAND_VISION.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1GRAND_VISIONa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITAL.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITALa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1HYPER VISION.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1HYPER VISIONa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1HYPER_VISION.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1HYPER_VISIONa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1KVMALEDC6.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1KVMALEDC6a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LC1.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LC1a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LC2.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LC2JD.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LC2JDa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LC2a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LC3.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LC3a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LC5.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LC5a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF10.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF10a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF11.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF11a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF12.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF12a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF13.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF13a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF14.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF14a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF15.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF15a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF16.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF167.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF16a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF17a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF18.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF18a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF19.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF19a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF8.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LF8a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LM16SE.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LM16SEa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LM22.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LM22a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LM24.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LM24a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LM26.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LM26a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LM27.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1LM27a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1Mjolnir VISION PRO.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1Mjolnir VISION PROa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1Mjolnir VISION.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1Mjolnir VISIONa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1Mjolnir_VISION.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1Mjolnir_VISION_PRO.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1Mjolnir_VISION_PROa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1Mjolnir_VISIONa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1PA120 DIGITAL.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1PA120 DIGITALa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1PA120_DIGITAL.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1PA120_DIGITALa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1RK120 DIGITAL.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1RK120 DIGITALa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1RK120_DIGITAL.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1RK120_DIGITALa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1RP130 VISION.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1RP130 VISIONa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1RP130_VISION.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1RP130_VISIONa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1Stream Vision.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1Stream Visiona.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1Stream_Vision.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1Stream_Visiona.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A1/345/205/263/344/272/216a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A2/347/253/213/345/215/263/346/233/264/346/226/260.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/Acpu.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/Adram.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/Afan.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/Agpu.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/Ahdd.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/Alogout/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/Alogout/351/273/230/350/256/244.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/Anet.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A/344/270/212/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A/344/270/213/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A/345/242/236/345/212/240/346/225/260/347/273/204.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A/346/225/260/346/215/256/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A/346/273/232/345/212/250/346/235/241.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/A/350/207/252/345/256/232/344/271/211.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0CZ1.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0CZ1d.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0CZ1e.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0CZ1en.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0CZ1f.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0CZ1p.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0CZ1r.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0CZ1tc.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0CZ1x.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0KVMA/347/201/257/346/216/247.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LC1.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LC1d.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LC1e.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LC1en.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LC1f.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LC1p.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LC1r.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LC1tc.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LC1x.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LC2.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LC2d.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LC2e.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LC2en.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LC2f.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LC2p.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LC2r.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LC2tc.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LC2x.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF10.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF10d.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF10e.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF10en.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF10f.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF10p.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF10r.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF10tc.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF10x.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF11.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF11d.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF11e.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF11en.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF11f.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF11p.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF11r.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF11tc.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF11x.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF12.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF12d.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF12e.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF12en.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF12f.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF12p.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF12r.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF12tc.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF12x.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF13.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF13d.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF13e.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF13en.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF13f.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF13p.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF13r.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF13tc.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF13x.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF15.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF15d.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF15e.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF15en.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF15f.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF15p.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF15r.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF15tc.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF15x.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF8.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF8d.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF8e.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF8en.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF8f.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF8p.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF8r.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF8tc.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0LF8x.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0rgblf13.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217d.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217e.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217en.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217f.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217p.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217r.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217tc.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217x.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D1/345/244/264/347/233/2241.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D1/345/244/264/347/233/2242.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D1/345/244/264/347/233/2243.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D1/345/244/264/347/233/2244.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D1/345/244/264/347/233/2245.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/2111.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/21110.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/21110a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/21111.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/21111a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/21112.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/21112a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/2111a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/2112.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/2112a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/2113.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/2113a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/2114.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/2114a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/2115.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/2115a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/2116.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/2116a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/2117.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/2117a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/2118.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/2118a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/2119.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D2/347/201/257/345/205/2119a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D3/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D3/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D3/345/274/200/345/205/263b.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D3/346/227/213/351/222/256.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D3/346/227/213/351/222/2560.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D3/346/251/231.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D3/346/271/226.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D3/347/231/275.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D3/347/264/253.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D3/347/272/242.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D3/347/273/277.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D3/350/223/235.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D3/351/273/204.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/345/274/200/346/234/272.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/345/274/200/346/234/272a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/346/214/211/351/222/2561.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/346/214/211/351/222/2561a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/346/214/211/351/222/2562a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/346/214/211/351/222/2563.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/346/214/211/351/222/2563a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/346/214/211/351/222/2564.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/346/214/211/351/222/2564a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/346/250/241/345/274/2171.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/346/250/241/345/274/2171a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/346/250/241/345/274/2172.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/346/250/241/345/274/2172a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/346/250/241/345/274/2173.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/346/250/241/345/274/2173a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/346/250/241/345/274/2174.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/346/250/241/345/274/2174a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/346/250/241/345/274/2175.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/346/250/241/345/274/2175a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/346/250/241/345/274/2176.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D4/346/250/241/345/274/2176a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/DAK120_DIGITAL.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/DAX120_DIGITAL.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/DCZ1.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/DFROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/DFROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/DLC1.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/DLC2.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/DLF10.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/DLF11.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/DLF12.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/DLF13.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/DLF15.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/DLF8.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/DPA120 DIGITAL.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/DPA120_DIGITAL.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/Dch1.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/Dch2.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/Dch3.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/Dch4.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/Dchcz1.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/2062.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/225.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/2252.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/256.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/2562.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultra.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultraa.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/206/205/345/256/271d.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/206/205/345/256/271e.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/206/205/345/256/271en.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/206/205/345/256/271f.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/206/205/345/256/271p.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/206/205/345/256/271r.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/206/205/345/256/271tc.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/206/205/345/256/271x.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/212/250/347/224/273/350/201/224/345/212/250.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277d.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277e.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277en.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277f.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277p.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277r.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277tc.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277x.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277d.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277e.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277en.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277f.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277p.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277r.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277tc.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277x.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xy.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyd.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xye.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyen.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyf.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyp.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyr.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xytc.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyx.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yx.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxd.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxe.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxen.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxf.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxp.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxr.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxtc.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxx.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250d.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250e.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250en.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250f.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250p.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250r.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250tc.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250x.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/346/250/241/345/235/227/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272d.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272e.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272f.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272p.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272r.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272x.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227en.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227tc.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2501.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2502.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2503.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0CZTV.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0CZTVd.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0CZTVe.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0CZTVen.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0CZTVf.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0CZTVp.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0CZTVr.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0CZTVtc.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0CZTVx.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0M1.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0M2.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0M3.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0M4.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0M5.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0M5a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0M6.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230d.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230e.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230en.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230f.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230p.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230r.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230tc.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230x.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/346/222/255/346/224/276.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/346/232/202/345/201/234.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230d.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230e.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230en.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230f.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230p.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230r.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230tc.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230x.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257d.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257e.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257f.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257p.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257r.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257x.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/351/242/204/350/247/210.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/351/242/204/350/247/210a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271280X480.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X462.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227360X800.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227462X1920.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X1280.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X800.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X854.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227540X960.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X360.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X480.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227854X480.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227960X540.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P12H.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P240240.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P240320.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P24H.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P320240.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P320320.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/PDM.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/PDMY.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/PL0.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/PL1.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/PL2.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/PL3.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/PM1.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/PM1a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/PM2.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/PM2a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/PM3.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/PM3a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/PM4.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/PM4a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/PM5.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/PM5a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/PM6.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/PM6a.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/PMD.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/PYMD.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/344/277/235/345/255/230/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/207/217.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227b.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/212/240.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/217/226/350/211/262.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/220/270/347/256/241.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/233/276/347/211/207.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/234/206/345/275/242/345/205/263/351/227/255.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/234/206/345/275/242/347/241/256/345/256/232.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/244/232/351/200/211.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/244/232/351/200/211a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/256/275/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/257/274/345/205/245.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/257/274/345/207/272.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/345/270/256/345/212/251.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/346/225/260/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/346/225/260/346/215/256.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/346/226/207/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/346/227/213/350/275/254.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206A.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/205/263.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/274/200.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233180.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233270.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/23390.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a180.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a270.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a90.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b180.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b270.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b90.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206A.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/216/257H1.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/216/257H2.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/216/257H3.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/216/257H4.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/216/257H5.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/216/257H6.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/275/221/347/273/234.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/347/275/221/347/273/234/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/350/243/201/345/207/217.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/350/247/206/351/242/221.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/350/275/256/346/222/2551.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/350/275/256/346/222/2552.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/350/275/256/346/222/2553.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/350/275/256/346/222/2554.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/350/275/256/346/222/2555.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/350/275/256/346/222/2556.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/350/275/256/346/222/255/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/350/275/275/345/205/245/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/350/277/233/345/272/246/346/235/241.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206M.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206Ma.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210116X480.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210180X400.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210180X480.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210240X240.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210240X320.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210240X400.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210240X427.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210270X480.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210320X240.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320/345/234/206.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210360360/345/234/206.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210400X180.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210400X240.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210427X240.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210480X116.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210480X180.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210480X270.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480/345/234/206.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/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-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/P/351/253/230/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/p0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/p/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/ucBoFangQiKongZhi1.BackgroundImage.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/ucBoFangQiKongZhi1_BackgroundImage.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/ucVideoCut1.BackgroundImage.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/ucVideoCut1_BackgroundImage.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/ucXiTongXianShi1.BackgroundImage.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/ucXiTongXianShiAdd1.BackgroundImage.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/ucXiTongXianShiColor1.BackgroundImage.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/gui/ucXiTongXianShiTable1.BackgroundImage.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/icons/app.ico +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/icons/trcc.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/icons/trcc_128x128.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/icons/trcc_16x16.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/icons/trcc_24x24.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/icons/trcc_256x256.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/icons/trcc_32x32.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/icons/trcc_48x48.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/assets/icons/trcc_64x64.png +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/binary_reader.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/core/__init__.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/core/models.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/data_repository.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/dc_config.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/dc_parser.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/dc_writer.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/device_bulk.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/device_detector.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/device_led_kvm.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/doctor.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/font_resolver.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/media_player.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/__init__.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/assets.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/base.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/constants.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/eyedropper.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/pipewire_capture.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/screen_capture.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/uc_about.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/uc_activity_sidebar.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/uc_color_wheel.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/uc_device.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/uc_image_cut.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/uc_info_module.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/uc_led_control.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/uc_preview.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/uc_screen_led.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/uc_sensor_picker.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/uc_seven_segment.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/uc_system_info.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/uc_theme_local.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/uc_theme_mask.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/uc_theme_web.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/qt_components/uc_video_cut.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/services/__init__.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/services/display.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/services/image.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/services/media.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/services/overlay.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/services/system.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/services/theme.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/system_config.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/system_info.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/system_sensors.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/theme_cloud.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/src/trcc/theme_downloader.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/README.md +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/__init__.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/hid_testing/__init__.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/hid_testing/conftest.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/run_tests.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_api.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_architecture.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_dc_parser.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_dc_writer.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_debug_report.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_device_bulk.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_device_detector.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_device_led_kvm.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_doctor.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_hr10_display.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_media_player.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_models.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_overlay_renderer.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_qt_base.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_qt_constants.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_qt_widgets.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_services.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_system_config.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_system_info.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_system_sensors.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_theme_cloud.py +0 -0
- {trcc_linux-3.0.6 → trcc_linux-3.0.8}/tests/test_theme_downloader.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: trcc-linux
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.8
|
|
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
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"""TRCC Linux version information."""
|
|
2
2
|
|
|
3
|
-
__version__ = "3.0.
|
|
3
|
+
__version__ = "3.0.8"
|
|
4
4
|
__version_info__ = tuple(int(x) for x in __version__.split("."))
|
|
5
5
|
|
|
6
6
|
# Version history:
|
|
@@ -94,3 +94,13 @@ __version_info__ = tuple(int(x) for x in __version__.split("."))
|
|
|
94
94
|
# 3.0.6 - Single-instance guard: prevent duplicate systray entries on launch.
|
|
95
95
|
# Font size spinbox in overlay color picker (independent of font dialog).
|
|
96
96
|
# 2167 tests.
|
|
97
|
+
# 3.0.7 - Unified segment display renderer for all 11 LED device styles.
|
|
98
|
+
# OOP class hierarchy (SegmentDisplay ABC + 10 subclasses) with
|
|
99
|
+
# data/logic separation. Covers AX120, PA120, AK120, LC1, LF8,
|
|
100
|
+
# LF12, LF10, CZ1, LC2, LF11, LF15. LEDService generalized for
|
|
101
|
+
# all digit-display styles (not just AX120). 2291 tests.
|
|
102
|
+
# 3.0.8 - Fix LED segment display: °C/°F toggle now propagates to segment
|
|
103
|
+
# renderer, CPU/GPU sensor source selector now filters phase cycling
|
|
104
|
+
# (show only CPU or GPU instead of always both). OOP refactor: move
|
|
105
|
+
# loose functions into classes across 5 files (conf.py, device_scsi.py,
|
|
106
|
+
# device_led_hr10.py, device_factory.py, device_hid.py). 2290 tests.
|
|
@@ -558,8 +558,8 @@ class DeviceCommands:
|
|
|
558
558
|
svc.select(svc.devices[0])
|
|
559
559
|
elif not svc.selected:
|
|
560
560
|
# Fall back to saved selection
|
|
561
|
-
from trcc.conf import
|
|
562
|
-
saved = get_selected_device()
|
|
561
|
+
from trcc.conf import Settings
|
|
562
|
+
saved = Settings.get_selected_device()
|
|
563
563
|
if saved:
|
|
564
564
|
match = next((d for d in svc.devices if d.path == saved), None)
|
|
565
565
|
if match:
|
|
@@ -581,10 +581,10 @@ class DeviceCommands:
|
|
|
581
581
|
@staticmethod
|
|
582
582
|
def _get_driver(device=None):
|
|
583
583
|
"""Create an LCDDriver, resolving selected device and extracting archives."""
|
|
584
|
-
from trcc.conf import
|
|
584
|
+
from trcc.conf import Settings
|
|
585
585
|
from trcc.device_lcd import LCDDriver
|
|
586
586
|
if device is None:
|
|
587
|
-
device = get_selected_device()
|
|
587
|
+
device = Settings.get_selected_device()
|
|
588
588
|
driver = LCDDriver(device_path=device)
|
|
589
589
|
DeviceCommands._ensure_extracted(driver)
|
|
590
590
|
return driver
|
|
@@ -684,7 +684,7 @@ class DeviceCommands:
|
|
|
684
684
|
def detect(show_all=False):
|
|
685
685
|
"""Detect LCD device."""
|
|
686
686
|
try:
|
|
687
|
-
from trcc.conf import
|
|
687
|
+
from trcc.conf import Settings
|
|
688
688
|
from trcc.device_detector import check_udev_rules, detect_devices
|
|
689
689
|
|
|
690
690
|
devices = detect_devices()
|
|
@@ -693,14 +693,14 @@ class DeviceCommands:
|
|
|
693
693
|
return 1
|
|
694
694
|
|
|
695
695
|
if show_all:
|
|
696
|
-
selected = get_selected_device()
|
|
696
|
+
selected = Settings.get_selected_device()
|
|
697
697
|
for i, dev in enumerate(devices, 1):
|
|
698
698
|
marker = "*" if dev.scsi_device == selected else " "
|
|
699
699
|
print(f"{marker} [{i}] {DeviceCommands._format(dev, probe=True)}")
|
|
700
700
|
if len(devices) > 1:
|
|
701
701
|
print("\nUse 'trcc select N' to switch devices")
|
|
702
702
|
else:
|
|
703
|
-
selected = get_selected_device()
|
|
703
|
+
selected = Settings.get_selected_device()
|
|
704
704
|
dev = None
|
|
705
705
|
if selected:
|
|
706
706
|
dev = next((d for d in devices if d.scsi_device == selected), None)
|
|
@@ -727,7 +727,7 @@ class DeviceCommands:
|
|
|
727
727
|
def select(number):
|
|
728
728
|
"""Select a device by number."""
|
|
729
729
|
try:
|
|
730
|
-
from trcc.conf import
|
|
730
|
+
from trcc.conf import Settings
|
|
731
731
|
from trcc.device_detector import detect_devices
|
|
732
732
|
|
|
733
733
|
devices = detect_devices()
|
|
@@ -740,7 +740,7 @@ class DeviceCommands:
|
|
|
740
740
|
return 1
|
|
741
741
|
|
|
742
742
|
device = devices[number - 1]
|
|
743
|
-
save_selected_device(device.scsi_device)
|
|
743
|
+
Settings.save_selected_device(device.scsi_device)
|
|
744
744
|
print(f"Selected: {device.scsi_device} ({device.product_name})")
|
|
745
745
|
return 0
|
|
746
746
|
except Exception as e:
|
|
@@ -948,9 +948,9 @@ class DisplayCommands:
|
|
|
948
948
|
dev = svc.selected
|
|
949
949
|
|
|
950
950
|
# Persist to device config
|
|
951
|
-
from trcc.conf import
|
|
952
|
-
key = device_config_key(dev.device_index, dev.vid, dev.pid)
|
|
953
|
-
save_device_setting(key, 'brightness_level', level)
|
|
951
|
+
from trcc.conf import Settings
|
|
952
|
+
key = Settings.device_config_key(dev.device_index, dev.vid, dev.pid)
|
|
953
|
+
Settings.save_device_setting(key, 'brightness_level', level)
|
|
954
954
|
|
|
955
955
|
print(f"Brightness set to L{level} ({percent}%) on {dev.path}")
|
|
956
956
|
return 0
|
|
@@ -976,9 +976,9 @@ class DisplayCommands:
|
|
|
976
976
|
|
|
977
977
|
dev = svc.selected
|
|
978
978
|
|
|
979
|
-
from trcc.conf import
|
|
980
|
-
key = device_config_key(dev.device_index, dev.vid, dev.pid)
|
|
981
|
-
save_device_setting(key, 'rotation', degrees)
|
|
979
|
+
from trcc.conf import Settings
|
|
980
|
+
key = Settings.device_config_key(dev.device_index, dev.vid, dev.pid)
|
|
981
|
+
Settings.save_device_setting(key, 'rotation', degrees)
|
|
982
982
|
|
|
983
983
|
print(f"Rotation set to {degrees}° on {dev.path}")
|
|
984
984
|
return 0
|
|
@@ -1178,7 +1178,7 @@ class DisplayCommands:
|
|
|
1178
1178
|
try:
|
|
1179
1179
|
import time
|
|
1180
1180
|
|
|
1181
|
-
from trcc.conf import
|
|
1181
|
+
from trcc.conf import Settings
|
|
1182
1182
|
from trcc.services import DeviceService, ImageService
|
|
1183
1183
|
|
|
1184
1184
|
svc = DeviceService()
|
|
@@ -1201,8 +1201,8 @@ class DisplayCommands:
|
|
|
1201
1201
|
if dev.protocol != "scsi":
|
|
1202
1202
|
continue
|
|
1203
1203
|
|
|
1204
|
-
key = device_config_key(dev.device_index, dev.vid, dev.pid)
|
|
1205
|
-
cfg = get_device_config(key)
|
|
1204
|
+
key = Settings.device_config_key(dev.device_index, dev.vid, dev.pid)
|
|
1205
|
+
cfg = Settings.get_device_config(key)
|
|
1206
1206
|
theme_path = cfg.get("theme_path")
|
|
1207
1207
|
|
|
1208
1208
|
if not theme_path:
|
|
@@ -1313,11 +1313,7 @@ class ThemeCommands:
|
|
|
1313
1313
|
try:
|
|
1314
1314
|
from PIL import Image
|
|
1315
1315
|
|
|
1316
|
-
from trcc.conf import
|
|
1317
|
-
device_config_key,
|
|
1318
|
-
save_device_setting,
|
|
1319
|
-
settings,
|
|
1320
|
-
)
|
|
1316
|
+
from trcc.conf import Settings, settings
|
|
1321
1317
|
from trcc.data_repository import DataManager
|
|
1322
1318
|
from trcc.services import ImageService, ThemeService
|
|
1323
1319
|
|
|
@@ -1357,9 +1353,9 @@ class ThemeCommands:
|
|
|
1357
1353
|
img = ImageService.resize(img, w, h)
|
|
1358
1354
|
|
|
1359
1355
|
# Apply saved adjustments
|
|
1360
|
-
from trcc.conf import
|
|
1361
|
-
key = device_config_key(dev.device_index, dev.vid, dev.pid)
|
|
1362
|
-
cfg = get_device_config(key)
|
|
1356
|
+
from trcc.conf import Settings
|
|
1357
|
+
key = Settings.device_config_key(dev.device_index, dev.vid, dev.pid)
|
|
1358
|
+
cfg = Settings.get_device_config(key)
|
|
1363
1359
|
brightness = {1: 25, 2: 50, 3: 100}.get(
|
|
1364
1360
|
cfg.get('brightness_level', 3), 100)
|
|
1365
1361
|
rotation = cfg.get('rotation', 0)
|
|
@@ -1369,7 +1365,7 @@ class ThemeCommands:
|
|
|
1369
1365
|
svc.send_pil(img, w, h)
|
|
1370
1366
|
|
|
1371
1367
|
# Save as last-used theme
|
|
1372
|
-
save_device_setting(key, 'theme_path', str(match.path))
|
|
1368
|
+
Settings.save_device_setting(key, 'theme_path', str(match.path))
|
|
1373
1369
|
print(f"Loaded '{match.name}' → {dev.path}")
|
|
1374
1370
|
else:
|
|
1375
1371
|
print(f"Theme '{match.name}' has no background image.")
|
|
@@ -1400,9 +1396,9 @@ class ThemeCommands:
|
|
|
1400
1396
|
w, h = dev.resolution
|
|
1401
1397
|
|
|
1402
1398
|
# Load current background from last-used theme
|
|
1403
|
-
from trcc.conf import
|
|
1404
|
-
key = device_config_key(dev.device_index, dev.vid, dev.pid)
|
|
1405
|
-
cfg = get_device_config(key)
|
|
1399
|
+
from trcc.conf import Settings
|
|
1400
|
+
key = Settings.device_config_key(dev.device_index, dev.vid, dev.pid)
|
|
1401
|
+
cfg = Settings.get_device_config(key)
|
|
1406
1402
|
theme_path = cfg.get('theme_path')
|
|
1407
1403
|
|
|
1408
1404
|
bg = None
|
|
@@ -1765,7 +1761,7 @@ class DiagCommands:
|
|
|
1765
1761
|
def _hid_debug_led(dev) -> None:
|
|
1766
1762
|
"""HID handshake diagnostic for LED devices (Type 1)."""
|
|
1767
1763
|
from trcc.device_factory import LedProtocol
|
|
1768
|
-
from trcc.device_led import
|
|
1764
|
+
from trcc.device_led import LedHandshakeInfo, PmRegistry
|
|
1769
1765
|
|
|
1770
1766
|
protocol = LedProtocol(vid=dev.vid, pid=dev.pid)
|
|
1771
1767
|
info = protocol.handshake()
|
|
@@ -1792,7 +1788,7 @@ class DiagCommands:
|
|
|
1792
1788
|
print(f" Segments = {style.segment_count}")
|
|
1793
1789
|
print(f" Zones = {style.zone_count}")
|
|
1794
1790
|
|
|
1795
|
-
if info.pm in PM_TO_STYLE:
|
|
1791
|
+
if info.pm in PmRegistry.PM_TO_STYLE:
|
|
1796
1792
|
print(f"\n Status: KNOWN device (PM {info.pm} in tables)")
|
|
1797
1793
|
else:
|
|
1798
1794
|
print(f"\n Status: UNKNOWN PM byte ({info.pm})")
|
|
@@ -1871,8 +1867,8 @@ class DiagCommands:
|
|
|
1871
1867
|
from trcc.device_led import (
|
|
1872
1868
|
LED_PID,
|
|
1873
1869
|
LED_VID,
|
|
1874
|
-
PM_TO_STYLE,
|
|
1875
1870
|
LedHandshakeInfo,
|
|
1871
|
+
PmRegistry,
|
|
1876
1872
|
)
|
|
1877
1873
|
|
|
1878
1874
|
print("LED Device Diagnostic")
|
|
@@ -1902,7 +1898,7 @@ class DiagCommands:
|
|
|
1902
1898
|
print(f" Segments: {style.segment_count}")
|
|
1903
1899
|
print(f" Zones: {style.zone_count}")
|
|
1904
1900
|
|
|
1905
|
-
if info.pm in PM_TO_STYLE:
|
|
1901
|
+
if info.pm in PmRegistry.PM_TO_STYLE:
|
|
1906
1902
|
print(f"\n Status: KNOWN device (PM {info.pm} in tables)")
|
|
1907
1903
|
else:
|
|
1908
1904
|
print(f"\n Status: UNKNOWN PM byte ({info.pm})")
|
|
@@ -2160,10 +2156,10 @@ StartupWMClass=trcc-linux
|
|
|
2160
2156
|
import shutil
|
|
2161
2157
|
from pathlib import Path
|
|
2162
2158
|
|
|
2163
|
-
from trcc.conf import
|
|
2159
|
+
from trcc.conf import Settings
|
|
2164
2160
|
|
|
2165
2161
|
# Clear resolution markers before wiping config dir
|
|
2166
|
-
clear_installed_resolutions()
|
|
2162
|
+
Settings.clear_installed_resolutions()
|
|
2167
2163
|
|
|
2168
2164
|
home = Path.home()
|
|
2169
2165
|
|
|
@@ -2255,8 +2251,8 @@ StartupWMClass=trcc-linux
|
|
|
2255
2251
|
return 0
|
|
2256
2252
|
|
|
2257
2253
|
if force:
|
|
2258
|
-
from trcc.conf import
|
|
2259
|
-
clear_installed_resolutions()
|
|
2254
|
+
from trcc.conf import Settings
|
|
2255
|
+
Settings.clear_installed_resolutions()
|
|
2260
2256
|
|
|
2261
2257
|
return download_pack(pack, force=force)
|
|
2262
2258
|
|
|
@@ -0,0 +1,254 @@
|
|
|
1
|
+
"""Application settings and config persistence for TRCC.
|
|
2
|
+
|
|
3
|
+
Single source of truth for resolution, paths, preferences, and device settings.
|
|
4
|
+
Config is stored at ~/.config/trcc/config.json (XDG-compliant).
|
|
5
|
+
|
|
6
|
+
Usage:
|
|
7
|
+
from trcc.conf import settings, Settings
|
|
8
|
+
|
|
9
|
+
settings.width # LCD width
|
|
10
|
+
settings.height # LCD height
|
|
11
|
+
settings.resolution # (width, height) tuple
|
|
12
|
+
settings.theme_dir # ThemeDir for current resolution
|
|
13
|
+
settings.web_dir # Cloud theme preview dir
|
|
14
|
+
settings.masks_dir # Cloud mask overlay dir
|
|
15
|
+
settings.temp_unit # 0=Celsius, 1=Fahrenheit
|
|
16
|
+
|
|
17
|
+
# Static settings operations
|
|
18
|
+
Settings.device_config_key(0, 0x87cd, 0x70db)
|
|
19
|
+
Settings.get_device_config(key)
|
|
20
|
+
Settings.save_device_setting(key, 'theme', 'dark')
|
|
21
|
+
|
|
22
|
+
# Low-level config access (module-level)
|
|
23
|
+
from trcc.conf import load_config, save_config
|
|
24
|
+
"""
|
|
25
|
+
from __future__ import annotations
|
|
26
|
+
|
|
27
|
+
import json
|
|
28
|
+
import logging
|
|
29
|
+
import os
|
|
30
|
+
from pathlib import Path
|
|
31
|
+
from typing import Optional
|
|
32
|
+
|
|
33
|
+
from .data_repository import (
|
|
34
|
+
USER_DATA_DIR,
|
|
35
|
+
DataManager,
|
|
36
|
+
ThemeDir,
|
|
37
|
+
)
|
|
38
|
+
|
|
39
|
+
log = logging.getLogger(__name__)
|
|
40
|
+
|
|
41
|
+
# =========================================================================
|
|
42
|
+
# Config file location (XDG-compliant)
|
|
43
|
+
# =========================================================================
|
|
44
|
+
|
|
45
|
+
_XDG_CONFIG = os.environ.get('XDG_CONFIG_HOME', os.path.expanduser('~/.config'))
|
|
46
|
+
CONFIG_DIR = os.path.join(_XDG_CONFIG, 'trcc')
|
|
47
|
+
CONFIG_PATH = os.path.join(CONFIG_DIR, 'config.json')
|
|
48
|
+
|
|
49
|
+
# USBLCD (SCSI/RGB565) supported resolutions
|
|
50
|
+
SUPPORTED_RESOLUTIONS = [
|
|
51
|
+
(240, 240),
|
|
52
|
+
(320, 320),
|
|
53
|
+
(480, 480),
|
|
54
|
+
(640, 480),
|
|
55
|
+
]
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
# =========================================================================
|
|
59
|
+
# Low-level config persistence
|
|
60
|
+
# =========================================================================
|
|
61
|
+
|
|
62
|
+
def load_config() -> dict:
|
|
63
|
+
"""Load user config from disk. Returns empty dict on missing/corrupt file."""
|
|
64
|
+
try:
|
|
65
|
+
with open(CONFIG_PATH, 'r') as f:
|
|
66
|
+
return json.load(f)
|
|
67
|
+
except (FileNotFoundError, json.JSONDecodeError, OSError):
|
|
68
|
+
return {}
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
def save_config(config: dict):
|
|
72
|
+
"""Save user config to disk."""
|
|
73
|
+
os.makedirs(CONFIG_DIR, exist_ok=True)
|
|
74
|
+
with open(CONFIG_PATH, 'w') as f:
|
|
75
|
+
json.dump(config, f, indent=2)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
# =========================================================================
|
|
79
|
+
# Settings class — all config operations + singleton
|
|
80
|
+
# =========================================================================
|
|
81
|
+
|
|
82
|
+
class Settings:
|
|
83
|
+
"""Application-wide settings singleton.
|
|
84
|
+
|
|
85
|
+
Static methods provide config operations (device, format, resolution).
|
|
86
|
+
Instance holds resolved paths and current state.
|
|
87
|
+
"""
|
|
88
|
+
|
|
89
|
+
# --- Private persistence helpers (init-only / called by instance methods) ---
|
|
90
|
+
|
|
91
|
+
@staticmethod
|
|
92
|
+
def _get_saved_resolution() -> tuple[int, int]:
|
|
93
|
+
"""Get saved LCD resolution, defaulting to (320, 320)."""
|
|
94
|
+
config = load_config()
|
|
95
|
+
res = config.get('resolution', [320, 320])
|
|
96
|
+
if isinstance(res, list) and len(res) == 2:
|
|
97
|
+
return (int(res[0]), int(res[1]))
|
|
98
|
+
return (320, 320)
|
|
99
|
+
|
|
100
|
+
@staticmethod
|
|
101
|
+
def _save_resolution(width: int, height: int):
|
|
102
|
+
"""Persist LCD resolution to config."""
|
|
103
|
+
config = load_config()
|
|
104
|
+
config['resolution'] = [width, height]
|
|
105
|
+
save_config(config)
|
|
106
|
+
|
|
107
|
+
@staticmethod
|
|
108
|
+
def _get_saved_temp_unit() -> int:
|
|
109
|
+
"""Get saved temperature unit. 0=Celsius, 1=Fahrenheit. Defaults to 0."""
|
|
110
|
+
return load_config().get('temp_unit', 0)
|
|
111
|
+
|
|
112
|
+
@staticmethod
|
|
113
|
+
def _save_temp_unit(unit: int):
|
|
114
|
+
"""Persist temperature unit to config. 0=Celsius, 1=Fahrenheit."""
|
|
115
|
+
config = load_config()
|
|
116
|
+
config['temp_unit'] = unit
|
|
117
|
+
save_config(config)
|
|
118
|
+
|
|
119
|
+
# --- Public static methods (device config, format prefs, etc.) ---
|
|
120
|
+
|
|
121
|
+
@staticmethod
|
|
122
|
+
def get_selected_device() -> Optional[str]:
|
|
123
|
+
"""Get CLI-selected device path (e.g. '/dev/sg0'). Returns None if unset."""
|
|
124
|
+
return load_config().get('selected_device')
|
|
125
|
+
|
|
126
|
+
@staticmethod
|
|
127
|
+
def save_selected_device(device_path: str):
|
|
128
|
+
"""Persist CLI-selected device path."""
|
|
129
|
+
config = load_config()
|
|
130
|
+
config['selected_device'] = device_path
|
|
131
|
+
save_config(config)
|
|
132
|
+
|
|
133
|
+
@staticmethod
|
|
134
|
+
def device_config_key(index: int, vid: int, pid: int) -> str:
|
|
135
|
+
"""Build per-device config key, e.g. '0:87cd_70db'."""
|
|
136
|
+
return f"{index}:{vid:04x}_{pid:04x}"
|
|
137
|
+
|
|
138
|
+
@staticmethod
|
|
139
|
+
def get_device_config(key: str) -> dict:
|
|
140
|
+
"""Get per-device config dict. Returns empty dict if not found."""
|
|
141
|
+
return load_config().get('devices', {}).get(key, {})
|
|
142
|
+
|
|
143
|
+
@staticmethod
|
|
144
|
+
def save_device_setting(key: str, setting: str, value):
|
|
145
|
+
"""Save a single setting for a device."""
|
|
146
|
+
config = load_config()
|
|
147
|
+
devices = config.setdefault('devices', {})
|
|
148
|
+
dev_cfg = devices.setdefault(key, {})
|
|
149
|
+
dev_cfg[setting] = value
|
|
150
|
+
save_config(config)
|
|
151
|
+
|
|
152
|
+
@staticmethod
|
|
153
|
+
def get_format_prefs() -> dict:
|
|
154
|
+
"""Get saved format preferences. Keys: time_format, date_format, temp_unit."""
|
|
155
|
+
return load_config().get('format_prefs', {})
|
|
156
|
+
|
|
157
|
+
@staticmethod
|
|
158
|
+
def save_format_pref(key: str, value: int):
|
|
159
|
+
"""Save a single format preference (e.g. time_format=1 for 12h)."""
|
|
160
|
+
config = load_config()
|
|
161
|
+
prefs = config.setdefault('format_prefs', {})
|
|
162
|
+
prefs[key] = value
|
|
163
|
+
save_config(config)
|
|
164
|
+
|
|
165
|
+
@staticmethod
|
|
166
|
+
def apply_format_prefs(overlay_config: dict) -> dict:
|
|
167
|
+
"""Apply saved format prefs to an overlay config dict.
|
|
168
|
+
|
|
169
|
+
Theme DC defines element layout; user prefs override format fields.
|
|
170
|
+
Each element cherry-picks the relevant pref for its metric type.
|
|
171
|
+
"""
|
|
172
|
+
prefs = Settings.get_format_prefs()
|
|
173
|
+
if not prefs:
|
|
174
|
+
return overlay_config
|
|
175
|
+
for entry in overlay_config.values():
|
|
176
|
+
if not isinstance(entry, dict):
|
|
177
|
+
continue
|
|
178
|
+
metric = entry.get('metric', '')
|
|
179
|
+
if metric == 'time' and 'time_format' in prefs:
|
|
180
|
+
entry['time_format'] = prefs['time_format']
|
|
181
|
+
elif metric == 'date' and 'date_format' in prefs:
|
|
182
|
+
entry['date_format'] = prefs['date_format']
|
|
183
|
+
if 'temp_unit' in prefs and 'metric' in entry:
|
|
184
|
+
entry['temp_unit'] = prefs['temp_unit']
|
|
185
|
+
return overlay_config
|
|
186
|
+
|
|
187
|
+
@staticmethod
|
|
188
|
+
def clear_installed_resolutions():
|
|
189
|
+
"""Remove all resolution-installed markers (used by uninstall)."""
|
|
190
|
+
config = load_config()
|
|
191
|
+
config.pop("installed_resolutions", None)
|
|
192
|
+
save_config(config)
|
|
193
|
+
|
|
194
|
+
# --- Instance methods and properties ---
|
|
195
|
+
|
|
196
|
+
def __init__(self) -> None:
|
|
197
|
+
w, h = Settings._get_saved_resolution()
|
|
198
|
+
self._width = w
|
|
199
|
+
self._height = h
|
|
200
|
+
|
|
201
|
+
# Derived paths (resolved for current resolution)
|
|
202
|
+
self.theme_dir: Optional[ThemeDir] = None
|
|
203
|
+
self.web_dir: Optional[Path] = None
|
|
204
|
+
self.masks_dir: Optional[Path] = None
|
|
205
|
+
|
|
206
|
+
# User preferences
|
|
207
|
+
self.temp_unit: int = Settings._get_saved_temp_unit()
|
|
208
|
+
|
|
209
|
+
# Static paths
|
|
210
|
+
self.user_data_dir = Path(USER_DATA_DIR)
|
|
211
|
+
|
|
212
|
+
# Resolve for initial resolution
|
|
213
|
+
if w and h:
|
|
214
|
+
self._resolve_paths()
|
|
215
|
+
|
|
216
|
+
@property
|
|
217
|
+
def width(self) -> int:
|
|
218
|
+
return self._width
|
|
219
|
+
|
|
220
|
+
@property
|
|
221
|
+
def height(self) -> int:
|
|
222
|
+
return self._height
|
|
223
|
+
|
|
224
|
+
@property
|
|
225
|
+
def resolution(self) -> tuple[int, int]:
|
|
226
|
+
return (self._width, self._height)
|
|
227
|
+
|
|
228
|
+
def set_resolution(self, width: int, height: int, persist: bool = True) -> None:
|
|
229
|
+
"""Update resolution and re-resolve all derived paths."""
|
|
230
|
+
if (width, height) == (self._width, self._height):
|
|
231
|
+
return
|
|
232
|
+
log.info("Settings: resolution %dx%d → %dx%d",
|
|
233
|
+
self._width, self._height, width, height)
|
|
234
|
+
self._width = width
|
|
235
|
+
self._height = height
|
|
236
|
+
self._resolve_paths()
|
|
237
|
+
if persist:
|
|
238
|
+
Settings._save_resolution(width, height)
|
|
239
|
+
|
|
240
|
+
def set_temp_unit(self, unit: int) -> None:
|
|
241
|
+
"""Set temperature unit (0=Celsius, 1=Fahrenheit) and persist."""
|
|
242
|
+
self.temp_unit = unit
|
|
243
|
+
Settings._save_temp_unit(unit)
|
|
244
|
+
|
|
245
|
+
def _resolve_paths(self) -> None:
|
|
246
|
+
"""Resolve theme/web/mask directories for current resolution."""
|
|
247
|
+
w, h = self._width, self._height
|
|
248
|
+
self.theme_dir = ThemeDir.for_resolution(w, h)
|
|
249
|
+
self.web_dir = Path(DataManager.get_web_dir(w, h))
|
|
250
|
+
self.masks_dir = Path(DataManager.get_web_masks_dir(w, h))
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
# Module-level singleton — import and use directly
|
|
254
|
+
settings = Settings()
|
|
@@ -659,6 +659,9 @@ class LEDController:
|
|
|
659
659
|
def set_sensor_source(self, source: str) -> None:
|
|
660
660
|
self._svc.set_sensor_source(source)
|
|
661
661
|
|
|
662
|
+
def set_seg_temp_unit(self, unit: str) -> None:
|
|
663
|
+
self._svc.set_seg_temp_unit(unit)
|
|
664
|
+
|
|
662
665
|
def set_clock_format(self, is_24h: bool) -> None:
|
|
663
666
|
self._svc.set_clock_format(is_24h)
|
|
664
667
|
|
|
@@ -673,6 +676,15 @@ class LEDController:
|
|
|
673
676
|
self._svc._hr10_mode = (style_id == 13)
|
|
674
677
|
if self._svc._hr10_mode:
|
|
675
678
|
self._svc._update_hr10_mask()
|
|
679
|
+
|
|
680
|
+
# Activate segment display for all digit-display styles (1-11)
|
|
681
|
+
from ..device_led_segment import get_display
|
|
682
|
+
self._svc._seg_display = get_display(style_id)
|
|
683
|
+
self._svc._segment_mode = self._svc._seg_display is not None
|
|
684
|
+
if self._svc._segment_mode:
|
|
685
|
+
self._svc._seg_phase = 0
|
|
686
|
+
self._svc._seg_tick_count = 0
|
|
687
|
+
self._svc._update_segment_mask()
|
|
676
688
|
self._fire_state_changed()
|
|
677
689
|
|
|
678
690
|
@property
|
|
@@ -291,7 +291,7 @@ class DebugReport:
|
|
|
291
291
|
|
|
292
292
|
def _handshake_led(self, dev, sec: _Section) -> None:
|
|
293
293
|
from trcc.device_factory import LedProtocol
|
|
294
|
-
from trcc.device_led import
|
|
294
|
+
from trcc.device_led import LedHandshakeInfo, PmRegistry
|
|
295
295
|
|
|
296
296
|
protocol = LedProtocol(vid=dev.vid, pid=dev.pid)
|
|
297
297
|
try:
|
|
@@ -302,7 +302,7 @@ class DebugReport:
|
|
|
302
302
|
return
|
|
303
303
|
|
|
304
304
|
assert isinstance(info, LedHandshakeInfo)
|
|
305
|
-
known = "KNOWN" if info.pm in PM_TO_STYLE else "UNKNOWN"
|
|
305
|
+
known = "KNOWN" if info.pm in PmRegistry.PM_TO_STYLE else "UNKNOWN"
|
|
306
306
|
style_info = ""
|
|
307
307
|
if info.style:
|
|
308
308
|
style_info = (f", LEDs={info.style.led_count}, "
|