trcc-linux 5.0.4__tar.gz → 5.0.6__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.4 → trcc_linux-5.0.6}/PKG-INFO +1 -1
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/pyproject.toml +1 -1
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/__version__.py +9 -1
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/infra/theme_cloud.py +1 -0
- trcc_linux-5.0.6/src/trcc/adapters/render/__init__.py +1 -0
- trcc_linux-5.0.6/src/trcc/adapters/render/pil.py +73 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/core/controllers.py +3 -6
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/core/models.py +1 -1
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/base.py +2 -1
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/qt_app_mvc.py +9 -1
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/services/display.py +2 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/services/overlay.py +132 -46
- trcc_linux-5.0.6/src/trcc/services/renderer.py +68 -0
- trcc_linux-5.0.6/tests/test_cloud_video.py +168 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_device_bulk.py +3 -3
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_theme_downloader.py +2 -2
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/.gitignore +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/LICENSE +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/README.md +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/__init__.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/__main__.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/__init__.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/device/__init__.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/device/bulk.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/device/detector.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/device/factory.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/device/frame.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/device/hid.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/device/lcd.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/device/led.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/device/led_hr10.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/device/led_kvm.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/device/led_segment.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/device/scsi.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/infra/__init__.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/infra/binary_reader.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/infra/data_repository.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/infra/dc_config.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/infra/dc_parser.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/infra/dc_writer.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/infra/debug_report.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/infra/doctor.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/infra/font_resolver.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/infra/media_player.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/infra/theme_downloader.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/system/__init__.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/system/config.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/system/info.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/adapters/system/sensors.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/api.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/fonts/MSYH.TTC +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/fonts/MSYHBD.TTC +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/fonts/README.md +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/240240.gif +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/240320.gif +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/320240.gif +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/320320.gif +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A0/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A0/345/205/263/344/272/216d.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A0/345/205/263/344/272/216e.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A0/345/205/263/344/272/216en.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A0/345/205/263/344/272/216f.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A0/345/205/263/344/272/216p.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A0/345/205/263/344/272/216r.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A0/345/205/263/344/272/216tc.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A0/345/205/263/344/272/216x.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A0/345/220/257/345/212/250/347/225/214/351/235/242.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A0/346/225/260/346/215/256/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207en.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207tc.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A0/347/241/254/344/273/266/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1AK120 Digital.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1AK120 Digitala.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1AK120_Digital.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1AK120_Digitala.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1AS120 VISION.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1AS120 VISIONa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1AS120_VISION.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1AS120_VISIONa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1AX120 DIGITAL.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1AX120 DIGITALa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1AX120_DIGITAL.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1AX120_DIGITALa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1BA120 VISION.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1BA120 VISIONa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1BA120_VISION.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1BA120_VISIONa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1CORE VISION.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1CORE VISIONa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1CORE_VISION.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1CORE_VISIONa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1CZ1.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1CZ1a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1CZTV.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1CZTVa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1ELITE VISION.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1ELITE VISIONa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1ELITE_VISION.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1ELITE_VISIONa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN HORIZON PRO.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN HORIZON PROa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN MAGIC PRO.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN MAGIC PROa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN VISION V2.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN VISION V2a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN WARFRAME PRO.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN WARFRAME PROa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN WARFRAME SE.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN WARFRAME SEa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN WARFRAME.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN WARFRAMEa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN_HORIZON_PROa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN_MAGIC_PROa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN_VISION_V2.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN_VISION_V2a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN_WARFRAME.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PRO.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PROa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SE.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SEa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1FROZEN_WARFRAMEa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1GRAND VISION.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1GRAND VISIONa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1GRAND_VISION.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1GRAND_VISIONa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITAL.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITALa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1HYPER VISION.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1HYPER VISIONa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1HYPER_VISION.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1HYPER_VISIONa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1KVMALEDC6.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1KVMALEDC6a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LC1.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LC1a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LC2.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LC2JD.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LC2JDa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LC2a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LC3.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LC3a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LC5.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LC5a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF10.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF10a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF11.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF11a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF12.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF12a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF13.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF13a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF14.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF14a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF15.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF15a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF16.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF167.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF16a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF17a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF18.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF18a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF19.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF19a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF8.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LF8a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LM16SE.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LM16SEa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LM22.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LM22a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LM24.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LM24a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LM26.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LM26a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LM27.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1LM27a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1Mjolnir VISION PRO.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1Mjolnir VISION PROa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1Mjolnir VISION.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1Mjolnir VISIONa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1Mjolnir_VISION.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1Mjolnir_VISION_PRO.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1Mjolnir_VISION_PROa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1Mjolnir_VISIONa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1PA120 DIGITAL.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1PA120 DIGITALa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1PA120_DIGITAL.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1PA120_DIGITALa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1RK120 DIGITAL.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1RK120 DIGITALa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1RK120_DIGITAL.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1RK120_DIGITALa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1RP130 VISION.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1RP130 VISIONa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1RP130_VISION.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1RP130_VISIONa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1Stream Vision.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1Stream Visiona.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1Stream_Vision.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1Stream_Visiona.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A1/345/205/263/344/272/216a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A2_update_overlay.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A2/347/253/213/345/215/263/346/233/264/346/226/260.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/Acpu.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/Adram.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/Afan.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/Agpu.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/Ahdd.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/Alogout/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/Alogout/351/273/230/350/256/244.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/Anet.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A/344/270/212/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A/344/270/213/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A/345/242/236/345/212/240/346/225/260/347/273/204.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A/346/225/260/346/215/256/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A/346/273/232/345/212/250/346/235/241.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/A/350/207/252/345/256/232/344/271/211.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0CZ1.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0CZ1d.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0CZ1e.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0CZ1en.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0CZ1f.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0CZ1p.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0CZ1r.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0CZ1tc.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0CZ1x.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0KVMA/347/201/257/346/216/247.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LC1.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LC1d.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LC1e.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LC1en.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LC1f.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LC1p.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LC1r.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LC1tc.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LC1x.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LC2.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LC2d.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LC2e.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LC2en.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LC2f.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LC2p.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LC2r.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LC2tc.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LC2x.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF10.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF10d.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF10e.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF10en.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF10f.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF10p.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF10r.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF10tc.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF10x.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF11.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF11d.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF11e.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF11en.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF11f.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF11p.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF11r.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF11tc.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF11x.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF12.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF12d.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF12e.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF12en.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF12f.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF12p.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF12r.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF12tc.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF12x.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF13.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF13d.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF13e.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF13en.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF13f.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF13p.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF13r.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF13tc.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF13x.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF15.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF15d.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF15e.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF15en.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF15f.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF15p.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF15r.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF15tc.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF15x.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF8.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF8d.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF8e.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF8en.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF8f.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF8p.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF8r.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF8tc.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0LF8x.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0rgblf13.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217d.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217e.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217en.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217f.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217p.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217r.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217tc.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217x.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D1/345/244/264/347/233/2241.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D1/345/244/264/347/233/2242.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D1/345/244/264/347/233/2243.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D1/345/244/264/347/233/2244.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D1/345/244/264/347/233/2245.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/2111.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/21110.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/21110a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/21111.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/21111a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/21112.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/21112a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/2111a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/2112.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/2112a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/2113.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/2113a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/2114.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/2114a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/2115.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/2115a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/2116.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/2116a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/2117.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/2117a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/2118.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/2118a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/2119.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D2/347/201/257/345/205/2119a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D3/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D3/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D3/345/274/200/345/205/263b.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D3/346/227/213/351/222/256.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D3/346/227/213/351/222/2560.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D3/346/251/231.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D3/346/271/226.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D3/347/231/275.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D3/347/264/253.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D3/347/272/242.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D3/347/273/277.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D3/350/223/235.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D3/351/273/204.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/345/274/200/346/234/272.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/345/274/200/346/234/272a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/346/214/211/351/222/2561.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/346/214/211/351/222/2561a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/346/214/211/351/222/2562a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/346/214/211/351/222/2563.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/346/214/211/351/222/2563a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/346/214/211/351/222/2564.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/346/214/211/351/222/2564a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/346/250/241/345/274/2171.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/346/250/241/345/274/2171a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/346/250/241/345/274/2172.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/346/250/241/345/274/2172a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/346/250/241/345/274/2173.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/346/250/241/345/274/2173a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/346/250/241/345/274/2174.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/346/250/241/345/274/2174a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/346/250/241/345/274/2175.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/346/250/241/345/274/2175a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/346/250/241/345/274/2176.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D4/346/250/241/345/274/2176a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/DAK120_DIGITAL.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/DAX120_DIGITAL.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/DCZ1.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/DFROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/DFROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/DLC1.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/DLC2.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/DLF10.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/DLF11.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/DLF12.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/DLF13.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/DLF15.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/DLF8.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/DPA120 DIGITAL.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/DPA120_DIGITAL.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/Dch1.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/Dch2.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/Dch3.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/Dch4.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/Dchcz1.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/2062.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/225.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/2252.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/256.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/2562.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultra.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultraa.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/206/205/345/256/271d.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/206/205/345/256/271e.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/206/205/345/256/271en.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/206/205/345/256/271f.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/206/205/345/256/271p.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/206/205/345/256/271r.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/206/205/345/256/271tc.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/206/205/345/256/271x.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/212/250/347/224/273/350/201/224/345/212/250.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277d.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277e.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277en.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277f.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277p.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277r.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277tc.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277x.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277d.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277e.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277en.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277f.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277p.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277r.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277tc.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277x.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xy.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyd.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xye.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyen.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyf.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyp.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyr.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xytc.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyx.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yx.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxd.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxe.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxen.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxf.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxp.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxr.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxtc.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxx.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250d.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250e.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250en.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250f.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250p.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250r.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250tc.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250x.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/346/250/241/345/235/227/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272d.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272e.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272f.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272p.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272r.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272x.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227en.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227tc.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2501.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2502.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2503.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0CZTV.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0CZTVd.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0CZTVe.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0CZTVen.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0CZTVf.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0CZTVp.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0CZTVr.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0CZTVtc.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0CZTVx.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0M1.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0M2.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0M3.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0M4.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0M5.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0M5a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0M6.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230d.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230e.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230en.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230f.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230p.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230r.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230tc.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230x.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/346/222/255/346/224/276.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/346/232/202/345/201/234.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230d.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230e.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230en.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230f.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230p.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230r.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230tc.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230x.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257d.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257e.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257f.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257p.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257r.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257x.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/351/242/204/350/247/210.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/351/242/204/350/247/210a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271280X480.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X462.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227360X800.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227462X1920.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X1280.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X800.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X854.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227540X960.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X360.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X480.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227854X480.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227960X540.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P12H.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P240240.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P240320.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P24H.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P320240.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P320320.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/PDM.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/PDMY.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/PL0.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/PL1.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/PL2.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/PL3.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/PM1.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/PM1a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/PM2.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/PM2a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/PM3.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/PM3a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/PM4.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/PM4a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/PM5.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/PM5a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/PM6.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/PM6a.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/PMD.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/PYMD.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/344/277/235/345/255/230/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/207/217.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227b.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/212/240.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/217/226/350/211/262.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/220/270/347/256/241.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/233/276/347/211/207.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/234/206/345/275/242/345/205/263/351/227/255.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/234/206/345/275/242/347/241/256/345/256/232.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/244/232/351/200/211.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/244/232/351/200/211a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/256/275/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/257/274/345/205/245.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/257/274/345/207/272.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/345/270/256/345/212/251.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/346/225/260/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/346/225/260/346/215/256.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/346/226/207/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/346/227/213/350/275/254.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206A.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/205/263.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/274/200.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233180.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233270.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/23390.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a180.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a270.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a90.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b180.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b270.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b90.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206A.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/216/257H1.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/216/257H2.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/216/257H3.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/216/257H4.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/216/257H5.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/216/257H6.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/275/221/347/273/234.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/347/275/221/347/273/234/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/350/243/201/345/207/217.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/350/247/206/351/242/221.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/350/275/256/346/222/2551.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/350/275/256/346/222/2552.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/350/275/256/346/222/2553.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/350/275/256/346/222/2554.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/350/275/256/346/222/2555.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/350/275/256/346/222/2556.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/350/275/256/346/222/255/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/350/275/275/345/205/245/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/350/277/233/345/272/246/346/235/241.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206M.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206Ma.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210116X480.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210180X400.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210180X480.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210240X240.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210240X320.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210240X400.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210240X427.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210270X480.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210320X240.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320/345/234/206.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210360360/345/234/206.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210400X180.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210400X240.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210427X240.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210480X116.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210480X180.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210480X270.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480/345/234/206.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/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.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/P/351/253/230/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/p0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/p/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/ucBoFangQiKongZhi1.BackgroundImage.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/ucBoFangQiKongZhi1_BackgroundImage.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/ucVideoCut1.BackgroundImage.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/ucVideoCut1_BackgroundImage.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/ucXiTongXianShi1.BackgroundImage.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/ucXiTongXianShiAdd1.BackgroundImage.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/ucXiTongXianShiColor1.BackgroundImage.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/gui/ucXiTongXianShiTable1.BackgroundImage.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/icons/app.ico +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/icons/trcc.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/icons/trcc_128x128.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/icons/trcc_16x16.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/icons/trcc_24x24.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/icons/trcc_256x256.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/icons/trcc_32x32.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/icons/trcc_48x48.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/assets/icons/trcc_64x64.png +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/cli.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/conf.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/core/__init__.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/data/trcc_usb.te +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/install/__init__.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/install/gui.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/__init__.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/assets.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/constants.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/eyedropper.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/pipewire_capture.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/screen_capture.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/uc_about.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/uc_activity_sidebar.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/uc_color_wheel.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/uc_device.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/uc_image_cut.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/uc_info_module.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/uc_led_control.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/uc_preview.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/uc_screen_led.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/uc_sensor_picker.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/uc_seven_segment.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/uc_system_info.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/uc_theme_local.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/uc_theme_mask.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/uc_theme_setting.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/uc_theme_web.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/qt_components/uc_video_cut.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/services/__init__.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/services/device.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/services/image.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/services/led.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/services/media.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/services/system.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/src/trcc/services/theme.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/README.md +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/__init__.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/hid_testing/__init__.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/hid_testing/conftest.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/hid_testing/test_device_factory.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/hid_testing/test_device_hid.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/hid_testing/test_device_led.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/hid_testing/test_led_controller.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/run_tests.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_api.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_architecture.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_ax120_display.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_base_panel.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_cli.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_controllers.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_data_repository.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_dc_parser.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_dc_writer.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_debug_report.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_device_detector.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_device_implementations.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_device_lcd.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_device_led_kvm.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_device_scsi.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_doctor.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_frame_device.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_hr10_display.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_integration.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_media_player.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_models.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_overlay_renderer.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_qt_base.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_qt_constants.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_qt_widgets.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_services.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_system_config.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_system_info.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_system_sensors.py +0 -0
- {trcc_linux-5.0.4 → trcc_linux-5.0.6}/tests/test_theme_cloud.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.6
|
|
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.6"
|
|
4
4
|
__version_info__ = tuple(int(x) for x in __version__.split("."))
|
|
5
5
|
|
|
6
6
|
# Version history:
|
|
@@ -207,3 +207,11 @@ __version_info__ = tuple(int(x) for x in __version__.split("."))
|
|
|
207
207
|
# mode flags matching C# FormCZTV.ImageTo565() mode 3. Without the
|
|
208
208
|
# magic, firmware rejects frames — causing USB disconnect (#16) or
|
|
209
209
|
# stuck-on-logo (#28). 2353 tests.
|
|
210
|
+
# 5.0.5 - Fix FBL 50 resolution: was (240, 320) portrait, should be
|
|
211
|
+
# (320, 240) landscape — C# default directionB=0 creates Bitmap(320,240).
|
|
212
|
+
# Fixes black bars on Mjolnir Vision 360 (#22). Renderer ABC refactor:
|
|
213
|
+
# Strategy pattern for overlay compositing (PilRenderer adapter).
|
|
214
|
+
# Overlay caching: text+mask layer cached, re-rendered only on input
|
|
215
|
+
# change (~1/sec). Fix RGBA transparency bug in overlay layer.
|
|
216
|
+
# Cloud theme fix: QTimer bound method wrapper, slideshow timer guards.
|
|
217
|
+
# 2395 tests.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Render adapters — concrete Renderer implementations."""
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
"""PIL/Pillow rendering backend — CPU-only, headless.
|
|
2
|
+
|
|
3
|
+
Extracts the PIL calls previously inline in OverlayService into the
|
|
4
|
+
Renderer ABC interface. Behaviour is identical to the original code.
|
|
5
|
+
"""
|
|
6
|
+
from __future__ import annotations
|
|
7
|
+
|
|
8
|
+
from typing import Any
|
|
9
|
+
|
|
10
|
+
from PIL import Image, ImageDraw
|
|
11
|
+
|
|
12
|
+
from ...services.renderer import Renderer
|
|
13
|
+
from ..infra.font_resolver import FontResolver
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class PilRenderer(Renderer):
|
|
17
|
+
"""CPU-only renderer using PIL/Pillow.
|
|
18
|
+
|
|
19
|
+
Used by CLI, API, and as default fallback when no Qt is available.
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
def __init__(self) -> None:
|
|
23
|
+
self._fonts = FontResolver()
|
|
24
|
+
|
|
25
|
+
# ── Surface lifecycle ─────────────────────────────────────────
|
|
26
|
+
|
|
27
|
+
def create_surface(self, width: int, height: int,
|
|
28
|
+
color: tuple[int, ...] | None = None) -> Any:
|
|
29
|
+
if color:
|
|
30
|
+
return Image.new('RGB', (width, height), color)
|
|
31
|
+
return Image.new('RGBA', (width, height), (0, 0, 0, 0))
|
|
32
|
+
|
|
33
|
+
def copy_surface(self, surface: Any) -> Any:
|
|
34
|
+
return surface.copy()
|
|
35
|
+
|
|
36
|
+
def convert_to_rgba(self, surface: Any) -> Any:
|
|
37
|
+
return surface.convert('RGBA') if surface.mode != 'RGBA' else surface
|
|
38
|
+
|
|
39
|
+
def convert_to_rgb(self, surface: Any) -> Any:
|
|
40
|
+
return surface.convert('RGB') if surface.mode != 'RGB' else surface
|
|
41
|
+
|
|
42
|
+
# ── Drawing ───────────────────────────────────────────────────
|
|
43
|
+
|
|
44
|
+
def composite(self, base: Any, overlay: Any,
|
|
45
|
+
position: tuple[int, int],
|
|
46
|
+
mask: Any | None = None) -> Any:
|
|
47
|
+
base.paste(overlay, position, mask or overlay)
|
|
48
|
+
return base
|
|
49
|
+
|
|
50
|
+
def resize(self, surface: Any, width: int, height: int) -> Any:
|
|
51
|
+
return surface.resize((width, height), Image.Resampling.LANCZOS)
|
|
52
|
+
|
|
53
|
+
def draw_text(self, surface: Any, x: int, y: int, text: str,
|
|
54
|
+
color: str, font: Any, anchor: str = 'mm') -> None:
|
|
55
|
+
draw = ImageDraw.Draw(surface)
|
|
56
|
+
draw.text((x, y), text, fill=color, font=font, anchor=anchor)
|
|
57
|
+
|
|
58
|
+
# ── Fonts ─────────────────────────────────────────────────────
|
|
59
|
+
|
|
60
|
+
def get_font(self, size: int, bold: bool = False,
|
|
61
|
+
font_name: str | None = None) -> Any:
|
|
62
|
+
return self._fonts.get(size, bold, font_name)
|
|
63
|
+
|
|
64
|
+
def clear_font_cache(self) -> None:
|
|
65
|
+
self._fonts.clear_cache()
|
|
66
|
+
|
|
67
|
+
# ── PIL boundary (identity — already PIL) ─────────────────────
|
|
68
|
+
|
|
69
|
+
def to_pil(self, surface: Any) -> Any:
|
|
70
|
+
return surface
|
|
71
|
+
|
|
72
|
+
def from_pil(self, image: Any) -> Any:
|
|
73
|
+
return image
|
|
@@ -529,10 +529,6 @@ class LCDDeviceController:
|
|
|
529
529
|
|
|
530
530
|
self._fire_preview(result['preview'])
|
|
531
531
|
|
|
532
|
-
if result.get('progress'):
|
|
533
|
-
# Progress is forwarded by VideoController callbacks
|
|
534
|
-
pass
|
|
535
|
-
|
|
536
532
|
send_img = result.get('send_image')
|
|
537
533
|
if send_img:
|
|
538
534
|
self.devices.send_pil_async(
|
|
@@ -571,8 +567,9 @@ class LCDDeviceController:
|
|
|
571
567
|
self._display.current_image = frame
|
|
572
568
|
|
|
573
569
|
def _on_device_selected(self, device: DeviceInfo):
|
|
574
|
-
|
|
575
|
-
|
|
570
|
+
w, h = device.resolution
|
|
571
|
+
if (w, h) != (0, 0) and (w, h) != (self.lcd_width, self.lcd_height):
|
|
572
|
+
self.set_resolution(w, h)
|
|
576
573
|
self._fire_status(f"Device: {device.path}")
|
|
577
574
|
|
|
578
575
|
# ── Private helpers (fire callbacks, send to LCD) ─────────────────
|
|
@@ -203,7 +203,8 @@ class ImageLabel(QLabel):
|
|
|
203
203
|
(self._width, self._height), resampling
|
|
204
204
|
)
|
|
205
205
|
|
|
206
|
-
|
|
206
|
+
pixmap = pil_to_pixmap(pil_image)
|
|
207
|
+
self.setPixmap(pixmap)
|
|
207
208
|
|
|
208
209
|
def mousePressEvent(self, event):
|
|
209
210
|
"""Handle mouse click — start drag."""
|
|
@@ -500,7 +500,9 @@ class TRCCMainWindowMVC(QMainWindow):
|
|
|
500
500
|
self.controller = create_controller(self._data_dir)
|
|
501
501
|
|
|
502
502
|
# Timers (view owns timers, controller owns logic)
|
|
503
|
-
|
|
503
|
+
def _video_tick_wrapper():
|
|
504
|
+
self.controller.video_tick()
|
|
505
|
+
self._animation_timer = self._make_timer(_video_tick_wrapper)
|
|
504
506
|
self._metrics_timer = self._make_timer(self._on_metrics_tick)
|
|
505
507
|
self._device_timer = self._make_timer(self._on_device_poll)
|
|
506
508
|
self._flash_timer = self._make_timer(self._on_flash_timeout, single_shot=True)
|
|
@@ -1482,6 +1484,8 @@ class TRCCMainWindowMVC(QMainWindow):
|
|
|
1482
1484
|
Cloud videos are backgrounds — overlay (mask + metrics) persists.
|
|
1483
1485
|
Don't stop metrics; they keep rendering on top of video frames.
|
|
1484
1486
|
"""
|
|
1487
|
+
# Stop slideshow — cloud video must not be overwritten by carousel
|
|
1488
|
+
self._slideshow_timer.stop()
|
|
1485
1489
|
# Reset background/screencast modes (cloud theme overrides)
|
|
1486
1490
|
self._background_active = False
|
|
1487
1491
|
self._screencast.stop()
|
|
@@ -1986,6 +1990,10 @@ class TRCCMainWindowMVC(QMainWindow):
|
|
|
1986
1990
|
|
|
1987
1991
|
def _on_slideshow_tick(self):
|
|
1988
1992
|
"""Auto-rotate to next theme in slideshow (Windows Timer_event lunbo)."""
|
|
1993
|
+
# Don't override a playing cloud video with slideshow themes
|
|
1994
|
+
if self.controller.is_video_playing():
|
|
1995
|
+
return
|
|
1996
|
+
|
|
1989
1997
|
themes = self.uc_theme_local.get_slideshow_themes()
|
|
1990
1998
|
if not themes:
|
|
1991
1999
|
self._slideshow_timer.stop()
|
|
@@ -399,6 +399,8 @@ class DisplayService:
|
|
|
399
399
|
|
|
400
400
|
def _apply_adjustments(self, image: Any) -> Any:
|
|
401
401
|
"""Apply brightness, rotation, and split overlay to image."""
|
|
402
|
+
if self.brightness >= 100 and self.rotation == 0 and not self.split_mode:
|
|
403
|
+
return image
|
|
402
404
|
image = ImageService.apply_brightness(image, self.brightness)
|
|
403
405
|
image = ImageService.apply_rotation(image, self.rotation)
|
|
404
406
|
image = self._apply_split_overlay(image)
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"""Overlay rendering service — config, mask, metrics → composited image.
|
|
2
2
|
|
|
3
|
-
Pure Python
|
|
3
|
+
Pure Python, no Qt dependencies.
|
|
4
4
|
Orchestrates background, mask compositing, text overlays, and dynamic scaling.
|
|
5
|
-
|
|
5
|
+
Rendering delegated to Renderer ABC (Strategy pattern) — PIL or QPainter.
|
|
6
6
|
"""
|
|
7
7
|
from __future__ import annotations
|
|
8
8
|
|
|
@@ -10,10 +10,8 @@ import logging
|
|
|
10
10
|
from pathlib import Path
|
|
11
11
|
from typing import Any
|
|
12
12
|
|
|
13
|
-
from PIL import Image, ImageDraw
|
|
14
|
-
|
|
15
|
-
from ..adapters.infra.font_resolver import FontResolver
|
|
16
13
|
from ..core.models import HardwareMetrics
|
|
14
|
+
from .renderer import Renderer
|
|
17
15
|
from .system import SystemService
|
|
18
16
|
|
|
19
17
|
log = logging.getLogger(__name__)
|
|
@@ -29,12 +27,20 @@ class OverlayService:
|
|
|
29
27
|
- Time/date with multiple format options
|
|
30
28
|
- Hardware metrics (CPU, GPU, etc.)
|
|
31
29
|
- Dynamic font/coordinate scaling across resolutions
|
|
30
|
+
- Overlay caching: re-render text+mask only when inputs change
|
|
32
31
|
"""
|
|
33
32
|
|
|
34
33
|
# Base resolution for scaling (most common device)
|
|
35
34
|
BASE_RESOLUTION = 320
|
|
36
35
|
|
|
37
|
-
def __init__(self, width: int = 320, height: int = 320
|
|
36
|
+
def __init__(self, width: int = 320, height: int = 320,
|
|
37
|
+
renderer: Renderer | None = None) -> None:
|
|
38
|
+
# Rendering backend (Strategy pattern)
|
|
39
|
+
if renderer is None:
|
|
40
|
+
from ..adapters.render.pil import PilRenderer
|
|
41
|
+
renderer = PilRenderer()
|
|
42
|
+
self._renderer: Renderer = renderer
|
|
43
|
+
|
|
38
44
|
# Rendering state (public — tests + callers access these directly)
|
|
39
45
|
self.width = width
|
|
40
46
|
self.height = height
|
|
@@ -43,7 +49,6 @@ class OverlayService:
|
|
|
43
49
|
self.theme_mask: Any = None
|
|
44
50
|
self.theme_mask_position: tuple[int, int] = (0, 0)
|
|
45
51
|
self.theme_mask_visible: bool = True # Windows: isDrawMbImage
|
|
46
|
-
self._fonts = FontResolver()
|
|
47
52
|
self.flash_skip_index: int = -1 # Windows shanPingCount
|
|
48
53
|
|
|
49
54
|
# Format settings (matching Windows TRCC UCXiTongXianShiSub.cs)
|
|
@@ -63,14 +68,22 @@ class OverlayService:
|
|
|
63
68
|
self._metrics: HardwareMetrics = HardwareMetrics()
|
|
64
69
|
self._dc_data: dict[str, Any] | None = None
|
|
65
70
|
|
|
71
|
+
# Overlay cache: transparent layer with text + mask, re-rendered
|
|
72
|
+
# only when inputs change (~1/sec). Per-frame cost drops from
|
|
73
|
+
# full text render to single alpha composite.
|
|
74
|
+
self._overlay_cache: Any | None = None
|
|
75
|
+
self._cache_key: tuple | None = None
|
|
76
|
+
self._overlay_has_content: bool = False # True if mask/text was drawn
|
|
77
|
+
|
|
66
78
|
# ── Resolution ───────────────────────────────────────────────────
|
|
67
79
|
|
|
68
80
|
def set_resolution(self, w: int, h: int) -> None:
|
|
69
81
|
"""Update LCD resolution. Clears font cache and background."""
|
|
70
82
|
self.width = w
|
|
71
83
|
self.height = h
|
|
72
|
-
self.
|
|
84
|
+
self._renderer.clear_font_cache()
|
|
73
85
|
self.background = None
|
|
86
|
+
self._invalidate_cache()
|
|
74
87
|
|
|
75
88
|
# ── Enable / disable ─────────────────────────────────────────────
|
|
76
89
|
|
|
@@ -101,8 +114,8 @@ class OverlayService:
|
|
|
101
114
|
if image.size == (self.width, self.height):
|
|
102
115
|
self.background = image
|
|
103
116
|
else:
|
|
104
|
-
self.background =
|
|
105
|
-
(self.width, self.height
|
|
117
|
+
self.background = self._renderer.resize(
|
|
118
|
+
self._renderer.copy_surface(image), self.width, self.height
|
|
106
119
|
)
|
|
107
120
|
|
|
108
121
|
# ── Config ───────────────────────────────────────────────────────
|
|
@@ -110,6 +123,7 @@ class OverlayService:
|
|
|
110
123
|
def set_config(self, config: dict) -> None:
|
|
111
124
|
"""Set overlay config dict directly."""
|
|
112
125
|
self.config = config
|
|
126
|
+
self._invalidate_cache()
|
|
113
127
|
|
|
114
128
|
def set_config_resolution(self, w: int, h: int) -> None:
|
|
115
129
|
"""Set the resolution the current config was designed for.
|
|
@@ -118,11 +132,13 @@ class OverlayService:
|
|
|
118
132
|
designed for one resolution on a device with a different resolution.
|
|
119
133
|
"""
|
|
120
134
|
self._config_resolution = (w, h)
|
|
135
|
+
self._invalidate_cache()
|
|
121
136
|
|
|
122
137
|
def set_scale_enabled(self, enabled: bool) -> None:
|
|
123
138
|
"""Enable or disable dynamic font/coordinate scaling."""
|
|
124
139
|
self._scale_enabled = enabled
|
|
125
|
-
self.
|
|
140
|
+
self._renderer.clear_font_cache()
|
|
141
|
+
self._invalidate_cache()
|
|
126
142
|
|
|
127
143
|
def _get_scale_factor(self) -> float:
|
|
128
144
|
"""Calculate scale factor from config resolution to display resolution.
|
|
@@ -200,6 +216,7 @@ class OverlayService:
|
|
|
200
216
|
if image is None:
|
|
201
217
|
self.theme_mask = None
|
|
202
218
|
self.theme_mask_position = (0, 0)
|
|
219
|
+
self._invalidate_cache()
|
|
203
220
|
return
|
|
204
221
|
|
|
205
222
|
if image.mode != 'RGBA':
|
|
@@ -214,6 +231,8 @@ class OverlayService:
|
|
|
214
231
|
else:
|
|
215
232
|
self.theme_mask_position = (0, 0)
|
|
216
233
|
|
|
234
|
+
self._invalidate_cache()
|
|
235
|
+
|
|
217
236
|
def get_mask(self) -> tuple[Any, tuple[int, int] | None]:
|
|
218
237
|
"""Get current theme mask image and position."""
|
|
219
238
|
return self.theme_mask, self.theme_mask_position
|
|
@@ -221,12 +240,14 @@ class OverlayService:
|
|
|
221
240
|
def set_mask_visible(self, visible: bool) -> None:
|
|
222
241
|
"""Toggle mask visibility without destroying it (Windows SetDrawMengBan)."""
|
|
223
242
|
self.theme_mask_visible = visible
|
|
243
|
+
self._invalidate_cache()
|
|
224
244
|
|
|
225
245
|
# ── Temp unit ────────────────────────────────────────────────────
|
|
226
246
|
|
|
227
247
|
def set_temp_unit(self, unit: int) -> None:
|
|
228
248
|
"""Set temperature display unit (0=Celsius, 1=Fahrenheit)."""
|
|
229
249
|
self.temp_unit = unit
|
|
250
|
+
self._invalidate_cache()
|
|
230
251
|
|
|
231
252
|
# ── Metrics ──────────────────────────────────────────────────────
|
|
232
253
|
|
|
@@ -234,25 +255,62 @@ class OverlayService:
|
|
|
234
255
|
"""Update system metrics for hardware overlay elements."""
|
|
235
256
|
self._metrics = metrics
|
|
236
257
|
|
|
237
|
-
# ── Font resolution (delegated to
|
|
258
|
+
# ── Font resolution (delegated to Renderer) ──────────────────────
|
|
238
259
|
|
|
239
260
|
@property
|
|
240
261
|
def font_cache(self) -> dict:
|
|
241
|
-
"""Font cache (delegates to
|
|
242
|
-
|
|
262
|
+
"""Font cache (delegates to Renderer)."""
|
|
263
|
+
fonts = getattr(self._renderer, '_fonts', None)
|
|
264
|
+
return fonts.cache if fonts else {}
|
|
243
265
|
|
|
244
266
|
@font_cache.setter
|
|
245
267
|
def font_cache(self, value: dict) -> None:
|
|
246
|
-
self._fonts
|
|
268
|
+
fonts = getattr(self._renderer, '_fonts', None)
|
|
269
|
+
if fonts:
|
|
270
|
+
fonts.cache = value
|
|
247
271
|
|
|
248
272
|
def get_font(self, size: int, bold: bool = False,
|
|
249
273
|
font_name: str | None = None) -> Any:
|
|
250
274
|
"""Get font by name with fallback chain."""
|
|
251
|
-
return self.
|
|
275
|
+
return self._renderer.get_font(size, bold, font_name)
|
|
252
276
|
|
|
253
277
|
def _resolve_font_path(self, font_name: str, bold: bool = False) -> str | None:
|
|
254
278
|
"""Resolve font family name to file path."""
|
|
255
|
-
|
|
279
|
+
fonts = getattr(self._renderer, '_fonts', None)
|
|
280
|
+
return fonts.resolve_path(font_name, bold) if fonts else None
|
|
281
|
+
|
|
282
|
+
# ── Overlay cache ────────────────────────────────────────────────
|
|
283
|
+
|
|
284
|
+
def _invalidate_cache(self) -> None:
|
|
285
|
+
"""Force overlay re-render on next frame."""
|
|
286
|
+
self._overlay_cache = None
|
|
287
|
+
self._cache_key = None
|
|
288
|
+
|
|
289
|
+
def _build_cache_key(self, metrics: HardwareMetrics) -> tuple:
|
|
290
|
+
"""Build cache key from all inputs that affect overlay appearance."""
|
|
291
|
+
return (
|
|
292
|
+
id(self.config),
|
|
293
|
+
id(self.theme_mask),
|
|
294
|
+
self.theme_mask_visible,
|
|
295
|
+
self.theme_mask_position,
|
|
296
|
+
self.time_format,
|
|
297
|
+
self.date_format,
|
|
298
|
+
self.temp_unit,
|
|
299
|
+
self.flash_skip_index,
|
|
300
|
+
self._get_scale_factor(),
|
|
301
|
+
self._metrics_hash(metrics),
|
|
302
|
+
)
|
|
303
|
+
|
|
304
|
+
def _metrics_hash(self, metrics: HardwareMetrics) -> int:
|
|
305
|
+
"""Hash only the metric values referenced by current config."""
|
|
306
|
+
if not self.config or not isinstance(self.config, dict):
|
|
307
|
+
return 0
|
|
308
|
+
vals: list[Any] = []
|
|
309
|
+
for cfg in self.config.values():
|
|
310
|
+
if isinstance(cfg, dict) and 'metric' in cfg:
|
|
311
|
+
val = getattr(metrics, cfg['metric'], None)
|
|
312
|
+
vals.append(val)
|
|
313
|
+
return hash(tuple(vals))
|
|
256
314
|
|
|
257
315
|
# ── Render ───────────────────────────────────────────────────────
|
|
258
316
|
|
|
@@ -276,12 +334,14 @@ class OverlayService:
|
|
|
276
334
|
return self._render_overlay(m)
|
|
277
335
|
|
|
278
336
|
def _render_overlay(self, metrics: HardwareMetrics | None = None) -> Any:
|
|
279
|
-
"""
|
|
337
|
+
"""Compositing pipeline — background + cached overlay layer.
|
|
280
338
|
|
|
281
|
-
|
|
282
|
-
|
|
339
|
+
The overlay layer (mask + text) is cached and only re-rendered when
|
|
340
|
+
inputs change (~1/sec for metrics). Per-frame cost is a single
|
|
341
|
+
alpha composite instead of full text rendering.
|
|
283
342
|
"""
|
|
284
343
|
metrics = metrics or HardwareMetrics()
|
|
344
|
+
r = self._renderer
|
|
285
345
|
|
|
286
346
|
# Fast path: no overlays, just return background as-is
|
|
287
347
|
has_overlays = (
|
|
@@ -291,43 +351,67 @@ class OverlayService:
|
|
|
291
351
|
if not has_overlays and self.background:
|
|
292
352
|
return self.background
|
|
293
353
|
|
|
294
|
-
#
|
|
354
|
+
# Check cache
|
|
355
|
+
cache_key = self._build_cache_key(metrics)
|
|
356
|
+
if cache_key != self._cache_key or self._overlay_cache is None:
|
|
357
|
+
# Cache miss — render overlay layer to transparent surface
|
|
358
|
+
self._overlay_cache = self._render_overlay_layer(metrics, r)
|
|
359
|
+
self._cache_key = cache_key
|
|
360
|
+
|
|
361
|
+
# Fast path: overlay layer has no visible content (no mask, no text)
|
|
362
|
+
if not self._overlay_has_content and self.background:
|
|
363
|
+
return self.background
|
|
364
|
+
|
|
365
|
+
return self._composite_onto_background(r)
|
|
366
|
+
|
|
367
|
+
def _composite_onto_background(self, r: Renderer) -> Any:
|
|
368
|
+
"""Composite cached overlay layer onto current background.
|
|
369
|
+
|
|
370
|
+
Overlay cache is RGBA; background is RGB. PIL paste() with alpha
|
|
371
|
+
mask works directly on RGB — no RGBA round-trip needed.
|
|
372
|
+
"""
|
|
295
373
|
if self.background is None:
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
374
|
+
base = r.create_surface(self.width, self.height)
|
|
375
|
+
r.composite(base, self._overlay_cache, (0, 0))
|
|
376
|
+
return r.to_pil(r.convert_to_rgb(base))
|
|
377
|
+
|
|
378
|
+
base = r.copy_surface(r.from_pil(self.background))
|
|
379
|
+
r.composite(base, self._overlay_cache, (0, 0))
|
|
380
|
+
return r.to_pil(base)
|
|
301
381
|
|
|
302
|
-
|
|
382
|
+
def _render_overlay_layer(self, metrics: HardwareMetrics,
|
|
383
|
+
r: Renderer) -> Any:
|
|
384
|
+
"""Render mask + text to a transparent overlay surface.
|
|
385
|
+
|
|
386
|
+
This is the expensive operation — called only on cache miss.
|
|
387
|
+
Sets _overlay_has_content so callers can skip composite when empty.
|
|
388
|
+
"""
|
|
389
|
+
self._overlay_has_content = False
|
|
390
|
+
overlay = r.create_surface(self.width, self.height)
|
|
391
|
+
|
|
392
|
+
# Apply theme mask
|
|
303
393
|
if self.theme_mask and self.theme_mask_visible:
|
|
304
394
|
scale = self._get_scale_factor()
|
|
395
|
+
mask_pil = self.theme_mask
|
|
396
|
+
self._overlay_has_content = True
|
|
305
397
|
if abs(scale - 1.0) > 0.01:
|
|
306
|
-
mask_w = int(
|
|
307
|
-
mask_h = int(
|
|
308
|
-
|
|
309
|
-
(mask_w, mask_h), Image.Resampling.LANCZOS)
|
|
398
|
+
mask_w = int(mask_pil.width * scale)
|
|
399
|
+
mask_h = int(mask_pil.height * scale)
|
|
400
|
+
mask_surface = r.resize(r.from_pil(mask_pil), mask_w, mask_h)
|
|
310
401
|
pos_x = int(self.theme_mask_position[0] * scale)
|
|
311
402
|
pos_y = int(self.theme_mask_position[1] * scale)
|
|
312
|
-
|
|
403
|
+
overlay = r.composite(overlay, mask_surface, (pos_x, pos_y))
|
|
313
404
|
else:
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
# Convert to RGB before drawing text (matches Windows GenerateImage).
|
|
317
|
-
# Drawing on RGBA causes PIL to replace alpha at anti-aliased edges;
|
|
318
|
-
# compositing RGBA onto black creates dark fringes.
|
|
319
|
-
if img.mode == 'RGBA':
|
|
320
|
-
img = img.convert('RGB')
|
|
405
|
+
overlay = r.composite(
|
|
406
|
+
overlay, r.from_pil(mask_pil), self.theme_mask_position)
|
|
321
407
|
|
|
322
408
|
# Draw text overlays
|
|
323
|
-
draw = ImageDraw.Draw(img)
|
|
324
|
-
|
|
325
409
|
if not self.config or not isinstance(self.config, dict):
|
|
326
|
-
return
|
|
410
|
+
return overlay
|
|
327
411
|
|
|
328
412
|
scale = self._get_scale_factor()
|
|
329
413
|
|
|
330
|
-
for elem_idx, (
|
|
414
|
+
for elem_idx, (_key, cfg) in enumerate(self.config.items()):
|
|
331
415
|
if not isinstance(cfg, dict) or not cfg.get('enabled', True):
|
|
332
416
|
continue
|
|
333
417
|
if elem_idx == self.flash_skip_index:
|
|
@@ -362,10 +446,11 @@ class OverlayService:
|
|
|
362
446
|
|
|
363
447
|
bold = font_cfg.get('style') == 'bold' if isinstance(font_cfg, dict) else False
|
|
364
448
|
font_name = font_cfg.get('name') if isinstance(font_cfg, dict) else None
|
|
365
|
-
font =
|
|
366
|
-
|
|
449
|
+
font = r.get_font(font_size, bold=bold, font_name=font_name)
|
|
450
|
+
r.draw_text(overlay, x, y, text, color, font, anchor='mm')
|
|
451
|
+
self._overlay_has_content = True
|
|
367
452
|
|
|
368
|
-
return
|
|
453
|
+
return overlay
|
|
369
454
|
|
|
370
455
|
# ── DC data (lossless round-trip) ────────────────────────────────
|
|
371
456
|
|
|
@@ -388,3 +473,4 @@ class OverlayService:
|
|
|
388
473
|
self.theme_mask = None
|
|
389
474
|
self.theme_mask_position = (0, 0)
|
|
390
475
|
self.theme_mask_visible = True
|
|
476
|
+
self._invalidate_cache()
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"""Renderer port — ABC for overlay compositing backends.
|
|
2
|
+
|
|
3
|
+
Strategy pattern: swap PIL (CPU) vs QPainter (GPU) without changing
|
|
4
|
+
OverlayService logic. Services stay pure Python — concrete renderers
|
|
5
|
+
live in adapters/.
|
|
6
|
+
"""
|
|
7
|
+
from __future__ import annotations
|
|
8
|
+
|
|
9
|
+
from abc import ABC, abstractmethod
|
|
10
|
+
from typing import Any
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class Renderer(ABC):
|
|
14
|
+
"""Port: rendering backend for overlay compositing.
|
|
15
|
+
|
|
16
|
+
Concrete implementations:
|
|
17
|
+
- PilRenderer (adapters/render/pil.py) — PIL/Pillow, CPU-only
|
|
18
|
+
- QPainterRenderer (adapters/render/qt.py) — PySide6 QPainter, GPU-capable
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
@abstractmethod
|
|
22
|
+
def create_surface(self, width: int, height: int,
|
|
23
|
+
color: tuple[int, ...] | None = None) -> Any:
|
|
24
|
+
"""Create a new rendering surface (blank transparent or solid color)."""
|
|
25
|
+
|
|
26
|
+
@abstractmethod
|
|
27
|
+
def copy_surface(self, surface: Any) -> Any:
|
|
28
|
+
"""Defensive copy of a surface."""
|
|
29
|
+
|
|
30
|
+
@abstractmethod
|
|
31
|
+
def convert_to_rgba(self, surface: Any) -> Any:
|
|
32
|
+
"""Ensure surface has alpha channel."""
|
|
33
|
+
|
|
34
|
+
@abstractmethod
|
|
35
|
+
def convert_to_rgb(self, surface: Any) -> Any:
|
|
36
|
+
"""Ensure surface is RGB (strip alpha)."""
|
|
37
|
+
|
|
38
|
+
@abstractmethod
|
|
39
|
+
def composite(self, base: Any, overlay: Any,
|
|
40
|
+
position: tuple[int, int],
|
|
41
|
+
mask: Any | None = None) -> Any:
|
|
42
|
+
"""Alpha-composite *overlay* onto *base* at *position*."""
|
|
43
|
+
|
|
44
|
+
@abstractmethod
|
|
45
|
+
def resize(self, surface: Any, width: int, height: int) -> Any:
|
|
46
|
+
"""Resize surface with high-quality resampling."""
|
|
47
|
+
|
|
48
|
+
@abstractmethod
|
|
49
|
+
def draw_text(self, surface: Any, x: int, y: int, text: str,
|
|
50
|
+
color: str, font: Any, anchor: str = 'mm') -> None:
|
|
51
|
+
"""Draw text onto surface at (x, y)."""
|
|
52
|
+
|
|
53
|
+
@abstractmethod
|
|
54
|
+
def get_font(self, size: int, bold: bool = False,
|
|
55
|
+
font_name: str | None = None) -> Any:
|
|
56
|
+
"""Resolve and cache a font at given size."""
|
|
57
|
+
|
|
58
|
+
@abstractmethod
|
|
59
|
+
def clear_font_cache(self) -> None:
|
|
60
|
+
"""Flush font cache (e.g. after resolution change)."""
|
|
61
|
+
|
|
62
|
+
@abstractmethod
|
|
63
|
+
def to_pil(self, surface: Any) -> Any:
|
|
64
|
+
"""Convert native surface → PIL Image (boundary output)."""
|
|
65
|
+
|
|
66
|
+
@abstractmethod
|
|
67
|
+
def from_pil(self, image: Any) -> Any:
|
|
68
|
+
"""Convert PIL Image → native surface."""
|