trcc-linux 4.2.8__tar.gz → 5.0.1__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-4.2.8 → trcc_linux-5.0.1}/.gitignore +3 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/PKG-INFO +1 -1
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/pyproject.toml +1 -1
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/__version__.py +15 -1
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/device/led_segment.py +139 -78
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/device/scsi.py +98 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/infra/doctor.py +47 -6
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/infra/media_player.py +68 -7
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/conf.py +18 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/core/controllers.py +38 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/core/models.py +198 -5
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/base.py +50 -1
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/constants.py +2 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/qt_app_mvc.py +194 -62
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/uc_about.py +3 -2
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/uc_device.py +5 -1
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/uc_led_control.py +253 -49
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/uc_preview.py +77 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/uc_screen_led.py +8 -4
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/uc_theme_mask.py +31 -3
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/services/display.py +84 -3
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/services/image.py +8 -3
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/services/led.py +106 -3
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/services/media.py +29 -1
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/services/system.py +120 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/services/theme.py +9 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/hid_testing/test_device_led.py +6 -7
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/hid_testing/test_led_controller.py +11 -11
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_ax120_display.py +67 -24
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_doctor.py +28 -7
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_models.py +1 -1
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/LICENSE +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/README.md +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/__init__.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/__main__.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/__init__.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/device/__init__.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/device/bulk.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/device/detector.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/device/factory.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/device/hid.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/device/lcd.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/device/led.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/device/led_hr10.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/device/led_kvm.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/infra/__init__.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/infra/binary_reader.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/infra/data_repository.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/infra/dc_config.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/infra/dc_parser.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/infra/dc_writer.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/infra/debug_report.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/infra/font_resolver.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/infra/theme_cloud.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/infra/theme_downloader.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/system/__init__.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/system/config.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/system/info.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/adapters/system/sensors.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/api.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/fonts/MSYH.TTC +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/fonts/MSYHBD.TTC +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/fonts/README.md +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/240240.gif +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/240320.gif +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/320240.gif +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/320320.gif +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A0/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A0/345/205/263/344/272/216d.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A0/345/205/263/344/272/216e.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A0/345/205/263/344/272/216en.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A0/345/205/263/344/272/216f.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A0/345/205/263/344/272/216p.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A0/345/205/263/344/272/216r.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A0/345/205/263/344/272/216tc.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A0/345/205/263/344/272/216x.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A0/345/220/257/345/212/250/347/225/214/351/235/242.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A0/346/225/260/346/215/256/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207en.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207tc.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A0/347/241/254/344/273/266/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1AK120 Digital.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1AK120 Digitala.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1AK120_Digital.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1AK120_Digitala.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1AS120 VISION.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1AS120 VISIONa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1AS120_VISION.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1AS120_VISIONa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1AX120 DIGITAL.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1AX120 DIGITALa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1AX120_DIGITAL.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1AX120_DIGITALa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1BA120 VISION.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1BA120 VISIONa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1BA120_VISION.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1BA120_VISIONa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1CORE VISION.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1CORE VISIONa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1CORE_VISION.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1CORE_VISIONa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1CZ1.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1CZ1a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1CZTV.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1CZTVa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1ELITE VISION.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1ELITE VISIONa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1ELITE_VISION.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1ELITE_VISIONa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN HORIZON PRO.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN HORIZON PROa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN MAGIC PRO.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN MAGIC PROa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN VISION V2.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN VISION V2a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN WARFRAME PRO.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN WARFRAME PROa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN WARFRAME SE.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN WARFRAME SEa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN WARFRAME.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN WARFRAMEa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN_HORIZON_PROa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN_MAGIC_PROa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN_VISION_V2.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN_VISION_V2a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN_WARFRAME.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PRO.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PROa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SE.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SEa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1FROZEN_WARFRAMEa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1GRAND VISION.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1GRAND VISIONa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1GRAND_VISION.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1GRAND_VISIONa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITAL.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITALa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1HYPER VISION.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1HYPER VISIONa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1HYPER_VISION.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1HYPER_VISIONa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1KVMALEDC6.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1KVMALEDC6a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LC1.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LC1a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LC2.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LC2JD.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LC2JDa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LC2a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LC3.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LC3a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LC5.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LC5a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF10.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF10a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF11.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF11a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF12.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF12a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF13.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF13a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF14.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF14a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF15.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF15a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF16.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF167.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF16a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF17a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF18.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF18a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF19.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF19a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF8.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LF8a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LM16SE.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LM16SEa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LM22.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LM22a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LM24.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LM24a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LM26.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LM26a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LM27.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1LM27a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1Mjolnir VISION PRO.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1Mjolnir VISION PROa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1Mjolnir VISION.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1Mjolnir VISIONa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1Mjolnir_VISION.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1Mjolnir_VISION_PRO.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1Mjolnir_VISION_PROa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1Mjolnir_VISIONa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1PA120 DIGITAL.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1PA120 DIGITALa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1PA120_DIGITAL.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1PA120_DIGITALa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1RK120 DIGITAL.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1RK120 DIGITALa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1RK120_DIGITAL.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1RK120_DIGITALa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1RP130 VISION.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1RP130 VISIONa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1RP130_VISION.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1RP130_VISIONa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1Stream Vision.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1Stream Visiona.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1Stream_Vision.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1Stream_Visiona.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A1/345/205/263/344/272/216a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A2_update_overlay.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A2/347/253/213/345/215/263/346/233/264/346/226/260.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/Acpu.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/Adram.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/Afan.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/Agpu.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/Ahdd.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/Alogout/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/Alogout/351/273/230/350/256/244.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/Anet.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A/344/270/212/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A/344/270/213/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A/345/242/236/345/212/240/346/225/260/347/273/204.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A/346/225/260/346/215/256/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A/346/273/232/345/212/250/346/235/241.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/A/350/207/252/345/256/232/344/271/211.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0CZ1.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0CZ1d.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0CZ1e.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0CZ1en.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0CZ1f.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0CZ1p.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0CZ1r.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0CZ1tc.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0CZ1x.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0KVMA/347/201/257/346/216/247.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LC1.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LC1d.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LC1e.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LC1en.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LC1f.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LC1p.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LC1r.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LC1tc.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LC1x.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LC2.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LC2d.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LC2e.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LC2en.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LC2f.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LC2p.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LC2r.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LC2tc.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LC2x.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF10.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF10d.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF10e.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF10en.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF10f.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF10p.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF10r.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF10tc.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF10x.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF11.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF11d.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF11e.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF11en.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF11f.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF11p.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF11r.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF11tc.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF11x.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF12.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF12d.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF12e.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF12en.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF12f.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF12p.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF12r.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF12tc.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF12x.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF13.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF13d.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF13e.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF13en.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF13f.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF13p.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF13r.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF13tc.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF13x.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF15.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF15d.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF15e.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF15en.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF15f.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF15p.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF15r.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF15tc.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF15x.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF8.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF8d.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF8e.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF8en.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF8f.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF8p.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF8r.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF8tc.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0LF8x.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0rgblf13.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217d.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217e.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217en.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217f.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217p.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217r.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217tc.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217x.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D1/345/244/264/347/233/2241.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D1/345/244/264/347/233/2242.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D1/345/244/264/347/233/2243.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D1/345/244/264/347/233/2244.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D1/345/244/264/347/233/2245.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/2111.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/21110.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/21110a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/21111.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/21111a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/21112.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/21112a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/2111a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/2112.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/2112a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/2113.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/2113a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/2114.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/2114a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/2115.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/2115a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/2116.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/2116a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/2117.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/2117a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/2118.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/2118a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/2119.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D2/347/201/257/345/205/2119a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D3/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D3/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D3/345/274/200/345/205/263b.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D3/346/227/213/351/222/256.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D3/346/227/213/351/222/2560.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D3/346/251/231.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D3/346/271/226.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D3/347/231/275.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D3/347/264/253.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D3/347/272/242.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D3/347/273/277.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D3/350/223/235.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D3/351/273/204.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/345/274/200/346/234/272.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/345/274/200/346/234/272a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/346/214/211/351/222/2561.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/346/214/211/351/222/2561a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/346/214/211/351/222/2562a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/346/214/211/351/222/2563.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/346/214/211/351/222/2563a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/346/214/211/351/222/2564.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/346/214/211/351/222/2564a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/346/250/241/345/274/2171.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/346/250/241/345/274/2171a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/346/250/241/345/274/2172.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/346/250/241/345/274/2172a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/346/250/241/345/274/2173.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/346/250/241/345/274/2173a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/346/250/241/345/274/2174.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/346/250/241/345/274/2174a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/346/250/241/345/274/2175.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/346/250/241/345/274/2175a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/346/250/241/345/274/2176.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D4/346/250/241/345/274/2176a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/DAK120_DIGITAL.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/DAX120_DIGITAL.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/DCZ1.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/DFROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/DFROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/DLC1.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/DLC2.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/DLF10.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/DLF11.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/DLF12.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/DLF13.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/DLF15.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/DLF8.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/DPA120 DIGITAL.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/DPA120_DIGITAL.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/Dch1.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/Dch2.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/Dch3.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/Dch4.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/Dchcz1.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/2062.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/225.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/2252.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/256.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/2562.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultra.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultraa.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/206/205/345/256/271d.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/206/205/345/256/271e.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/206/205/345/256/271en.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/206/205/345/256/271f.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/206/205/345/256/271p.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/206/205/345/256/271r.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/206/205/345/256/271tc.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/206/205/345/256/271x.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/212/250/347/224/273/350/201/224/345/212/250.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277d.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277e.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277en.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277f.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277p.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277r.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277tc.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277x.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277d.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277e.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277en.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277f.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277p.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277r.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277tc.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277x.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xy.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyd.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xye.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyen.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyf.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyp.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyr.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xytc.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyx.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yx.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxd.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxe.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxen.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxf.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxp.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxr.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxtc.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxx.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250d.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250e.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250en.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250f.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250p.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250r.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250tc.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250x.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/346/250/241/345/235/227/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272d.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272e.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272f.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272p.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272r.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272x.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227en.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227tc.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2501.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2502.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2503.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0CZTV.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0CZTVd.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0CZTVe.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0CZTVen.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0CZTVf.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0CZTVp.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0CZTVr.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0CZTVtc.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0CZTVx.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0M1.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0M2.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0M3.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0M4.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0M5.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0M5a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0M6.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230d.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230e.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230en.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230f.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230p.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230r.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230tc.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230x.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/346/222/255/346/224/276.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/346/232/202/345/201/234.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230d.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230e.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230en.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230f.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230p.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230r.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230tc.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230x.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257d.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257e.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257f.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257p.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257r.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257x.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/351/242/204/350/247/210.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/351/242/204/350/247/210a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271280X480.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X462.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227360X800.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227462X1920.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X1280.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X800.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X854.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227540X960.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X360.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X480.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227854X480.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227960X540.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P12H.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P240240.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P240320.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P24H.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P320240.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P320320.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/PDM.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/PDMY.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/PL0.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/PL1.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/PL2.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/PL3.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/PM1.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/PM1a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/PM2.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/PM2a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/PM3.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/PM3a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/PM4.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/PM4a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/PM5.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/PM5a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/PM6.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/PM6a.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/PMD.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/PYMD.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/344/277/235/345/255/230/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/207/217.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227b.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/212/240.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/217/226/350/211/262.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/220/270/347/256/241.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/233/276/347/211/207.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/234/206/345/275/242/345/205/263/351/227/255.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/234/206/345/275/242/347/241/256/345/256/232.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/244/232/351/200/211.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/244/232/351/200/211a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/256/275/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/257/274/345/205/245.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/257/274/345/207/272.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/345/270/256/345/212/251.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/346/225/260/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/346/225/260/346/215/256.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/346/226/207/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/346/227/213/350/275/254.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206A.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/205/263.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/274/200.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233180.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233270.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/23390.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a180.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a270.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a90.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b180.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b270.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b90.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206A.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/216/257H1.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/216/257H2.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/216/257H3.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/216/257H4.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/216/257H5.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/216/257H6.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/275/221/347/273/234.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/347/275/221/347/273/234/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/350/243/201/345/207/217.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/350/247/206/351/242/221.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/350/275/256/346/222/2551.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/350/275/256/346/222/2552.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/350/275/256/346/222/2553.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/350/275/256/346/222/2554.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/350/275/256/346/222/2555.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/350/275/256/346/222/2556.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/350/275/256/346/222/255/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/350/275/275/345/205/245/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/350/277/233/345/272/246/346/235/241.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206M.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206Ma.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210116X480.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210180X400.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210180X480.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210240X240.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210240X320.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210240X400.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210240X427.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210270X480.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210320X240.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320/345/234/206.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210360360/345/234/206.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210400X180.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210400X240.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210427X240.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210480X116.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210480X180.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210480X270.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480/345/234/206.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/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-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/P/351/253/230/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/p0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/p/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/ucBoFangQiKongZhi1.BackgroundImage.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/ucBoFangQiKongZhi1_BackgroundImage.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/ucVideoCut1.BackgroundImage.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/ucVideoCut1_BackgroundImage.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/ucXiTongXianShi1.BackgroundImage.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/ucXiTongXianShiAdd1.BackgroundImage.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/ucXiTongXianShiColor1.BackgroundImage.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/gui/ucXiTongXianShiTable1.BackgroundImage.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/icons/app.ico +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/icons/trcc.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/icons/trcc_128x128.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/icons/trcc_16x16.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/icons/trcc_24x24.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/icons/trcc_256x256.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/icons/trcc_32x32.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/icons/trcc_48x48.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/assets/icons/trcc_64x64.png +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/cli.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/core/__init__.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/data/trcc_usb.te +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/install/__init__.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/install/gui.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/__init__.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/assets.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/eyedropper.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/pipewire_capture.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/screen_capture.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/uc_activity_sidebar.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/uc_color_wheel.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/uc_image_cut.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/uc_info_module.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/uc_sensor_picker.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/uc_seven_segment.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/uc_system_info.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/uc_theme_local.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/uc_theme_setting.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/uc_theme_web.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/qt_components/uc_video_cut.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/services/__init__.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/services/device.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/src/trcc/services/overlay.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/README.md +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/__init__.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/hid_testing/__init__.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/hid_testing/conftest.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/hid_testing/test_device_factory.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/hid_testing/test_device_hid.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/run_tests.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_api.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_architecture.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_cli.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_controllers.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_data_repository.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_dc_parser.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_dc_writer.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_debug_report.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_device_bulk.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_device_detector.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_device_implementations.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_device_lcd.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_device_led_kvm.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_device_scsi.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_hr10_display.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_integration.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_media_player.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_overlay_renderer.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_qt_base.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_qt_constants.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_qt_widgets.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_services.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_system_config.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_system_info.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_system_sensors.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_theme_cloud.py +0 -0
- {trcc_linux-4.2.8 → trcc_linux-5.0.1}/tests/test_theme_downloader.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: trcc-linux
|
|
3
|
-
Version:
|
|
3
|
+
Version: 5.0.1
|
|
4
4
|
Summary: Linux implementation of Thermalright LCD Control Center
|
|
5
5
|
Project-URL: Homepage, https://github.com/Lexonight1/thermalright-trcc-linux
|
|
6
6
|
Project-URL: Documentation, https://github.com/Lexonight1/thermalright-trcc-linux#readme
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"""TRCC Linux version information."""
|
|
2
2
|
|
|
3
|
-
__version__ = "
|
|
3
|
+
__version__ = "5.0.1"
|
|
4
4
|
__version_info__ = tuple(int(x) for x in __version__.split("."))
|
|
5
5
|
|
|
6
6
|
# Version history:
|
|
@@ -174,3 +174,17 @@ __version_info__ = tuple(int(x) for x in __version__.split("."))
|
|
|
174
174
|
# Fix LED device handshake warning on boot: route LED devices
|
|
175
175
|
# directly to LED panel in auto-select, skipping LCD handshake.
|
|
176
176
|
# 2311 tests.
|
|
177
|
+
# 5.0.0 - Complete Windows C# feature parity: full gap audit (35 items
|
|
178
|
+
# resolved). HIGH: fix wire remap tables for LED styles 1-12,
|
|
179
|
+
# PA120 GPU digit shift, LC2 date/colon, LF11 disk metrics,
|
|
180
|
+
# LC1 MHz 4-digit. MEDIUM: zone carousel, LED test mode, DDR
|
|
181
|
+
# multiplier, disk selector, per-zone on/off, split mode (Dynamic
|
|
182
|
+
# Island), preview drag, slideshow carousel. LOW: video fit-mode
|
|
183
|
+
# during playback (width/height letterbox), expanded DRAM info
|
|
184
|
+
# (15 dmidecode fields), disk SMART health, SPI byte order fix.
|
|
185
|
+
# VideoDecoder fit-mode via ffprobe + proportional scaling.
|
|
186
|
+
# 2315 tests.
|
|
187
|
+
# 5.0.1 - Fix SELinux detection without root: semodule -l requires root
|
|
188
|
+
# and always reported [!!] in setup-gui for non-root users.
|
|
189
|
+
# Fall back to sesearch --allow which queries the loaded kernel
|
|
190
|
+
# policy without elevated privileges. 2316 tests.
|
|
@@ -189,6 +189,30 @@ class SegmentDisplay(ABC):
|
|
|
189
189
|
if seg_name in segs:
|
|
190
190
|
mask[leds[wire_idx]] = True
|
|
191
191
|
|
|
192
|
+
def _encode_5digit(
|
|
193
|
+
self,
|
|
194
|
+
value: int,
|
|
195
|
+
digit_leds: Tuple[Tuple[int, ...], ...],
|
|
196
|
+
mask: List[bool],
|
|
197
|
+
) -> None:
|
|
198
|
+
"""Encode 0-99999 into 5 seven-segment digits with leading-zero suppression."""
|
|
199
|
+
v = max(0, min(99999, value))
|
|
200
|
+
digits = [(v // 10000), (v % 10000) // 1000, (v % 1000) // 100,
|
|
201
|
+
(v % 100) // 10, v % 10]
|
|
202
|
+
chars = [str(d) for d in digits]
|
|
203
|
+
# Suppress leading zeros
|
|
204
|
+
for i in range(4): # don't suppress ones digit
|
|
205
|
+
if digits[i] == 0:
|
|
206
|
+
chars[i] = ' '
|
|
207
|
+
else:
|
|
208
|
+
break
|
|
209
|
+
for digit_idx, ch in enumerate(chars):
|
|
210
|
+
segs = self.CHAR_7SEG.get(ch, set())
|
|
211
|
+
leds = digit_leds[digit_idx]
|
|
212
|
+
for wire_idx, seg_name in enumerate(self.WIRE_7SEG):
|
|
213
|
+
if seg_name in segs:
|
|
214
|
+
mask[leds[wire_idx]] = True
|
|
215
|
+
|
|
192
216
|
def _encode_2digit_partial(
|
|
193
217
|
self,
|
|
194
218
|
value: int,
|
|
@@ -376,18 +400,18 @@ class PA120Display(SegmentDisplay):
|
|
|
376
400
|
(31, 32, 33, 34, 35, 36, 37),
|
|
377
401
|
(38, 39, 40, 41, 42, 43, 44),
|
|
378
402
|
)
|
|
379
|
-
CPU_USE_PARTIAL = (
|
|
403
|
+
CPU_USE_PARTIAL = (80, 81) # B11/C11 overflow for "1xx"
|
|
380
404
|
|
|
381
405
|
GPU_TEMP_DIGITS: Tuple[Tuple[int, ...], ...] = (
|
|
382
|
-
(
|
|
383
|
-
(
|
|
384
|
-
(
|
|
406
|
+
(45, 46, 47, 48, 49, 50, 51), # LED6 = gpuTemp hundreds
|
|
407
|
+
(52, 53, 54, 55, 56, 57, 58), # LED7 = gpuTemp tens
|
|
408
|
+
(59, 60, 61, 62, 63, 64, 65), # LED8 = gpuTemp ones
|
|
385
409
|
)
|
|
386
|
-
|
|
387
|
-
(
|
|
410
|
+
GPU_USE_DIGITS: Tuple[Tuple[int, ...], ...] = (
|
|
411
|
+
(66, 67, 68, 69, 70, 71, 72), # LED9 = gpuUse tens
|
|
412
|
+
(73, 74, 75, 76, 77, 78, 79), # LED10 = gpuUse ones
|
|
388
413
|
)
|
|
389
|
-
|
|
390
|
-
GPU_USE_PARTIAL = (82, 83)
|
|
414
|
+
GPU_USE_PARTIAL = (82, 83) # B12/C12 overflow for "1xx"
|
|
391
415
|
|
|
392
416
|
# ── Interface ──────────────────────────────────────────────────
|
|
393
417
|
|
|
@@ -430,24 +454,11 @@ class PA120Display(SegmentDisplay):
|
|
|
430
454
|
self.GPU_TEMP_DIGITS, mask,
|
|
431
455
|
)
|
|
432
456
|
|
|
433
|
-
# GPU usage:
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
gu -= 100
|
|
439
|
-
d_t, d_o = gu // 10, gu % 10
|
|
440
|
-
# Tens → full 7-seg digit
|
|
441
|
-
segs_t = self.CHAR_7SEG.get(str(d_t) if d_t > 0 else ' ', set())
|
|
442
|
-
for wire_idx, seg_name in enumerate(self.WIRE_7SEG):
|
|
443
|
-
if seg_name in segs_t:
|
|
444
|
-
mask[self.GPU_USE_TENS[0][wire_idx]] = True
|
|
445
|
-
# Ones → partial (B, C segments only)
|
|
446
|
-
segs_o = self.CHAR_7SEG.get(str(d_o), set())
|
|
447
|
-
if 'b' in segs_o:
|
|
448
|
-
mask[self.GPU_USE_ONES_BC[0]] = True
|
|
449
|
-
if 'c' in segs_o:
|
|
450
|
-
mask[self.GPU_USE_ONES_BC[1]] = True
|
|
457
|
+
# GPU usage: 2 full digits + partial overflow (same pattern as CPU usage)
|
|
458
|
+
self._encode_2digit_partial(
|
|
459
|
+
int(getattr(metrics, 'gpu_usage', 0)),
|
|
460
|
+
self.GPU_USE_DIGITS, self.GPU_USE_PARTIAL, mask,
|
|
461
|
+
)
|
|
451
462
|
|
|
452
463
|
return mask
|
|
453
464
|
|
|
@@ -528,6 +539,8 @@ class LC1Display(SegmentDisplay):
|
|
|
528
539
|
"""Style 4 — LC1: 38-LED mask, mode-based 3-phase (temp/MHz/GB).
|
|
529
540
|
|
|
530
541
|
NVMe memory device — displays different metrics with unit symbol.
|
|
542
|
+
Sub-style 0 = memory mode (temp/MHz*DDR/GB).
|
|
543
|
+
Sub-style 1 = hard disk mode (temp/RPM/MHz).
|
|
531
544
|
Remapped style.
|
|
532
545
|
"""
|
|
533
546
|
|
|
@@ -543,11 +556,18 @@ class LC1Display(SegmentDisplay):
|
|
|
543
556
|
)
|
|
544
557
|
UNIT_DIGIT = (24, 25, 26, 27, 28, 29, 30)
|
|
545
558
|
|
|
546
|
-
|
|
559
|
+
# Sub-style 0: memory mode phases
|
|
560
|
+
PHASES_MEM = (
|
|
547
561
|
('mem_temp', 0, SSD), # temperature
|
|
548
|
-
('mem_clock', 1, MTNO), # MHz
|
|
562
|
+
('mem_clock', 1, MTNO), # MHz (* memoryRatio)
|
|
549
563
|
('mem_used', 2, GNO), # GB
|
|
550
564
|
)
|
|
565
|
+
# Sub-style 1: hard disk mode phases
|
|
566
|
+
PHASES_DISK = (
|
|
567
|
+
('disk_temp', 0, SSD), # temperature
|
|
568
|
+
('disk_read', 1, MTNO), # RPM/MHz
|
|
569
|
+
('disk_activity', 2, GNO), # activity
|
|
570
|
+
)
|
|
551
571
|
|
|
552
572
|
# ── Interface ──────────────────────────────────────────────────
|
|
553
573
|
|
|
@@ -559,22 +579,39 @@ class LC1Display(SegmentDisplay):
|
|
|
559
579
|
def phase_count(self) -> int:
|
|
560
580
|
return 3
|
|
561
581
|
|
|
582
|
+
# All 4 digit positions for 4-digit modes (MHz/GB)
|
|
583
|
+
ALL_DIGITS: Tuple[Tuple[int, ...], ...] = (
|
|
584
|
+
(3, 4, 5, 6, 7, 8, 9),
|
|
585
|
+
(10, 11, 12, 13, 14, 15, 16),
|
|
586
|
+
(17, 18, 19, 20, 21, 22, 23),
|
|
587
|
+
(24, 25, 26, 27, 28, 29, 30),
|
|
588
|
+
)
|
|
589
|
+
|
|
562
590
|
def compute_mask(self, metrics: HardwareMetrics, phase: int = 0,
|
|
563
591
|
temp_unit: str = "C", **kw: Any) -> List[bool]:
|
|
564
592
|
mask = [False] * 38
|
|
565
593
|
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
if
|
|
569
|
-
actual_mode = -1
|
|
594
|
+
sub_style = kw.get('sub_style', 0)
|
|
595
|
+
memory_ratio = kw.get('memory_ratio', 2)
|
|
596
|
+
phases = self.PHASES_DISK if sub_style == 1 else self.PHASES_MEM
|
|
570
597
|
|
|
598
|
+
metric_key, mode, indicator_idx = phases[phase % 3]
|
|
571
599
|
mask[indicator_idx] = True
|
|
572
|
-
|
|
573
600
|
value = int(getattr(metrics, metric_key, 0))
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
601
|
+
|
|
602
|
+
if mode == 0:
|
|
603
|
+
# Temperature: 3 digits + C/F unit symbol on digit 4
|
|
604
|
+
if temp_unit == "F":
|
|
605
|
+
value = self._to_display_temp(value, "F")
|
|
606
|
+
self._encode_3digit(value, self.DIGITS, mask)
|
|
607
|
+
unit_mode = -1 if temp_unit == "F" else 0
|
|
608
|
+
self._encode_unit(unit_mode, self.UNIT_DIGIT, mask)
|
|
609
|
+
else:
|
|
610
|
+
# MHz/GB/RPM: 4-digit number using all 4 positions
|
|
611
|
+
if sub_style == 0 and mode == 1:
|
|
612
|
+
value *= memory_ratio # DDR multiplier for memory clock
|
|
613
|
+
self._encode_4digit(value, self.ALL_DIGITS, mask)
|
|
614
|
+
|
|
578
615
|
return mask
|
|
579
616
|
|
|
580
617
|
|
|
@@ -830,17 +867,20 @@ class LC2Display(SegmentDisplay):
|
|
|
830
867
|
"""
|
|
831
868
|
|
|
832
869
|
# ── Layout data ────────────────────────────────────────────────
|
|
870
|
+
# Indices 0-2: time colon dots (0, 1) + date separator (2) — always on
|
|
871
|
+
COLON_AND_SEP = (0, 1, 2)
|
|
872
|
+
|
|
833
873
|
DIGITS: Tuple[Tuple[int, ...], ...] = (
|
|
834
874
|
(3, 4, 5, 6, 7, 8, 9), # Hour tens
|
|
835
875
|
(10, 11, 12, 13, 14, 15, 16), # Hour ones
|
|
836
876
|
(17, 18, 19, 20, 21, 22, 23), # Minute tens
|
|
837
877
|
(24, 25, 26, 27, 28, 29, 30), # Minute ones
|
|
838
|
-
(31, 32, 33, 34, 35, 36, 37), # Month
|
|
839
|
-
(38, 39, 40, 41, 42, 43, 44), #
|
|
840
|
-
(45, 46, 47, 48, 49, 50, 51), # Day
|
|
878
|
+
(31, 32, 33, 34, 35, 36, 37), # Month ones (full digit)
|
|
879
|
+
(38, 39, 40, 41, 42, 43, 44), # Day tens (full digit)
|
|
880
|
+
(45, 46, 47, 48, 49, 50, 51), # Day ones (full digit)
|
|
841
881
|
)
|
|
842
|
-
|
|
843
|
-
DECORATION = tuple(range(54, 61))
|
|
882
|
+
MONTH_TENS_BC = (52, 53) # B8/C8 — partial for month tens (0 or 1)
|
|
883
|
+
DECORATION = tuple(range(54, 61)) # 7 weekday bar indicators
|
|
844
884
|
|
|
845
885
|
# ── Interface ──────────────────────────────────────────────────
|
|
846
886
|
|
|
@@ -857,8 +897,13 @@ class LC2Display(SegmentDisplay):
|
|
|
857
897
|
mask = [False] * 61
|
|
858
898
|
|
|
859
899
|
is_24h = kw.get('is_24h', True)
|
|
900
|
+
week_sunday = kw.get('week_sunday', False)
|
|
860
901
|
now = datetime.now()
|
|
861
902
|
|
|
903
|
+
# Time colons + date separator — always on
|
|
904
|
+
for idx in self.COLON_AND_SEP:
|
|
905
|
+
mask[idx] = True
|
|
906
|
+
|
|
862
907
|
hour = now.hour
|
|
863
908
|
if not is_24h:
|
|
864
909
|
hour = hour % 12
|
|
@@ -872,21 +917,33 @@ class LC2Display(SegmentDisplay):
|
|
|
872
917
|
self._encode_clock_digit(now.minute // 10, self.DIGITS[2], mask)
|
|
873
918
|
self._encode_clock_digit(now.minute % 10, self.DIGITS[3], mask)
|
|
874
919
|
|
|
875
|
-
# Month
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
920
|
+
# Month tens: partial B/C only (can only show "1" or blank)
|
|
921
|
+
m_tens = now.month // 10
|
|
922
|
+
if m_tens == 1:
|
|
923
|
+
mask[self.MONTH_TENS_BC[0]] = True # B segment
|
|
924
|
+
mask[self.MONTH_TENS_BC[1]] = True # C segment
|
|
925
|
+
|
|
926
|
+
# Month ones: full digit at DIGITS[4]
|
|
927
|
+
self._encode_clock_digit(now.month % 10, self.DIGITS[4], mask)
|
|
928
|
+
|
|
929
|
+
# Day: tens (full) + ones (full)
|
|
930
|
+
self._encode_clock_digit(now.day // 10, self.DIGITS[5], mask,
|
|
931
|
+
suppress_zero=True)
|
|
932
|
+
self._encode_clock_digit(now.day % 10, self.DIGITS[6], mask)
|
|
933
|
+
|
|
934
|
+
# Weekday progressive fill (C#: isOn[ZhuangShi1]=true always,
|
|
935
|
+
# isOn[ZhuangShi2]=(w>0), isOn[ZhuangShi3]=(w>1), ... isOn[ZhuangShi7]=(w>5))
|
|
936
|
+
# Python weekday: 0=Mon..6=Sun; C# DayOfWeek: 0=Sun..6=Sat
|
|
937
|
+
py_wd = now.weekday() # 0=Mon..6=Sun
|
|
938
|
+
if week_sunday:
|
|
939
|
+
# Sunday-start: Sun=0, Mon=1, ..., Sat=6
|
|
940
|
+
w = (py_wd + 1) % 7
|
|
941
|
+
else:
|
|
942
|
+
# Monday-start: Mon=0, ..., Sun=6
|
|
943
|
+
w = py_wd
|
|
944
|
+
for i, idx in enumerate(self.DECORATION):
|
|
945
|
+
mask[idx] = (i == 0) or (w > i - 1)
|
|
887
946
|
|
|
888
|
-
for idx in self.DECORATION:
|
|
889
|
-
mask[idx] = True
|
|
890
947
|
return mask
|
|
891
948
|
|
|
892
949
|
|
|
@@ -895,15 +952,16 @@ class LC2Display(SegmentDisplay):
|
|
|
895
952
|
# ═══════════════════════════════════════════════════════════════════════
|
|
896
953
|
|
|
897
954
|
class LF11Display(SegmentDisplay):
|
|
898
|
-
"""Style 10 — LF11: 38-LED,
|
|
955
|
+
"""Style 10 — LF11: 38-LED, hard-disk sensor rotation.
|
|
899
956
|
|
|
900
|
-
|
|
957
|
+
C# SetMyNumeralHardDisk: mode 0 = SSD temp (3-digit + C/F),
|
|
958
|
+
mode 1 = BFB/fan (5-digit), mode 2 = MHz (5-digit).
|
|
901
959
|
"""
|
|
902
960
|
|
|
903
961
|
# ── Layout data ────────────────────────────────────────────────
|
|
904
|
-
SSD = 0 # °C/°F
|
|
905
|
-
BFB = 1 # %
|
|
906
|
-
MHZ_IND = 2 # MHz
|
|
962
|
+
SSD = 0 # °C/°F indicator
|
|
963
|
+
BFB = 1 # % / fan indicator (shared with MTNo)
|
|
964
|
+
MHZ_IND = 2 # MHz indicator (shared with GNo)
|
|
907
965
|
|
|
908
966
|
DIGITS: Tuple[Tuple[int, ...], ...] = (
|
|
909
967
|
(3, 4, 5, 6, 7, 8, 9),
|
|
@@ -913,11 +971,11 @@ class LF11Display(SegmentDisplay):
|
|
|
913
971
|
(31, 32, 33, 34, 35, 36, 37),
|
|
914
972
|
)
|
|
915
973
|
|
|
974
|
+
# (metric_key, mode): mode 0=temp, 1=BFB/5-digit, 2=MHz/5-digit
|
|
916
975
|
PHASES = (
|
|
917
|
-
('
|
|
918
|
-
('
|
|
919
|
-
('
|
|
920
|
-
('gpu_usage', False),
|
|
976
|
+
('disk_temp', 0),
|
|
977
|
+
('disk_activity', 1),
|
|
978
|
+
('disk_read', 2),
|
|
921
979
|
)
|
|
922
980
|
|
|
923
981
|
# ── Interface ──────────────────────────────────────────────────
|
|
@@ -928,27 +986,30 @@ class LF11Display(SegmentDisplay):
|
|
|
928
986
|
|
|
929
987
|
@property
|
|
930
988
|
def phase_count(self) -> int:
|
|
931
|
-
return
|
|
989
|
+
return 3
|
|
932
990
|
|
|
933
991
|
def compute_mask(self, metrics: HardwareMetrics, phase: int = 0,
|
|
934
992
|
temp_unit: str = "C", **kw: Any) -> List[bool]:
|
|
935
993
|
mask = [False] * 38
|
|
936
994
|
|
|
937
|
-
metric_key,
|
|
995
|
+
metric_key, mode = self.PHASES[phase % 3]
|
|
996
|
+
value = int(getattr(metrics, metric_key, 0))
|
|
938
997
|
|
|
939
|
-
if
|
|
998
|
+
if mode == 0:
|
|
999
|
+
# Temperature: SSD indicator, 3-digit + C/F unit on digits 4-5
|
|
940
1000
|
mask[self.SSD] = True
|
|
941
|
-
else:
|
|
942
|
-
mask[self.BFB] = True
|
|
943
|
-
|
|
944
|
-
value = int(getattr(metrics, metric_key, 0))
|
|
945
|
-
if is_temp:
|
|
946
1001
|
value = self._to_display_temp(value, temp_unit)
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
1002
|
+
self._encode_3digit(value, self.DIGITS[0:3], mask)
|
|
1003
|
+
unit_mode = -1 if temp_unit == "F" else 0
|
|
1004
|
+
self._encode_unit(unit_mode, self.DIGITS[3], mask)
|
|
1005
|
+
elif mode == 1:
|
|
1006
|
+
# BFB/fan: 5-digit value across all positions
|
|
1007
|
+
mask[self.BFB] = True
|
|
1008
|
+
self._encode_5digit(value, self.DIGITS, mask)
|
|
1009
|
+
else:
|
|
1010
|
+
# MHz: 5-digit value across all positions
|
|
1011
|
+
mask[self.MHZ_IND] = True
|
|
1012
|
+
self._encode_5digit(value, self.DIGITS, mask)
|
|
952
1013
|
|
|
953
1014
|
return mask
|
|
954
1015
|
|
|
@@ -15,6 +15,7 @@ import struct
|
|
|
15
15
|
import subprocess
|
|
16
16
|
import tempfile
|
|
17
17
|
import time
|
|
18
|
+
import zlib
|
|
18
19
|
from typing import Dict, List, Set
|
|
19
20
|
|
|
20
21
|
from trcc.adapters.infra.data_repository import SysUtils
|
|
@@ -33,6 +34,19 @@ _POST_INIT_DELAY = 0.1
|
|
|
33
34
|
_FRAME_CMD_BASE = 0x101F5
|
|
34
35
|
_CHUNK_SIZE = 0x10000 # 64 KiB per chunk (except possibly the last)
|
|
35
36
|
|
|
37
|
+
# Boot animation SCSI commands (from USBLCD.exe reverse engineering)
|
|
38
|
+
_ANIM_FIRST_FRAME = 0x000201F5 # Compressed first frame (CDB[8]=frame_count)
|
|
39
|
+
_ANIM_CAROUSEL = 0x000301F5 # Compressed carousel frame (CDB[3]=delay, CDB[8]=frame_index)
|
|
40
|
+
_ANIM_COMPRESS_LEVEL = 3 # zlib compression level (fast, matches USBLCD.exe)
|
|
41
|
+
_ANIM_FIRST_DELAY_S = 0.5 # 500ms sleep after first frame
|
|
42
|
+
_ANIM_FRAME_DELAY_S = 0.01 # 10ms sleep between carousel frames
|
|
43
|
+
_ANIM_MAX_FRAMES = 249 # C# rejects >= 250
|
|
44
|
+
|
|
45
|
+
# Boot animation supported resolutions (C# returns immediately for others)
|
|
46
|
+
_BOOT_ANIM_RESOLUTIONS = {
|
|
47
|
+
(240, 240), (240, 320), (320, 240), (320, 320),
|
|
48
|
+
}
|
|
49
|
+
|
|
36
50
|
|
|
37
51
|
# =========================================================================
|
|
38
52
|
# SCSI device class
|
|
@@ -162,6 +176,75 @@ class ScsiDevice:
|
|
|
162
176
|
ScsiDevice._scsi_write(dev, header, rgb565_data[offset:offset + size])
|
|
163
177
|
offset += size
|
|
164
178
|
|
|
179
|
+
@staticmethod
|
|
180
|
+
def _build_anim_header(cmd: int, word2: int, compressed_size: int) -> bytes:
|
|
181
|
+
"""Build 20-byte CDB for compressed animation commands (no CRC).
|
|
182
|
+
|
|
183
|
+
Layout: [cmd:4][0:4][word2:4][compressed_size:4][0:4]
|
|
184
|
+
Used for 0x201F5 (first frame) and 0x301F5 (carousel frames).
|
|
185
|
+
"""
|
|
186
|
+
return struct.pack('<IIIII', cmd, 0, word2, compressed_size, 0)
|
|
187
|
+
|
|
188
|
+
@staticmethod
|
|
189
|
+
def _send_boot_animation(
|
|
190
|
+
dev: str,
|
|
191
|
+
frames: list[bytes],
|
|
192
|
+
delays: list[int],
|
|
193
|
+
width: int,
|
|
194
|
+
height: int,
|
|
195
|
+
) -> bool:
|
|
196
|
+
"""Send multi-frame boot animation to device flash via SCSI.
|
|
197
|
+
|
|
198
|
+
Matches USBLCD.exe compressed animation upload protocol:
|
|
199
|
+
1. Compress first frame with zlib, send with 0x201F5 (frame_count in CDB[8])
|
|
200
|
+
2. For each subsequent frame, compress and send with 0x301F5
|
|
201
|
+
(delay in CDB[3], frame_index in CDB[8])
|
|
202
|
+
|
|
203
|
+
Args:
|
|
204
|
+
dev: SCSI device path (/dev/sgX).
|
|
205
|
+
frames: List of RGB565 byte arrays (one per animation frame).
|
|
206
|
+
delays: Per-frame delays in centiseconds (from GIF metadata).
|
|
207
|
+
width: Frame width in pixels.
|
|
208
|
+
height: Frame height in pixels.
|
|
209
|
+
|
|
210
|
+
Returns:
|
|
211
|
+
True if all frames sent successfully.
|
|
212
|
+
"""
|
|
213
|
+
if (width, height) not in _BOOT_ANIM_RESOLUTIONS:
|
|
214
|
+
log.warning("Boot animation not supported for %dx%d", width, height)
|
|
215
|
+
return False
|
|
216
|
+
|
|
217
|
+
n = len(frames)
|
|
218
|
+
if n == 0 or n >= _ANIM_MAX_FRAMES:
|
|
219
|
+
log.warning("Boot animation frame count %d out of range (1-%d)", n, _ANIM_MAX_FRAMES - 1)
|
|
220
|
+
return False
|
|
221
|
+
|
|
222
|
+
# Phase 1: Compress and send first frame
|
|
223
|
+
compressed = zlib.compress(frames[0], _ANIM_COMPRESS_LEVEL)
|
|
224
|
+
header = ScsiDevice._build_anim_header(_ANIM_FIRST_FRAME, n, len(compressed))
|
|
225
|
+
if not ScsiDevice._scsi_write(dev, header, compressed):
|
|
226
|
+
log.error("Boot animation: failed to send first frame")
|
|
227
|
+
return False
|
|
228
|
+
log.info("Boot animation: sent first frame (%d bytes compressed, %d frames total)",
|
|
229
|
+
len(compressed), n)
|
|
230
|
+
time.sleep(_ANIM_FIRST_DELAY_S)
|
|
231
|
+
|
|
232
|
+
# Phase 2: Send each carousel frame
|
|
233
|
+
for i in range(n):
|
|
234
|
+
compressed = zlib.compress(frames[i], _ANIM_COMPRESS_LEVEL)
|
|
235
|
+
# Delay: centiseconds * 10 → milliseconds, capped at 250
|
|
236
|
+
delay_raw = delays[i] if i < len(delays) else 10
|
|
237
|
+
delay_byte = min(delay_raw * 10, 250) & 0xFF
|
|
238
|
+
cmd = _ANIM_CAROUSEL | (delay_byte << 24)
|
|
239
|
+
header = ScsiDevice._build_anim_header(cmd, i, len(compressed))
|
|
240
|
+
if not ScsiDevice._scsi_write(dev, header, compressed):
|
|
241
|
+
log.error("Boot animation: failed to send frame %d", i)
|
|
242
|
+
return False
|
|
243
|
+
time.sleep(_ANIM_FRAME_DELAY_S)
|
|
244
|
+
|
|
245
|
+
log.info("Boot animation: all %d frames sent successfully", n)
|
|
246
|
+
return True
|
|
247
|
+
|
|
165
248
|
# --- Instance methods ---
|
|
166
249
|
|
|
167
250
|
def handshake(self) -> HandshakeResult:
|
|
@@ -183,6 +266,21 @@ class ScsiDevice:
|
|
|
183
266
|
ScsiDevice._send_frame(self.device_path, rgb565_data, self.width, self.height)
|
|
184
267
|
return True
|
|
185
268
|
|
|
269
|
+
def send_boot_animation(
|
|
270
|
+
self, frames: list[bytes], delays: list[int],
|
|
271
|
+
) -> bool:
|
|
272
|
+
"""Send boot animation to device flash.
|
|
273
|
+
|
|
274
|
+
Args:
|
|
275
|
+
frames: List of RGB565 byte arrays (one per frame).
|
|
276
|
+
delays: Per-frame delays in centiseconds (from GIF metadata).
|
|
277
|
+
"""
|
|
278
|
+
if not self._initialized:
|
|
279
|
+
self.handshake()
|
|
280
|
+
return ScsiDevice._send_boot_animation(
|
|
281
|
+
self.device_path, frames, delays, self.width, self.height,
|
|
282
|
+
)
|
|
283
|
+
|
|
186
284
|
def close(self) -> None:
|
|
187
285
|
"""Mark as uninitialized (no persistent resources to release)."""
|
|
188
286
|
self._initialized = False
|
|
@@ -561,10 +561,15 @@ class SelinuxResult:
|
|
|
561
561
|
|
|
562
562
|
|
|
563
563
|
def check_selinux() -> SelinuxResult:
|
|
564
|
-
"""Check if SELinux is enforcing and if
|
|
564
|
+
"""Check if SELinux is enforcing and if USB device access is allowed.
|
|
565
565
|
|
|
566
566
|
Returns ok=True when no action is needed: SELinux absent, permissive,
|
|
567
|
-
disabled, or enforcing with
|
|
567
|
+
disabled, or enforcing with USB access already permitted (via trcc_usb
|
|
568
|
+
module or base policy).
|
|
569
|
+
|
|
570
|
+
Detection order:
|
|
571
|
+
1. ``semodule -l`` — checks module list (requires root)
|
|
572
|
+
2. ``sesearch`` — queries loaded kernel policy (works without root)
|
|
568
573
|
"""
|
|
569
574
|
import subprocess
|
|
570
575
|
|
|
@@ -583,25 +588,61 @@ def check_selinux() -> SelinuxResult:
|
|
|
583
588
|
return SelinuxResult(ok=True, message=f'SELinux {status} (no policy needed)')
|
|
584
589
|
|
|
585
590
|
# SELinux is enforcing — check if trcc_usb module is loaded
|
|
591
|
+
# semodule -l requires root; try it first, fall back to sesearch
|
|
586
592
|
try:
|
|
587
593
|
r = subprocess.run(
|
|
588
594
|
['semodule', '-l'], capture_output=True, text=True, timeout=10,
|
|
589
595
|
)
|
|
590
|
-
|
|
596
|
+
if r.returncode == 0 and 'trcc_usb' in r.stdout:
|
|
597
|
+
return SelinuxResult(
|
|
598
|
+
ok=True, message='SELinux enforcing — trcc_usb module loaded',
|
|
599
|
+
enforcing=True, module_loaded=True,
|
|
600
|
+
)
|
|
591
601
|
except (FileNotFoundError, Exception):
|
|
592
|
-
|
|
602
|
+
pass
|
|
593
603
|
|
|
594
|
-
if
|
|
604
|
+
# semodule failed (non-root) or module not listed — check if the
|
|
605
|
+
# needed USB permissions exist in the loaded policy via sesearch
|
|
606
|
+
if _selinux_usb_access_allowed():
|
|
595
607
|
return SelinuxResult(
|
|
596
|
-
ok=True,
|
|
608
|
+
ok=True,
|
|
609
|
+
message='SELinux enforcing — USB access permitted by policy',
|
|
597
610
|
enforcing=True, module_loaded=True,
|
|
598
611
|
)
|
|
612
|
+
|
|
599
613
|
return SelinuxResult(
|
|
600
614
|
ok=False, message='SELinux enforcing — USB policy not installed',
|
|
601
615
|
enforcing=True, module_loaded=False,
|
|
602
616
|
)
|
|
603
617
|
|
|
604
618
|
|
|
619
|
+
def _selinux_usb_access_allowed() -> bool:
|
|
620
|
+
"""Check if the loaded SELinux policy allows USB device access.
|
|
621
|
+
|
|
622
|
+
Uses ``sesearch`` to query the kernel policy — works without root.
|
|
623
|
+
Our trcc_usb module grants:
|
|
624
|
+
allow unconfined_t usb_device_t:chr_file { ioctl open read write }
|
|
625
|
+
The base policy may already cover this via attribute rules.
|
|
626
|
+
"""
|
|
627
|
+
import subprocess
|
|
628
|
+
|
|
629
|
+
try:
|
|
630
|
+
r = subprocess.run(
|
|
631
|
+
['sesearch', '--allow', '-s', 'unconfined_t',
|
|
632
|
+
'-t', 'usb_device_t', '-c', 'chr_file'],
|
|
633
|
+
capture_output=True, text=True, timeout=10,
|
|
634
|
+
)
|
|
635
|
+
if r.returncode != 0:
|
|
636
|
+
return False
|
|
637
|
+
# Check that all required permissions are present
|
|
638
|
+
for perm in ('ioctl', 'open', 'read', 'write'):
|
|
639
|
+
if perm not in r.stdout:
|
|
640
|
+
return False
|
|
641
|
+
return True
|
|
642
|
+
except (FileNotFoundError, Exception):
|
|
643
|
+
return False
|
|
644
|
+
|
|
645
|
+
|
|
605
646
|
def check_desktop_entry() -> bool:
|
|
606
647
|
"""Check if .desktop file is installed."""
|
|
607
648
|
from pathlib import Path
|