trcc-linux 5.0.2__tar.gz → 5.0.4__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-5.0.2 → trcc_linux-5.0.4}/PKG-INFO +1 -1
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/pyproject.toml +1 -1
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/__version__.py +13 -1
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/device/bulk.py +2 -1
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/device/factory.py +121 -105
- trcc_linux-5.0.4/src/trcc/adapters/device/frame.py +84 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/device/hid.py +24 -10
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/device/led.py +2 -1
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/device/scsi.py +4 -2
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/infra/debug_report.py +67 -8
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/conf.py +23 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/base.py +89 -5
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/uc_about.py +3 -3
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/services/image.py +5 -4
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/services/led.py +1 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/hid_testing/test_device_hid.py +18 -2
- trcc_linux-5.0.4/tests/test_base_panel.py +186 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_debug_report.py +1 -1
- trcc_linux-5.0.4/tests/test_frame_device.py +192 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/.gitignore +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/LICENSE +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/README.md +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/__init__.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/__main__.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/__init__.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/device/__init__.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/device/detector.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/device/lcd.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/device/led_hr10.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/device/led_kvm.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/device/led_segment.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/infra/__init__.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/infra/binary_reader.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/infra/data_repository.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/infra/dc_config.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/infra/dc_parser.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/infra/dc_writer.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/infra/doctor.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/infra/font_resolver.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/infra/media_player.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/infra/theme_cloud.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/infra/theme_downloader.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/system/__init__.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/system/config.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/system/info.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/adapters/system/sensors.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/api.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/fonts/MSYH.TTC +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/fonts/MSYHBD.TTC +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/fonts/README.md +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/240240.gif +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/240320.gif +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/320240.gif +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/320320.gif +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A0/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A0/345/205/263/344/272/216d.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A0/345/205/263/344/272/216e.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A0/345/205/263/344/272/216en.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A0/345/205/263/344/272/216f.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A0/345/205/263/344/272/216p.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A0/345/205/263/344/272/216r.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A0/345/205/263/344/272/216tc.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A0/345/205/263/344/272/216x.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A0/345/220/257/345/212/250/347/225/214/351/235/242.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A0/346/225/260/346/215/256/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207en.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207tc.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A0/347/241/254/344/273/266/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1AK120 Digital.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1AK120 Digitala.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1AK120_Digital.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1AK120_Digitala.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1AS120 VISION.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1AS120 VISIONa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1AS120_VISION.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1AS120_VISIONa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1AX120 DIGITAL.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1AX120 DIGITALa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1AX120_DIGITAL.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1AX120_DIGITALa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1BA120 VISION.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1BA120 VISIONa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1BA120_VISION.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1BA120_VISIONa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1CORE VISION.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1CORE VISIONa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1CORE_VISION.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1CORE_VISIONa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1CZ1.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1CZ1a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1CZTV.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1CZTVa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1ELITE VISION.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1ELITE VISIONa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1ELITE_VISION.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1ELITE_VISIONa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN HORIZON PRO.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN HORIZON PROa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN MAGIC PRO.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN MAGIC PROa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN VISION V2.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN VISION V2a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN WARFRAME PRO.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN WARFRAME PROa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN WARFRAME SE.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN WARFRAME SEa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN WARFRAME.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN WARFRAMEa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN_HORIZON_PROa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN_MAGIC_PROa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN_VISION_V2.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN_VISION_V2a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN_WARFRAME.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PRO.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PROa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SE.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SEa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1FROZEN_WARFRAMEa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1GRAND VISION.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1GRAND VISIONa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1GRAND_VISION.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1GRAND_VISIONa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITAL.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITALa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1HYPER VISION.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1HYPER VISIONa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1HYPER_VISION.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1HYPER_VISIONa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1KVMALEDC6.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1KVMALEDC6a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LC1.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LC1a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LC2.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LC2JD.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LC2JDa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LC2a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LC3.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LC3a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LC5.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LC5a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF10.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF10a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF11.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF11a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF12.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF12a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF13.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF13a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF14.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF14a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF15.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF15a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF16.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF167.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF16a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF17a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF18.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF18a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF19.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF19a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF8.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LF8a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LM16SE.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LM16SEa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LM22.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LM22a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LM24.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LM24a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LM26.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LM26a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LM27.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1LM27a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1Mjolnir VISION PRO.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1Mjolnir VISION PROa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1Mjolnir VISION.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1Mjolnir VISIONa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1Mjolnir_VISION.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1Mjolnir_VISION_PRO.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1Mjolnir_VISION_PROa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1Mjolnir_VISIONa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1PA120 DIGITAL.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1PA120 DIGITALa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1PA120_DIGITAL.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1PA120_DIGITALa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1RK120 DIGITAL.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1RK120 DIGITALa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1RK120_DIGITAL.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1RK120_DIGITALa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1RP130 VISION.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1RP130 VISIONa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1RP130_VISION.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1RP130_VISIONa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1Stream Vision.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1Stream Visiona.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1Stream_Vision.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1Stream_Visiona.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A1/345/205/263/344/272/216a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A2_update_overlay.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A2/347/253/213/345/215/263/346/233/264/346/226/260.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/Acpu.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/Adram.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/Afan.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/Agpu.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/Ahdd.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/Alogout/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/Alogout/351/273/230/350/256/244.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/Anet.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A/344/270/212/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A/344/270/213/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A/345/242/236/345/212/240/346/225/260/347/273/204.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A/346/225/260/346/215/256/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A/346/273/232/345/212/250/346/235/241.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/A/350/207/252/345/256/232/344/271/211.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0CZ1.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0CZ1d.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0CZ1e.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0CZ1en.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0CZ1f.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0CZ1p.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0CZ1r.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0CZ1tc.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0CZ1x.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0KVMA/347/201/257/346/216/247.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LC1.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LC1d.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LC1e.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LC1en.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LC1f.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LC1p.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LC1r.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LC1tc.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LC1x.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LC2.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LC2d.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LC2e.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LC2en.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LC2f.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LC2p.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LC2r.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LC2tc.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LC2x.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF10.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF10d.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF10e.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF10en.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF10f.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF10p.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF10r.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF10tc.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF10x.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF11.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF11d.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF11e.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF11en.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF11f.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF11p.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF11r.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF11tc.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF11x.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF12.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF12d.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF12e.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF12en.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF12f.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF12p.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF12r.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF12tc.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF12x.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF13.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF13d.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF13e.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF13en.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF13f.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF13p.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF13r.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF13tc.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF13x.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF15.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF15d.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF15e.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF15en.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF15f.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF15p.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF15r.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF15tc.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF15x.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF8.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF8d.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF8e.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF8en.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF8f.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF8p.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF8r.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF8tc.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0LF8x.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0rgblf13.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217d.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217e.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217en.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217f.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217p.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217r.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217tc.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217x.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D1/345/244/264/347/233/2241.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D1/345/244/264/347/233/2242.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D1/345/244/264/347/233/2243.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D1/345/244/264/347/233/2244.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D1/345/244/264/347/233/2245.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2111.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/21110.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/21110a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/21111.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/21111a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/21112.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/21112a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2111a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2112.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2112a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2113.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2113a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2114.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2114a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2115.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2115a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2116.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2116a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2117.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2117a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2118.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2118a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2119.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2119a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D3/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D3/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D3/345/274/200/345/205/263b.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D3/346/227/213/351/222/256.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D3/346/227/213/351/222/2560.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D3/346/251/231.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D3/346/271/226.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D3/347/231/275.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D3/347/264/253.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D3/347/272/242.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D3/347/273/277.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D3/350/223/235.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D3/351/273/204.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/345/274/200/346/234/272.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/345/274/200/346/234/272a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/346/214/211/351/222/2561.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/346/214/211/351/222/2561a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/346/214/211/351/222/2562a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/346/214/211/351/222/2563.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/346/214/211/351/222/2563a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/346/214/211/351/222/2564.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/346/214/211/351/222/2564a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2171.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2171a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2172.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2172a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2173.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2173a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2174.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2174a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2175.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2175a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2176.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2176a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/DAK120_DIGITAL.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/DAX120_DIGITAL.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/DCZ1.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/DFROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/DFROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/DLC1.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/DLC2.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/DLF10.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/DLF11.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/DLF12.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/DLF13.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/DLF15.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/DLF8.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/DPA120 DIGITAL.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/DPA120_DIGITAL.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/Dch1.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/Dch2.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/Dch3.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/Dch4.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/Dchcz1.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/2062.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/225.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/2252.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/256.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/2562.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultra.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultraa.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/206/205/345/256/271d.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/206/205/345/256/271e.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/206/205/345/256/271en.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/206/205/345/256/271f.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/206/205/345/256/271p.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/206/205/345/256/271r.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/206/205/345/256/271tc.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/206/205/345/256/271x.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/212/250/347/224/273/350/201/224/345/212/250.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277d.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277e.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277en.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277f.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277p.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277r.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277tc.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277x.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277d.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277e.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277en.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277f.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277p.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277r.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277tc.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277x.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xy.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyd.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xye.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyen.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyf.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyp.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyr.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xytc.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyx.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yx.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxd.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxe.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxen.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxf.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxp.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxr.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxtc.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxx.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250d.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250e.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250en.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250f.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250p.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250r.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250tc.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250x.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/346/250/241/345/235/227/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272d.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272e.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272f.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272p.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272r.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272x.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227en.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227tc.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2501.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2502.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2503.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0CZTV.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0CZTVd.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0CZTVe.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0CZTVen.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0CZTVf.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0CZTVp.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0CZTVr.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0CZTVtc.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0CZTVx.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0M1.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0M2.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0M3.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0M4.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0M5.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0M5a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0M6.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230d.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230e.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230en.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230f.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230p.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230r.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230tc.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230x.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/346/222/255/346/224/276.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/346/232/202/345/201/234.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230d.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230e.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230en.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230f.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230p.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230r.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230tc.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230x.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257d.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257e.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257f.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257p.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257r.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257x.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271280X480.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X462.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227360X800.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227462X1920.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X1280.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X800.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X854.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227540X960.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X360.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X480.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227854X480.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227960X540.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P12H.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P240240.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P240320.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P24H.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P320240.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P320320.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/PDM.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/PDMY.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/PL0.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/PL1.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/PL2.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/PL3.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/PM1.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/PM1a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/PM2.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/PM2a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/PM3.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/PM3a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/PM4.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/PM4a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/PM5.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/PM5a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/PM6.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/PM6a.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/PMD.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/PYMD.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/344/277/235/345/255/230/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/207/217.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227b.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/212/240.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/217/226/350/211/262.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/220/270/347/256/241.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/233/276/347/211/207.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/234/206/345/275/242/345/205/263/351/227/255.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/234/206/345/275/242/347/241/256/345/256/232.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/244/232/351/200/211.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/244/232/351/200/211a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/256/275/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/257/274/345/205/245.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/257/274/345/207/272.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/345/270/256/345/212/251.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/346/225/260/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/346/225/260/346/215/256.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/346/226/207/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/346/227/213/350/275/254.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206A.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/205/263.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/274/200.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233180.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233270.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/23390.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a180.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a270.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a90.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b180.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b270.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b90.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206A.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/216/257H1.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/216/257H2.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/216/257H3.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/216/257H4.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/216/257H5.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/216/257H6.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/275/221/347/273/234.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/347/275/221/347/273/234/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/350/243/201/345/207/217.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/350/247/206/351/242/221.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/350/275/256/346/222/2551.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/350/275/256/346/222/2552.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/350/275/256/346/222/2553.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/350/275/256/346/222/2554.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/350/275/256/346/222/2555.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/350/275/256/346/222/2556.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/350/275/256/346/222/255/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/350/275/275/345/205/245/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/350/277/233/345/272/246/346/235/241.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206M.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206Ma.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210116X480.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210180X400.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210180X480.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210240X240.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210240X320.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210240X400.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210240X427.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210270X480.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210320X240.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320/345/234/206.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210360360/345/234/206.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210400X180.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210400X240.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210427X240.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210480X116.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210480X180.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210480X270.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480/345/234/206.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/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-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/P/351/253/230/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/p/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/ucBoFangQiKongZhi1.BackgroundImage.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/ucBoFangQiKongZhi1_BackgroundImage.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/ucVideoCut1.BackgroundImage.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/ucVideoCut1_BackgroundImage.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/ucXiTongXianShi1.BackgroundImage.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/ucXiTongXianShiAdd1.BackgroundImage.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/ucXiTongXianShiColor1.BackgroundImage.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/gui/ucXiTongXianShiTable1.BackgroundImage.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/icons/app.ico +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/icons/trcc.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/icons/trcc_128x128.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/icons/trcc_16x16.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/icons/trcc_24x24.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/icons/trcc_256x256.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/icons/trcc_32x32.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/icons/trcc_48x48.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/assets/icons/trcc_64x64.png +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/cli.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/core/__init__.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/core/controllers.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/core/models.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/data/trcc_usb.te +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/install/__init__.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/install/gui.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/__init__.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/assets.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/constants.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/eyedropper.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/pipewire_capture.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/qt_app_mvc.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/screen_capture.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/uc_activity_sidebar.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/uc_color_wheel.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/uc_device.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/uc_image_cut.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/uc_info_module.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/uc_led_control.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/uc_preview.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/uc_screen_led.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/uc_sensor_picker.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/uc_seven_segment.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/uc_system_info.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/uc_theme_local.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/uc_theme_mask.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/uc_theme_setting.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/uc_theme_web.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/qt_components/uc_video_cut.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/services/__init__.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/services/device.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/services/display.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/services/media.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/services/overlay.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/services/system.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/src/trcc/services/theme.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/README.md +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/__init__.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/hid_testing/__init__.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/hid_testing/conftest.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/hid_testing/test_device_factory.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/hid_testing/test_device_led.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/hid_testing/test_led_controller.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/run_tests.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_api.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_architecture.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_ax120_display.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_cli.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_controllers.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_data_repository.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_dc_parser.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_dc_writer.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_device_bulk.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_device_detector.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_device_implementations.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_device_lcd.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_device_led_kvm.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_device_scsi.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_doctor.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_hr10_display.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_integration.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_media_player.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_models.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_overlay_renderer.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_qt_base.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_qt_constants.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_qt_widgets.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_services.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_system_config.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_system_info.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_system_sensors.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_theme_cloud.py +0 -0
- {trcc_linux-5.0.2 → trcc_linux-5.0.4}/tests/test_theme_downloader.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: trcc-linux
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.4
|
|
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__ = "5.0.
|
|
3
|
+
__version__ = "5.0.4"
|
|
4
4
|
__version_info__ = tuple(int(x) for x in __version__.split("."))
|
|
5
5
|
|
|
6
6
|
# Version history:
|
|
@@ -195,3 +195,15 @@ __version_info__ = tuple(int(x) for x in __version__.split("."))
|
|
|
195
195
|
# 30ms→150ms matching C# 10-tick counter, remove redundant 30ms USB
|
|
196
196
|
# cooldown sleep, skip USB sends when colors unchanged (static mode).
|
|
197
197
|
# Sensor poll interval 0.9s→2.0s. 2319 tests.
|
|
198
|
+
# 5.0.3 - Fix LED wire remap skipped: LEDService.initialize() never called
|
|
199
|
+
# protocol.handshake(), so style info was never cached and wire remap
|
|
200
|
+
# was silently skipped — colors sent to wrong physical LED positions.
|
|
201
|
+
# Affects all LED devices (#19 Phantom Spirit EVO, #15 PA120).
|
|
202
|
+
# Fix SCSI byte order: remove 240x320 from big-endian set (C# FBL 50
|
|
203
|
+
# uses little-endian, not SPIMode=2). Add SCSI handshake to trcc report
|
|
204
|
+
# (FBL byte + resolution) for resolution diagnostics (#17). 2352 tests.
|
|
205
|
+
# 5.0.4 - Fix HID Type 2 frame header: was sending all-zero 16-byte prefix,
|
|
206
|
+
# device firmware expects DA DB DC DD magic + command type (0x02) +
|
|
207
|
+
# mode flags matching C# FormCZTV.ImageTo565() mode 3. Without the
|
|
208
|
+
# magic, firmware rejects frames — causing USB disconnect (#16) or
|
|
209
|
+
# stuck-on-logo (#28). 2353 tests.
|
|
@@ -18,6 +18,7 @@ from __future__ import annotations
|
|
|
18
18
|
import logging
|
|
19
19
|
import struct
|
|
20
20
|
|
|
21
|
+
from trcc.adapters.device.frame import FrameDevice
|
|
21
22
|
from trcc.core.models import HandshakeResult, fbl_to_resolution, pm_to_fbl
|
|
22
23
|
|
|
23
24
|
log = logging.getLogger(__name__)
|
|
@@ -61,7 +62,7 @@ _FRAME_HEADER_SIZE = 64
|
|
|
61
62
|
_WRITE_CHUNK_SIZE = 16 * 1024 # 16 KiB per USB bulk write
|
|
62
63
|
|
|
63
64
|
|
|
64
|
-
class BulkDevice:
|
|
65
|
+
class BulkDevice(FrameDevice):
|
|
65
66
|
"""USB bulk device handler for USBLCDNew-type LCDs (87AD:70DB etc.).
|
|
66
67
|
|
|
67
68
|
Uses pyusb for raw bulk endpoint I/O. The kernel must not have
|
|
@@ -32,6 +32,21 @@ from trcc.core.models import (
|
|
|
32
32
|
|
|
33
33
|
log = logging.getLogger(__name__)
|
|
34
34
|
|
|
35
|
+
# Errno 16 = EBUSY — device interface claimed by another process (e.g. GUI).
|
|
36
|
+
_ERRNO_EBUSY = 16
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def _is_ebusy(exc: Exception) -> bool:
|
|
40
|
+
"""Check if exception is a USB EBUSY (device in use by another process)."""
|
|
41
|
+
# Walk the exception chain — EBUSY may be wrapped in RuntimeError
|
|
42
|
+
cur: Optional[BaseException] = exc
|
|
43
|
+
while cur is not None:
|
|
44
|
+
if getattr(cur, "errno", None) == _ERRNO_EBUSY:
|
|
45
|
+
return True
|
|
46
|
+
cur = cur.__cause__
|
|
47
|
+
return False
|
|
48
|
+
|
|
49
|
+
|
|
35
50
|
# =========================================================================
|
|
36
51
|
# DeviceProtocol ABC — the contract both SCSI and HID implement
|
|
37
52
|
# =========================================================================
|
|
@@ -53,6 +68,9 @@ class DeviceProtocol(ABC):
|
|
|
53
68
|
self.on_send_complete: Optional[Callable[[bool], None]] = None
|
|
54
69
|
self.on_error: Optional[Callable[[str], None]] = None
|
|
55
70
|
self.on_state_changed: Optional[Callable[[str, object], None]] = None
|
|
71
|
+
# Handshake state — common to all protocols
|
|
72
|
+
self._handshake_result: Optional[HandshakeResult] = None
|
|
73
|
+
self._last_error: Optional[Exception] = None
|
|
56
74
|
|
|
57
75
|
@abstractmethod
|
|
58
76
|
def send_image(self, image_data: bytes, width: int, height: int) -> bool:
|
|
@@ -99,13 +117,59 @@ class DeviceProtocol(ABC):
|
|
|
99
117
|
"""
|
|
100
118
|
return False
|
|
101
119
|
|
|
102
|
-
@abstractmethod
|
|
103
120
|
def handshake(self) -> Optional[HandshakeResult]:
|
|
104
|
-
"""
|
|
121
|
+
"""Template Method: perform handshake, cache result, handle errors.
|
|
105
122
|
|
|
106
|
-
|
|
107
|
-
Returns None if handshake fails or device is unresponsive.
|
|
123
|
+
Subclasses implement _do_handshake() with protocol-specific logic.
|
|
108
124
|
"""
|
|
125
|
+
try:
|
|
126
|
+
result = self._do_handshake()
|
|
127
|
+
self._handshake_result = result
|
|
128
|
+
if result:
|
|
129
|
+
self._cache_handshake(result)
|
|
130
|
+
return result
|
|
131
|
+
except Exception as e:
|
|
132
|
+
if _is_ebusy(e):
|
|
133
|
+
log.warning("%s in use by another process",
|
|
134
|
+
self._handshake_label)
|
|
135
|
+
else:
|
|
136
|
+
log.exception("%s handshake failed", self._handshake_label)
|
|
137
|
+
self._last_error = e
|
|
138
|
+
self._notify_error(f"{self._handshake_label} handshake failed: {e}")
|
|
139
|
+
return None
|
|
140
|
+
|
|
141
|
+
@abstractmethod
|
|
142
|
+
def _do_handshake(self) -> Optional[HandshakeResult]:
|
|
143
|
+
"""Protocol-specific handshake logic. Called by handshake()."""
|
|
144
|
+
|
|
145
|
+
@property
|
|
146
|
+
def _handshake_label(self) -> str:
|
|
147
|
+
"""Human-readable label for error messages (e.g. 'HID 0416:5302')."""
|
|
148
|
+
return self.protocol_name
|
|
149
|
+
|
|
150
|
+
@property
|
|
151
|
+
def handshake_info(self) -> Optional[HandshakeResult]:
|
|
152
|
+
"""Cached handshake result (None if not yet handshaked)."""
|
|
153
|
+
return self._handshake_result
|
|
154
|
+
|
|
155
|
+
@property
|
|
156
|
+
def last_error(self) -> Optional[Exception]:
|
|
157
|
+
"""Last exception from handshake."""
|
|
158
|
+
return self._last_error
|
|
159
|
+
|
|
160
|
+
def _cache_handshake(self, result: HandshakeResult) -> None:
|
|
161
|
+
"""Save handshake result so `trcc report` can read it while GUI runs."""
|
|
162
|
+
try:
|
|
163
|
+
from trcc.conf import save_last_handshake
|
|
164
|
+
save_last_handshake({
|
|
165
|
+
"protocol": self.protocol_name,
|
|
166
|
+
"model_id": result.model_id,
|
|
167
|
+
"resolution": list(result.resolution) if result.resolution else None,
|
|
168
|
+
"serial": result.serial,
|
|
169
|
+
"raw": result.raw_response.hex() if result.raw_response else "",
|
|
170
|
+
})
|
|
171
|
+
except Exception:
|
|
172
|
+
log.debug("Failed to cache handshake result", exc_info=True)
|
|
109
173
|
|
|
110
174
|
@property
|
|
111
175
|
def is_led(self) -> bool:
|
|
@@ -142,7 +206,7 @@ class ScsiProtocol(DeviceProtocol):
|
|
|
142
206
|
super().__init__()
|
|
143
207
|
self._path = device_path
|
|
144
208
|
|
|
145
|
-
def
|
|
209
|
+
def _do_handshake(self) -> Optional[HandshakeResult]:
|
|
146
210
|
"""Poll SCSI device to discover FBL → resolution."""
|
|
147
211
|
from .scsi import ScsiDevice
|
|
148
212
|
dev = ScsiDevice(self._path)
|
|
@@ -205,51 +269,36 @@ class HidProtocol(DeviceProtocol):
|
|
|
205
269
|
self._pid = pid
|
|
206
270
|
self._device_type = device_type
|
|
207
271
|
self._transport = None
|
|
208
|
-
self._handshake_info = None
|
|
209
|
-
self._last_error: Optional[Exception] = None
|
|
210
|
-
|
|
211
|
-
def handshake(self) -> Optional[HandshakeResult]:
|
|
212
|
-
"""Perform HID LCD handshake and return HidHandshakeInfo.
|
|
213
|
-
|
|
214
|
-
Opens transport if needed. Returns hid_device.HidHandshakeInfo with
|
|
215
|
-
PM, SUB, FBL, resolution, and raw_response for debugging.
|
|
216
|
-
"""
|
|
217
|
-
try:
|
|
218
|
-
if self._transport is None:
|
|
219
|
-
log.debug("Opening HID transport: %04X:%04X (type %d)", self._vid, self._pid, self._device_type)
|
|
220
|
-
self._transport = self._create_transport()
|
|
221
|
-
self._transport.open()
|
|
222
|
-
self._notify_state_changed("transport_open", True)
|
|
223
272
|
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
log.warning("HID handshake returned None")
|
|
240
|
-
self._notify_state_changed("handshake_complete", True)
|
|
241
|
-
return self._handshake_info
|
|
242
|
-
except Exception as e:
|
|
243
|
-
log.exception("HID handshake failed for %04X:%04X type %d",
|
|
244
|
-
self._vid, self._pid, self._device_type)
|
|
245
|
-
self._last_error = e
|
|
246
|
-
self._notify_error(f"HID handshake failed: {e}")
|
|
273
|
+
def _do_handshake(self) -> Optional[HandshakeResult]:
|
|
274
|
+
"""Open HID transport and perform type-specific handshake."""
|
|
275
|
+
if self._transport is None:
|
|
276
|
+
log.debug("Opening HID transport: %04X:%04X (type %d)", self._vid, self._pid, self._device_type)
|
|
277
|
+
self._transport = self._create_transport()
|
|
278
|
+
self._transport.open()
|
|
279
|
+
self._notify_state_changed("transport_open", True)
|
|
280
|
+
|
|
281
|
+
from .hid import HidDeviceType2, HidDeviceType3
|
|
282
|
+
if self._device_type == 2:
|
|
283
|
+
handler = HidDeviceType2(self._transport)
|
|
284
|
+
elif self._device_type == 3:
|
|
285
|
+
handler = HidDeviceType3(self._transport)
|
|
286
|
+
else:
|
|
287
|
+
log.warning("Unknown HID device type: %d", self._device_type)
|
|
247
288
|
return None
|
|
248
289
|
|
|
290
|
+
result = handler.handshake()
|
|
291
|
+
if result:
|
|
292
|
+
log.info("HID handshake OK: PM=%s, FBL=%s, resolution=%s",
|
|
293
|
+
result.mode_byte_1, result.fbl, result.resolution)
|
|
294
|
+
else:
|
|
295
|
+
log.warning("HID handshake returned None")
|
|
296
|
+
self._notify_state_changed("handshake_complete", True)
|
|
297
|
+
return result
|
|
298
|
+
|
|
249
299
|
@property
|
|
250
|
-
def
|
|
251
|
-
"
|
|
252
|
-
return self._last_error
|
|
300
|
+
def _handshake_label(self) -> str:
|
|
301
|
+
return f"HID {self._vid:04X}:{self._pid:04X} type {self._device_type}"
|
|
253
302
|
|
|
254
303
|
def send_image(self, image_data: bytes, width: int, height: int) -> bool:
|
|
255
304
|
try:
|
|
@@ -336,8 +385,6 @@ class LedProtocol(DeviceProtocol):
|
|
|
336
385
|
self._pid = pid
|
|
337
386
|
self._transport = None
|
|
338
387
|
self._sender = None
|
|
339
|
-
self._handshake_info = None
|
|
340
|
-
self._last_error: Optional[Exception] = None
|
|
341
388
|
|
|
342
389
|
def send_image(self, image_data: bytes, width: int, height: int) -> bool:
|
|
343
390
|
"""No-op — LED devices don't display images."""
|
|
@@ -374,10 +421,10 @@ class LedProtocol(DeviceProtocol):
|
|
|
374
421
|
from .led import LedPacketBuilder, remap_led_colors
|
|
375
422
|
|
|
376
423
|
# Remap logical LED order → physical wire order (per-style).
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
)
|
|
424
|
+
hr = self._handshake_result
|
|
425
|
+
style = getattr(hr, 'style', None) if hr else None
|
|
426
|
+
if style:
|
|
427
|
+
led_colors = remap_led_colors(led_colors, style.style_id)
|
|
381
428
|
|
|
382
429
|
packet = LedPacketBuilder.build_led_packet(
|
|
383
430
|
led_colors, is_on, global_on, brightness
|
|
@@ -390,43 +437,27 @@ class LedProtocol(DeviceProtocol):
|
|
|
390
437
|
self._notify_send_complete(False)
|
|
391
438
|
return False
|
|
392
439
|
|
|
393
|
-
def
|
|
394
|
-
"""
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
Subsequent calls return the cached result.
|
|
398
|
-
|
|
399
|
-
Returns:
|
|
400
|
-
LedHandshakeInfo with pm byte and resolved device style.
|
|
401
|
-
"""
|
|
402
|
-
# Return cached result — device firmware ignores re-handshakes
|
|
403
|
-
if self._handshake_info is not None:
|
|
404
|
-
return self._handshake_info
|
|
440
|
+
def _do_handshake(self) -> Optional[HandshakeResult]:
|
|
441
|
+
"""LED handshake — cached after first call (firmware ignores re-handshakes)."""
|
|
442
|
+
if self._handshake_result is not None:
|
|
443
|
+
return self._handshake_result
|
|
405
444
|
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
self._notify_state_changed("transport_open", True)
|
|
445
|
+
if self._transport is None:
|
|
446
|
+
self._transport = self._create_transport()
|
|
447
|
+
self._transport.open()
|
|
448
|
+
self._notify_state_changed("transport_open", True)
|
|
411
449
|
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
450
|
+
if self._sender is None:
|
|
451
|
+
from .led import LedHidSender
|
|
452
|
+
self._sender = LedHidSender(self._transport)
|
|
415
453
|
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
except Exception as e:
|
|
420
|
-
log.exception("LED handshake failed for %04X:%04X",
|
|
421
|
-
self._vid, self._pid)
|
|
422
|
-
self._last_error = e
|
|
423
|
-
self._notify_error(f"LED handshake failed: {e}")
|
|
424
|
-
return None
|
|
454
|
+
result = self._sender.handshake()
|
|
455
|
+
self._notify_state_changed("handshake_complete", True)
|
|
456
|
+
return result
|
|
425
457
|
|
|
426
458
|
@property
|
|
427
|
-
def
|
|
428
|
-
"
|
|
429
|
-
return self._last_error
|
|
459
|
+
def _handshake_label(self) -> str:
|
|
460
|
+
return f"LED {self._vid:04X}:{self._pid:04X}"
|
|
430
461
|
|
|
431
462
|
def close(self) -> None:
|
|
432
463
|
if self._transport is not None:
|
|
@@ -475,11 +506,6 @@ class LedProtocol(DeviceProtocol):
|
|
|
475
506
|
def is_led(self) -> bool:
|
|
476
507
|
return True
|
|
477
508
|
|
|
478
|
-
@property
|
|
479
|
-
def handshake_info(self):
|
|
480
|
-
"""Cached handshake info (None if not yet handshaked)."""
|
|
481
|
-
return self._handshake_info
|
|
482
|
-
|
|
483
509
|
def __repr__(self) -> str:
|
|
484
510
|
return f"LedProtocol(vid=0x{self._vid:04x}, pid=0x{self._pid:04x})"
|
|
485
511
|
|
|
@@ -500,8 +526,6 @@ class BulkProtocol(DeviceProtocol):
|
|
|
500
526
|
self._vid = vid
|
|
501
527
|
self._pid = pid
|
|
502
528
|
self._device: Optional[Any] = None # BulkDevice (lazy import)
|
|
503
|
-
self._handshake_result: Optional[HandshakeResult] = None
|
|
504
|
-
self._last_error: Optional[Exception] = None
|
|
505
529
|
|
|
506
530
|
def _ensure_device(self):
|
|
507
531
|
"""Lazily create and handshake the bulk device."""
|
|
@@ -517,22 +541,14 @@ class BulkProtocol(DeviceProtocol):
|
|
|
517
541
|
else:
|
|
518
542
|
log.warning("Bulk handshake: no resolution detected")
|
|
519
543
|
|
|
520
|
-
def
|
|
521
|
-
"""
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
return self._handshake_result
|
|
525
|
-
except Exception as e:
|
|
526
|
-
log.exception("Bulk handshake failed for %04X:%04X",
|
|
527
|
-
self._vid, self._pid)
|
|
528
|
-
self._last_error = e
|
|
529
|
-
self._notify_error(f"Bulk handshake failed: {e}")
|
|
530
|
-
return None
|
|
544
|
+
def _do_handshake(self) -> Optional[HandshakeResult]:
|
|
545
|
+
"""Create bulk device and perform handshake."""
|
|
546
|
+
self._ensure_device()
|
|
547
|
+
return self._handshake_result
|
|
531
548
|
|
|
532
549
|
@property
|
|
533
|
-
def
|
|
534
|
-
"
|
|
535
|
-
return self._last_error
|
|
550
|
+
def _handshake_label(self) -> str:
|
|
551
|
+
return f"Bulk {self._vid:04X}:{self._pid:04X}"
|
|
536
552
|
|
|
537
553
|
def send_image(self, image_data: bytes, width: int, height: int) -> bool:
|
|
538
554
|
try:
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Transport-layer ABC hierarchy for all USB device types.
|
|
3
|
+
|
|
4
|
+
Two categories of devices plug into DeviceProtocol (factory.py adapter layer):
|
|
5
|
+
- Frame devices (SCSI, HID, Bulk) send image frames to LCD screens.
|
|
6
|
+
- LED devices send RGB color data to LED controllers.
|
|
7
|
+
|
|
8
|
+
Both share a universal contract (UsbDevice: handshake + close), then
|
|
9
|
+
specialize with their data-sending method.
|
|
10
|
+
|
|
11
|
+
Hierarchy:
|
|
12
|
+
UsbDevice (ABC) — handshake() + close()
|
|
13
|
+
├── FrameDevice (ABC) — + send_frame()
|
|
14
|
+
│ ├── ScsiDevice
|
|
15
|
+
│ ├── BulkDevice
|
|
16
|
+
│ └── HidDevice (ABC)
|
|
17
|
+
│ ├── HidDeviceType2
|
|
18
|
+
│ └── HidDeviceType3
|
|
19
|
+
└── LedDevice (ABC) — + send_led_data() + is_sending
|
|
20
|
+
└── LedHidSender
|
|
21
|
+
"""
|
|
22
|
+
|
|
23
|
+
from abc import ABC, abstractmethod
|
|
24
|
+
|
|
25
|
+
from trcc.core.models import HandshakeResult
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
class UsbDevice(ABC):
|
|
29
|
+
"""Universal contract for all USB devices.
|
|
30
|
+
|
|
31
|
+
Every device — frame-sending or LED — performs a handshake to
|
|
32
|
+
negotiate capabilities and must release resources on close.
|
|
33
|
+
"""
|
|
34
|
+
|
|
35
|
+
@abstractmethod
|
|
36
|
+
def handshake(self) -> HandshakeResult:
|
|
37
|
+
"""Perform device handshake and return capabilities."""
|
|
38
|
+
|
|
39
|
+
@abstractmethod
|
|
40
|
+
def close(self) -> None:
|
|
41
|
+
"""Release device resources."""
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class FrameDevice(UsbDevice):
|
|
45
|
+
"""Contract for USB LCD devices that send image frames.
|
|
46
|
+
|
|
47
|
+
Adds send_frame() to the universal handshake + close contract.
|
|
48
|
+
Not for LED devices (which send color data, not image frames).
|
|
49
|
+
"""
|
|
50
|
+
|
|
51
|
+
@abstractmethod
|
|
52
|
+
def send_frame(self, image_data: bytes) -> bool:
|
|
53
|
+
"""Send one image frame to the LCD device.
|
|
54
|
+
|
|
55
|
+
Args:
|
|
56
|
+
image_data: Frame bytes (RGB565, JPEG, etc. depending on device).
|
|
57
|
+
|
|
58
|
+
Returns:
|
|
59
|
+
True if the frame was sent successfully.
|
|
60
|
+
"""
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
class LedDevice(UsbDevice):
|
|
64
|
+
"""Contract for USB LED devices that send RGB color data.
|
|
65
|
+
|
|
66
|
+
Adds send_led_data() and is_sending to the universal contract.
|
|
67
|
+
Not for LCD frame devices (which send image frames, not LED data).
|
|
68
|
+
"""
|
|
69
|
+
|
|
70
|
+
@abstractmethod
|
|
71
|
+
def send_led_data(self, packet: bytes) -> bool:
|
|
72
|
+
"""Send an LED data packet to the device.
|
|
73
|
+
|
|
74
|
+
Args:
|
|
75
|
+
packet: Complete LED packet (header + RGB payload).
|
|
76
|
+
|
|
77
|
+
Returns:
|
|
78
|
+
True if the packet was sent successfully.
|
|
79
|
+
"""
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
@abstractmethod
|
|
83
|
+
def is_sending(self) -> bool:
|
|
84
|
+
"""Whether a send is currently in progress."""
|
|
@@ -27,6 +27,7 @@ from typing import Any, Optional, Set
|
|
|
27
27
|
import usb.core
|
|
28
28
|
import usb.util
|
|
29
29
|
|
|
30
|
+
from trcc.adapters.device.frame import FrameDevice
|
|
30
31
|
from trcc.core.models import (
|
|
31
32
|
DEVICE_BUTTON_IMAGE, # noqa: F401 — re-export
|
|
32
33
|
PM_TO_BUTTON_IMAGE, # noqa: F401 — re-export
|
|
@@ -161,7 +162,7 @@ def _ceil_to_512(n: int) -> int:
|
|
|
161
162
|
# HID device base class
|
|
162
163
|
# =========================================================================
|
|
163
164
|
|
|
164
|
-
class HidDevice:
|
|
165
|
+
class HidDevice(FrameDevice):
|
|
165
166
|
"""Base for HID LCD device handlers (Type 2 and Type 3).
|
|
166
167
|
|
|
167
168
|
Provides shared init state and the handshake template:
|
|
@@ -351,21 +352,34 @@ class HidDeviceType2(HidDevice):
|
|
|
351
352
|
def build_frame_packet(image_data: bytes) -> bytes:
|
|
352
353
|
"""Build a frame packet from raw image data.
|
|
353
354
|
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
355
|
+
C# FormCZTV.ImageTo565() mode 3 builds a 20-byte header::
|
|
356
|
+
|
|
357
|
+
DA DB DC DD 02 00 01 00 F0 00 40 01 02 00 00 00 [len_LE32]
|
|
358
|
+
|
|
359
|
+
- [0:4] DA DB DC DD — protocol magic (same as handshake)
|
|
360
|
+
- [4] 02 — SSCRM_CMD_TYPE_PICTURE
|
|
361
|
+
- [6] 01 — mode flag
|
|
362
|
+
- [8:10] F0 00 — 240 (LE16, hardcoded in C#)
|
|
363
|
+
- [10:12] 40 01 — 320 (LE16, hardcoded in C#)
|
|
364
|
+
- [12] 02 — sub-flag
|
|
365
|
+
- [16:20] image data length (LE uint32)
|
|
359
366
|
|
|
360
367
|
The total transfer length is rounded up to the next 512-byte
|
|
361
368
|
boundary (C#: ``num2 / 512 * 512 + (num2 % 512 != 0 ? 512 : 0)``).
|
|
362
369
|
|
|
363
370
|
Returns the padded packet ready for USB bulk write.
|
|
364
371
|
"""
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
372
|
+
# Match C# FormCZTV.ImageTo565() mode 3 header exactly
|
|
373
|
+
header = bytearray([
|
|
374
|
+
0xDA, 0xDB, 0xDC, 0xDD, # magic
|
|
375
|
+
0x02, 0x00, # cmd_type = PICTURE
|
|
376
|
+
0x01, 0x00, # mode flag
|
|
377
|
+
0xF0, 0x00, # 240 (LE16, hardcoded)
|
|
378
|
+
0x40, 0x01, # 320 (LE16, hardcoded)
|
|
379
|
+
0x02, 0x00, 0x00, 0x00, # sub-flag
|
|
380
|
+
])
|
|
381
|
+
header.extend(struct.pack('<I', len(image_data)))
|
|
382
|
+
raw = bytes(header) + image_data
|
|
369
383
|
padded_len = _ceil_to_512(len(raw))
|
|
370
384
|
return raw.ljust(padded_len, b'\x00')
|
|
371
385
|
|
|
@@ -30,6 +30,7 @@ from trcc.core.models import (
|
|
|
30
30
|
remap_led_colors, # noqa: F401 — re-export
|
|
31
31
|
)
|
|
32
32
|
|
|
33
|
+
from .frame import LedDevice
|
|
33
34
|
from .hid import (
|
|
34
35
|
DEFAULT_TIMEOUT_MS,
|
|
35
36
|
EP_READ_01,
|
|
@@ -297,7 +298,7 @@ class LedPacketBuilder:
|
|
|
297
298
|
# LED HID sender (from UCDevice.cs ThreadSendDeviceData1)
|
|
298
299
|
# =========================================================================
|
|
299
300
|
|
|
300
|
-
class LedHidSender:
|
|
301
|
+
class LedHidSender(LedDevice):
|
|
301
302
|
"""Sends LED packets via UsbTransport with 64-byte report chunking.
|
|
302
303
|
|
|
303
304
|
Matches UCDevice.cs ThreadSendDeviceData1 (lines 983-1026):
|
|
@@ -18,6 +18,7 @@ import time
|
|
|
18
18
|
import zlib
|
|
19
19
|
from typing import Dict, List, Set
|
|
20
20
|
|
|
21
|
+
from trcc.adapters.device.frame import FrameDevice
|
|
21
22
|
from trcc.adapters.infra.data_repository import SysUtils
|
|
22
23
|
from trcc.core.models import HandshakeResult, fbl_to_resolution
|
|
23
24
|
|
|
@@ -53,7 +54,7 @@ _BOOT_ANIM_RESOLUTIONS = {
|
|
|
53
54
|
# =========================================================================
|
|
54
55
|
|
|
55
56
|
|
|
56
|
-
class ScsiDevice:
|
|
57
|
+
class ScsiDevice(FrameDevice):
|
|
57
58
|
"""SCSI LCD device handler wrapping sg_raw subprocess calls."""
|
|
58
59
|
|
|
59
60
|
# Track which devices have been initialized (poll + init sent)
|
|
@@ -257,7 +258,8 @@ class ScsiDevice:
|
|
|
257
258
|
resolution = fbl_to_resolution(fbl)
|
|
258
259
|
self.width, self.height = resolution
|
|
259
260
|
self._initialized = True
|
|
260
|
-
|
|
261
|
+
log.info("SCSI handshake OK: FBL=%d, resolution=%s", fbl, resolution)
|
|
262
|
+
return HandshakeResult(resolution=resolution, model_id=fbl)
|
|
261
263
|
|
|
262
264
|
def send_frame(self, rgb565_data: bytes) -> bool:
|
|
263
265
|
"""Send one RGB565 frame."""
|