trcc-linux 4.1.1__tar.gz → 4.2.2__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.1.1 → trcc_linux-4.2.2}/.gitignore +3 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/PKG-INFO +4 -3
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/README.md +3 -2
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/pyproject.toml +1 -1
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/__version__.py +16 -1
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/device/bulk.py +84 -24
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/infra/data_repository.py +35 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/infra/doctor.py +71 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/cli.py +137 -8
- trcc_linux-4.2.2/src/trcc/data/trcc_usb.te +9 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/install/gui.py +20 -3
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/uc_theme_web.py +1 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_data_repository.py +48 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_device_bulk.py +108 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_doctor.py +94 -1
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/LICENSE +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/__init__.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/__main__.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/__init__.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/device/__init__.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/device/detector.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/device/factory.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/device/hid.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/device/lcd.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/device/led.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/device/led_hr10.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/device/led_kvm.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/device/led_segment.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/device/scsi.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/infra/__init__.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/infra/binary_reader.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/infra/dc_config.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/infra/dc_parser.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/infra/dc_writer.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/infra/debug_report.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/infra/font_resolver.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/infra/media_player.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/infra/theme_cloud.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/infra/theme_downloader.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/system/__init__.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/system/config.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/system/info.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/adapters/system/sensors.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/api.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/fonts/MSYH.TTC +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/fonts/MSYHBD.TTC +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/fonts/README.md +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/240240.gif +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/240320.gif +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/320240.gif +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/320320.gif +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216d.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216e.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216en.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216f.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216p.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216r.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216tc.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216x.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A0/345/220/257/345/212/250/347/225/214/351/235/242.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A0/346/225/260/346/215/256/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207en.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207tc.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A0/347/241/254/344/273/266/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1AK120 Digital.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1AK120 Digitala.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1AK120_Digital.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1AK120_Digitala.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1AS120 VISION.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1AS120 VISIONa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1AS120_VISION.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1AS120_VISIONa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1AX120 DIGITAL.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1AX120 DIGITALa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1AX120_DIGITAL.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1AX120_DIGITALa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1BA120 VISION.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1BA120 VISIONa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1BA120_VISION.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1BA120_VISIONa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1CORE VISION.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1CORE VISIONa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1CORE_VISION.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1CORE_VISIONa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1CZ1.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1CZ1a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1CZTV.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1CZTVa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1ELITE VISION.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1ELITE VISIONa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1ELITE_VISION.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1ELITE_VISIONa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN HORIZON PRO.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN HORIZON PROa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN MAGIC PRO.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN MAGIC PROa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN VISION V2.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN VISION V2a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN WARFRAME PRO.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN WARFRAME PROa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN WARFRAME SE.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN WARFRAME SEa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN WARFRAME.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN WARFRAMEa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN_HORIZON_PROa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN_MAGIC_PROa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN_VISION_V2.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN_VISION_V2a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN_WARFRAME.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PRO.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PROa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SE.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SEa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1FROZEN_WARFRAMEa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1GRAND VISION.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1GRAND VISIONa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1GRAND_VISION.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1GRAND_VISIONa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITAL.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITALa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1HYPER VISION.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1HYPER VISIONa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1HYPER_VISION.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1HYPER_VISIONa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1KVMALEDC6.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1KVMALEDC6a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LC1.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LC1a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LC2.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LC2JD.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LC2JDa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LC2a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LC3.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LC3a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LC5.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LC5a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF10.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF10a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF11.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF11a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF12.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF12a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF13.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF13a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF14.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF14a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF15.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF15a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF16.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF167.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF16a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF17a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF18.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF18a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF19.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF19a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF8.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LF8a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LM16SE.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LM16SEa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LM22.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LM22a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LM24.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LM24a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LM26.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LM26a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LM27.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1LM27a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1Mjolnir VISION PRO.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1Mjolnir VISION PROa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1Mjolnir VISION.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1Mjolnir VISIONa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1Mjolnir_VISION.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1Mjolnir_VISION_PRO.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1Mjolnir_VISION_PROa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1Mjolnir_VISIONa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1PA120 DIGITAL.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1PA120 DIGITALa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1PA120_DIGITAL.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1PA120_DIGITALa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1RK120 DIGITAL.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1RK120 DIGITALa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1RK120_DIGITAL.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1RK120_DIGITALa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1RP130 VISION.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1RP130 VISIONa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1RP130_VISION.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1RP130_VISIONa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1Stream Vision.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1Stream Visiona.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1Stream_Vision.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1Stream_Visiona.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A1/345/205/263/344/272/216a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A2_update_overlay.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A2/347/253/213/345/215/263/346/233/264/346/226/260.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/Acpu.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/Adram.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/Afan.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/Agpu.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/Ahdd.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/Alogout/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/Alogout/351/273/230/350/256/244.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/Anet.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A/344/270/212/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A/344/270/213/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A/345/242/236/345/212/240/346/225/260/347/273/204.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A/346/225/260/346/215/256/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A/346/273/232/345/212/250/346/235/241.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/A/350/207/252/345/256/232/344/271/211.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0CZ1.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0CZ1d.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0CZ1e.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0CZ1en.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0CZ1f.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0CZ1p.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0CZ1r.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0CZ1tc.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0CZ1x.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0KVMA/347/201/257/346/216/247.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LC1.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LC1d.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LC1e.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LC1en.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LC1f.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LC1p.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LC1r.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LC1tc.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LC1x.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LC2.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LC2d.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LC2e.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LC2en.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LC2f.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LC2p.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LC2r.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LC2tc.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LC2x.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF10.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF10d.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF10e.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF10en.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF10f.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF10p.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF10r.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF10tc.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF10x.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF11.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF11d.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF11e.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF11en.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF11f.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF11p.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF11r.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF11tc.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF11x.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF12.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF12d.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF12e.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF12en.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF12f.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF12p.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF12r.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF12tc.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF12x.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF13.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF13d.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF13e.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF13en.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF13f.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF13p.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF13r.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF13tc.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF13x.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF15.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF15d.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF15e.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF15en.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF15f.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF15p.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF15r.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF15tc.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF15x.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF8.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF8d.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF8e.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF8en.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF8f.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF8p.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF8r.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF8tc.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0LF8x.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0rgblf13.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217d.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217e.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217en.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217f.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217p.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217r.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217tc.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217x.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D1/345/244/264/347/233/2241.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D1/345/244/264/347/233/2242.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D1/345/244/264/347/233/2243.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D1/345/244/264/347/233/2244.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D1/345/244/264/347/233/2245.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2111.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21110.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21110a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21111.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21111a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21112.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21112a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2111a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2112.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2112a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2113.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2113a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2114.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2114a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2115.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2115a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2116.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2116a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2117.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2117a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2118.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2118a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2119.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2119a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D3/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D3/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D3/345/274/200/345/205/263b.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D3/346/227/213/351/222/256.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D3/346/227/213/351/222/2560.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D3/346/251/231.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D3/346/271/226.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D3/347/231/275.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D3/347/264/253.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D3/347/272/242.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D3/347/273/277.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D3/350/223/235.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D3/351/273/204.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/345/274/200/346/234/272.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/345/274/200/346/234/272a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2561.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2561a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2562a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2563.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2563a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2564.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2564a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2171.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2171a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2172.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2172a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2173.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2173a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2174.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2174a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2175.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2175a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2176.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2176a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/DAK120_DIGITAL.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/DAX120_DIGITAL.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/DCZ1.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/DFROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/DFROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/DLC1.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/DLC2.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/DLF10.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/DLF11.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/DLF12.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/DLF13.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/DLF15.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/DLF8.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/DPA120 DIGITAL.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/DPA120_DIGITAL.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/Dch1.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/Dch2.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/Dch3.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/Dch4.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/Dchcz1.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/2062.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/225.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/2252.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/256.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/2562.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultra.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultraa.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/206/205/345/256/271d.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/206/205/345/256/271e.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/206/205/345/256/271en.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/206/205/345/256/271f.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/206/205/345/256/271p.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/206/205/345/256/271r.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/206/205/345/256/271tc.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/206/205/345/256/271x.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/212/250/347/224/273/350/201/224/345/212/250.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277d.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277e.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277en.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277f.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277p.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277r.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277tc.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277x.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277d.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277e.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277en.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277f.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277p.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277r.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277tc.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277x.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xy.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyd.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xye.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyen.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyf.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyp.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyr.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xytc.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyx.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yx.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxd.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxe.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxen.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxf.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxp.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxr.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxtc.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxx.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250d.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250e.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250en.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250f.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250p.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250r.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250tc.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250x.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/346/250/241/345/235/227/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272d.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272e.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272f.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272p.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272r.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272x.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227en.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227tc.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2501.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2502.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2503.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0CZTV.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0CZTVd.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0CZTVe.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0CZTVen.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0CZTVf.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0CZTVp.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0CZTVr.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0CZTVtc.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0CZTVx.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0M1.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0M2.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0M3.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0M4.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0M5.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0M5a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0M6.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230d.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230e.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230en.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230f.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230p.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230r.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230tc.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230x.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/346/222/255/346/224/276.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/346/232/202/345/201/234.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230d.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230e.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230en.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230f.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230p.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230r.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230tc.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230x.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257d.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257e.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257f.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257p.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257r.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257x.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271280X480.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X462.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227360X800.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227462X1920.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X1280.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X800.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X854.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227540X960.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X360.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X480.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227854X480.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227960X540.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P12H.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P240240.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P240320.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P24H.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P320240.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P320320.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/PDM.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/PDMY.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/PL0.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/PL1.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/PL2.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/PL3.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/PM1.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/PM1a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/PM2.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/PM2a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/PM3.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/PM3a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/PM4.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/PM4a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/PM5.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/PM5a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/PM6.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/PM6a.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/PMD.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/PYMD.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/344/277/235/345/255/230/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/207/217.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227b.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/212/240.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/217/226/350/211/262.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/220/270/347/256/241.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/233/276/347/211/207.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/234/206/345/275/242/345/205/263/351/227/255.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/234/206/345/275/242/347/241/256/345/256/232.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/244/232/351/200/211.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/244/232/351/200/211a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/256/275/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/257/274/345/205/245.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/257/274/345/207/272.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/345/270/256/345/212/251.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/346/225/260/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/346/225/260/346/215/256.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/346/226/207/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/346/227/213/350/275/254.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206A.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/205/263.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/274/200.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233180.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233270.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/23390.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a180.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a270.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a90.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b180.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b270.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b90.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206A.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/216/257H1.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/216/257H2.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/216/257H3.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/216/257H4.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/216/257H5.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/216/257H6.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/275/221/347/273/234.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/347/275/221/347/273/234/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/350/243/201/345/207/217.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/350/247/206/351/242/221.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/350/275/256/346/222/2551.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/350/275/256/346/222/2552.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/350/275/256/346/222/2553.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/350/275/256/346/222/2554.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/350/275/256/346/222/2555.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/350/275/256/346/222/2556.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/350/275/256/346/222/255/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/350/275/275/345/205/245/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/350/277/233/345/272/246/346/235/241.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206M.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206Ma.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210116X480.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210180X400.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210180X480.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210240X240.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210240X320.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210240X400.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210240X427.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210270X480.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210320X240.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320/345/234/206.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210360360/345/234/206.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210400X180.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210400X240.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210427X240.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X116.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X180.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X270.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480/345/234/206.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/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.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/P/351/253/230/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/p/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/ucBoFangQiKongZhi1.BackgroundImage.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/ucBoFangQiKongZhi1_BackgroundImage.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/ucVideoCut1.BackgroundImage.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/ucVideoCut1_BackgroundImage.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/ucXiTongXianShi1.BackgroundImage.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/ucXiTongXianShiAdd1.BackgroundImage.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/ucXiTongXianShiColor1.BackgroundImage.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/gui/ucXiTongXianShiTable1.BackgroundImage.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/icons/app.ico +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/icons/trcc.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/icons/trcc_128x128.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/icons/trcc_16x16.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/icons/trcc_24x24.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/icons/trcc_256x256.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/icons/trcc_32x32.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/icons/trcc_48x48.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/assets/icons/trcc_64x64.png +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/conf.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/core/__init__.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/core/controllers.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/core/models.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/install/__init__.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/__init__.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/assets.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/base.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/constants.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/eyedropper.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/pipewire_capture.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/qt_app_mvc.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/screen_capture.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/uc_about.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/uc_activity_sidebar.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/uc_color_wheel.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/uc_device.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/uc_image_cut.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/uc_info_module.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/uc_led_control.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/uc_preview.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/uc_screen_led.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/uc_sensor_picker.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/uc_seven_segment.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/uc_system_info.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/uc_theme_local.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/uc_theme_mask.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/uc_theme_setting.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/qt_components/uc_video_cut.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/services/__init__.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/services/device.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/services/display.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/services/image.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/services/led.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/services/media.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/services/overlay.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/services/system.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/src/trcc/services/theme.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/README.md +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/__init__.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/hid_testing/__init__.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/hid_testing/conftest.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/hid_testing/test_device_factory.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/hid_testing/test_device_hid.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/hid_testing/test_device_led.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/hid_testing/test_led_controller.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/run_tests.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_api.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_architecture.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_ax120_display.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_cli.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_controllers.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_dc_parser.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_dc_writer.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_debug_report.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_device_detector.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_device_implementations.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_device_lcd.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_device_led_kvm.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_device_scsi.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_hr10_display.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_integration.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_media_player.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_models.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_overlay_renderer.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_qt_base.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_qt_constants.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_qt_widgets.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_services.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_system_config.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_system_info.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_system_sensors.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_theme_cloud.py +0 -0
- {trcc_linux-4.1.1 → trcc_linux-4.2.2}/tests/test_theme_downloader.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: trcc-linux
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.2.2
|
|
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
|
|
@@ -220,7 +220,7 @@ rpm-ostree install sg3_utils && echo "Reboot now, then run the next block" && sy
|
|
|
220
220
|
```
|
|
221
221
|
After reboot:
|
|
222
222
|
```bash
|
|
223
|
-
python3 -m venv ~/trcc-env && source ~/trcc-env/bin/activate && pip install trcc-linux && sudo trcc setup-udev && trcc install-desktop
|
|
223
|
+
python3 -m venv ~/trcc-env && source ~/trcc-env/bin/activate && pip install trcc-linux && sudo trcc setup-udev && trcc setup-selinux && trcc install-desktop
|
|
224
224
|
```
|
|
225
225
|
Launch: `source ~/trcc-env/bin/activate && trcc gui`
|
|
226
226
|
|
|
@@ -277,6 +277,7 @@ trcc led-mode breathing # Set LED effect mode
|
|
|
277
277
|
trcc serve # Start REST API server
|
|
278
278
|
trcc setup # Interactive setup wizard (CLI)
|
|
279
279
|
trcc setup-gui # Setup wizard (GUI)
|
|
280
|
+
trcc setup-selinux # Install SELinux USB policy (Bazzite/Silverblue)
|
|
280
281
|
trcc doctor # Check system dependencies
|
|
281
282
|
trcc report # Generate diagnostic report
|
|
282
283
|
trcc setup-udev # Install udev rules
|
|
@@ -284,7 +285,7 @@ trcc install-desktop # Install app menu entry and icon
|
|
|
284
285
|
trcc uninstall # Remove TRCC completely
|
|
285
286
|
```
|
|
286
287
|
|
|
287
|
-
See the **[CLI Reference](doc/CLI_REFERENCE.md)** for all
|
|
288
|
+
See the **[CLI Reference](doc/CLI_REFERENCE.md)** for all 39 commands, options, and troubleshooting.
|
|
288
289
|
|
|
289
290
|
## Documentation
|
|
290
291
|
|
|
@@ -158,7 +158,7 @@ rpm-ostree install sg3_utils && echo "Reboot now, then run the next block" && sy
|
|
|
158
158
|
```
|
|
159
159
|
After reboot:
|
|
160
160
|
```bash
|
|
161
|
-
python3 -m venv ~/trcc-env && source ~/trcc-env/bin/activate && pip install trcc-linux && sudo trcc setup-udev && trcc install-desktop
|
|
161
|
+
python3 -m venv ~/trcc-env && source ~/trcc-env/bin/activate && pip install trcc-linux && sudo trcc setup-udev && trcc setup-selinux && trcc install-desktop
|
|
162
162
|
```
|
|
163
163
|
Launch: `source ~/trcc-env/bin/activate && trcc gui`
|
|
164
164
|
|
|
@@ -215,6 +215,7 @@ trcc led-mode breathing # Set LED effect mode
|
|
|
215
215
|
trcc serve # Start REST API server
|
|
216
216
|
trcc setup # Interactive setup wizard (CLI)
|
|
217
217
|
trcc setup-gui # Setup wizard (GUI)
|
|
218
|
+
trcc setup-selinux # Install SELinux USB policy (Bazzite/Silverblue)
|
|
218
219
|
trcc doctor # Check system dependencies
|
|
219
220
|
trcc report # Generate diagnostic report
|
|
220
221
|
trcc setup-udev # Install udev rules
|
|
@@ -222,7 +223,7 @@ trcc install-desktop # Install app menu entry and icon
|
|
|
222
223
|
trcc uninstall # Remove TRCC completely
|
|
223
224
|
```
|
|
224
225
|
|
|
225
|
-
See the **[CLI Reference](doc/CLI_REFERENCE.md)** for all
|
|
226
|
+
See the **[CLI Reference](doc/CLI_REFERENCE.md)** for all 39 commands, options, and troubleshooting.
|
|
226
227
|
|
|
227
228
|
## Documentation
|
|
228
229
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"""TRCC Linux version information."""
|
|
2
2
|
|
|
3
|
-
__version__ = "4.
|
|
3
|
+
__version__ = "4.2.2"
|
|
4
4
|
__version_info__ = tuple(int(x) for x in __version__.split("."))
|
|
5
5
|
|
|
6
6
|
# Version history:
|
|
@@ -131,3 +131,18 @@ __version_info__ = tuple(int(x) for x in __version__.split("."))
|
|
|
131
131
|
# 4.1.1 - Fix pyright error in setup wizard GUI (QLayoutItem.widget() optional
|
|
132
132
|
# narrowing). Update all docs for v4.1.0: adapters/ layout, setup wizard
|
|
133
133
|
# commands, current test count (2290), file references. 2290 tests.
|
|
134
|
+
# 4.2.0 - SELinux support: new `trcc setup-selinux` command installs USB policy
|
|
135
|
+
# module (trcc_usb.te) for Bazzite/Silverblue/Fedora SELinux systems.
|
|
136
|
+
# SELinux step in setup wizard (CLI + GUI). Fix bulk EBUSY on SELinux:
|
|
137
|
+
# detect silent detach_kernel_driver() blocking, skip set_configuration()
|
|
138
|
+
# if device already configured, clear error message. Distro-specific
|
|
139
|
+
# install hints for checkmodule/semodule_package. Fix CI workflows
|
|
140
|
+
# triggering on stable branch. 2300 tests.
|
|
141
|
+
# 4.2.1 - Fix bulk claim_interface EBUSY: retry with device reset on stale
|
|
142
|
+
# USB claims (crashed process, suspend/resume, device re-enumeration).
|
|
143
|
+
# Fix SELinux detection: detach_kernel_driver error path now correctly
|
|
144
|
+
# sets selinux_blocked flag for actionable error messages. 2303 tests.
|
|
145
|
+
# 4.2.2 - Fix gallery/masks empty for non-320x320 resolutions: 29 of 33
|
|
146
|
+
# web/zt archives had wrapping directory causing double nesting on
|
|
147
|
+
# extraction. Repacked all archives to uniform flat structure. Added
|
|
148
|
+
# _unwrap_nested_dir() safety net in extraction pipeline. 2308 tests.
|
|
@@ -91,51 +91,111 @@ class BulkDevice:
|
|
|
91
91
|
if dev is None:
|
|
92
92
|
raise RuntimeError(f"USB device {self.vid:04x}:{self.pid:04x} not found")
|
|
93
93
|
|
|
94
|
-
# Detach kernel
|
|
95
|
-
|
|
96
|
-
# is active yet. Try interfaces 0-3 (covers all known devices).
|
|
94
|
+
# Detach kernel drivers (best effort — SELinux may silently block this).
|
|
95
|
+
selinux_blocked = False
|
|
97
96
|
for i in range(4):
|
|
98
97
|
try:
|
|
99
98
|
if dev.is_kernel_driver_active(i): # type: ignore[union-attr]
|
|
100
99
|
dev.detach_kernel_driver(i) # type: ignore[union-attr]
|
|
101
|
-
|
|
102
|
-
|
|
100
|
+
# Verify detach actually worked (SELinux silently blocks it)
|
|
101
|
+
if dev.is_kernel_driver_active(i): # type: ignore[union-attr]
|
|
102
|
+
selinux_blocked = True
|
|
103
|
+
log.warning("Kernel driver still active on interface %d after "
|
|
104
|
+
"detach — SELinux may be blocking USB ioctls", i)
|
|
105
|
+
else:
|
|
106
|
+
log.debug("Detached kernel driver from interface %d", i)
|
|
107
|
+
except usb.core.USBError as e:
|
|
103
108
|
log.debug("Could not detach kernel driver from interface %d: %s", i, e)
|
|
109
|
+
# Check if driver is still active after the error — if so, SELinux
|
|
110
|
+
# likely blocked the ioctl (the error alone doesn't tell us).
|
|
111
|
+
try:
|
|
112
|
+
if dev.is_kernel_driver_active(i): # type: ignore[union-attr]
|
|
113
|
+
selinux_blocked = True
|
|
114
|
+
log.warning("Kernel driver still active on interface %d "
|
|
115
|
+
"after detach error — SELinux may be blocking", i)
|
|
116
|
+
except (usb.core.USBError, NotImplementedError):
|
|
117
|
+
pass
|
|
118
|
+
except NotImplementedError:
|
|
119
|
+
pass
|
|
104
120
|
|
|
121
|
+
# Skip set_configuration() if device already has an active config.
|
|
122
|
+
# On SELinux (Bazzite, Silverblue) detach_kernel_driver() is silently
|
|
123
|
+
# blocked, so set_configuration() always fails with EBUSY. The kernel
|
|
124
|
+
# has already configured the device — just use the existing config.
|
|
125
|
+
cfg = None
|
|
105
126
|
try:
|
|
106
|
-
dev.
|
|
127
|
+
cfg = dev.get_active_configuration() # type: ignore[union-attr]
|
|
128
|
+
log.debug("Device already configured, skipping set_configuration()")
|
|
107
129
|
except usb.core.USBError:
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
130
|
+
log.debug("No active configuration, calling set_configuration()")
|
|
131
|
+
try:
|
|
132
|
+
dev.set_configuration() # type: ignore[union-attr]
|
|
133
|
+
except usb.core.USBError:
|
|
134
|
+
log.warning("set_configuration() failed, resetting device and retrying")
|
|
135
|
+
dev.reset() # type: ignore[union-attr]
|
|
136
|
+
import time
|
|
137
|
+
time.sleep(0.5)
|
|
138
|
+
dev = usb.core.find(idVendor=self.vid, idProduct=self.pid)
|
|
139
|
+
if dev is None:
|
|
140
|
+
raise RuntimeError(
|
|
141
|
+
f"USB device {self.vid:04x}:{self.pid:04x} not found after reset"
|
|
142
|
+
)
|
|
143
|
+
for i in range(4):
|
|
144
|
+
try:
|
|
145
|
+
if dev.is_kernel_driver_active(i): # type: ignore[union-attr]
|
|
146
|
+
dev.detach_kernel_driver(i) # type: ignore[union-attr]
|
|
147
|
+
except (usb.core.USBError, NotImplementedError):
|
|
148
|
+
pass
|
|
149
|
+
dev.set_configuration() # type: ignore[union-attr]
|
|
150
|
+
cfg = dev.get_active_configuration() # type: ignore[union-attr]
|
|
151
|
+
|
|
152
|
+
# Prefer vendor-specific interface (bInterfaceClass=255)
|
|
153
|
+
intf = None
|
|
154
|
+
for candidate in cfg:
|
|
155
|
+
if candidate.bInterfaceClass == 255: # type: ignore[union-attr]
|
|
156
|
+
intf = candidate
|
|
157
|
+
break
|
|
158
|
+
if intf is None:
|
|
159
|
+
intf = cfg[(0, 0)] # type: ignore[index]
|
|
160
|
+
|
|
161
|
+
try:
|
|
162
|
+
usb.util.claim_interface(dev, intf.bInterfaceNumber) # type: ignore[union-attr]
|
|
163
|
+
except usb.core.USBError as e:
|
|
164
|
+
if e.errno != 16: # Not EBUSY — unknown error
|
|
165
|
+
raise
|
|
166
|
+
if selinux_blocked:
|
|
167
|
+
raise RuntimeError(
|
|
168
|
+
"USB interface busy — SELinux is blocking USB device access. "
|
|
169
|
+
"Run 'sudo trcc setup-selinux' to install the policy module, "
|
|
170
|
+
"then unplug and replug the device."
|
|
171
|
+
) from e
|
|
172
|
+
# EBUSY without SELinux — stale claim from crashed process, suspend,
|
|
173
|
+
# or device re-enumeration. Reset the device and retry once.
|
|
174
|
+
log.warning("claim_interface() EBUSY — resetting device and retrying")
|
|
111
175
|
dev.reset() # type: ignore[union-attr]
|
|
112
176
|
import time
|
|
113
177
|
time.sleep(0.5)
|
|
114
|
-
# Re-find after reset (handle is invalidated)
|
|
115
178
|
dev = usb.core.find(idVendor=self.vid, idProduct=self.pid)
|
|
116
179
|
if dev is None:
|
|
117
180
|
raise RuntimeError(
|
|
118
181
|
f"USB device {self.vid:04x}:{self.pid:04x} not found after reset"
|
|
119
|
-
)
|
|
182
|
+
) from e
|
|
120
183
|
for i in range(4):
|
|
121
184
|
try:
|
|
122
185
|
if dev.is_kernel_driver_active(i): # type: ignore[union-attr]
|
|
123
186
|
dev.detach_kernel_driver(i) # type: ignore[union-attr]
|
|
124
187
|
except (usb.core.USBError, NotImplementedError):
|
|
125
188
|
pass
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
intf = cfg[(0, 0)] # type: ignore[index]
|
|
137
|
-
|
|
138
|
-
usb.util.claim_interface(dev, intf.bInterfaceNumber) # type: ignore[union-attr]
|
|
189
|
+
# Re-acquire configuration and interface after reset
|
|
190
|
+
cfg = dev.get_active_configuration() # type: ignore[union-attr]
|
|
191
|
+
intf = None
|
|
192
|
+
for candidate in cfg:
|
|
193
|
+
if candidate.bInterfaceClass == 255: # type: ignore[union-attr]
|
|
194
|
+
intf = candidate
|
|
195
|
+
break
|
|
196
|
+
if intf is None:
|
|
197
|
+
intf = cfg[(0, 0)] # type: ignore[index]
|
|
198
|
+
usb.util.claim_interface(dev, intf.bInterfaceNumber) # type: ignore[union-attr]
|
|
139
199
|
|
|
140
200
|
self._ep_out = usb.util.find_descriptor(
|
|
141
201
|
intf,
|
|
@@ -342,6 +342,36 @@ class DataManager:
|
|
|
342
342
|
os.remove(tmp_path)
|
|
343
343
|
return False
|
|
344
344
|
|
|
345
|
+
# ------------------------------------------------------------------
|
|
346
|
+
# Post-extraction helpers
|
|
347
|
+
# ------------------------------------------------------------------
|
|
348
|
+
|
|
349
|
+
@staticmethod
|
|
350
|
+
def _unwrap_nested_dir(target_dir: str) -> None:
|
|
351
|
+
"""Flatten a single wrapping subdirectory after extraction.
|
|
352
|
+
|
|
353
|
+
Some .7z archives wrap all contents in a subdirectory matching the
|
|
354
|
+
archive name (e.g. ``1600720.7z`` → ``1600720/a001.png``). When
|
|
355
|
+
extracted to ``target_dir`` this creates double nesting. If
|
|
356
|
+
``target_dir`` contains exactly one entry and it's a directory,
|
|
357
|
+
move its contents up and remove the empty wrapper.
|
|
358
|
+
"""
|
|
359
|
+
try:
|
|
360
|
+
entries = os.listdir(target_dir)
|
|
361
|
+
except OSError:
|
|
362
|
+
return
|
|
363
|
+
if len(entries) != 1:
|
|
364
|
+
return
|
|
365
|
+
nested = os.path.join(target_dir, entries[0])
|
|
366
|
+
if not os.path.isdir(nested):
|
|
367
|
+
return
|
|
368
|
+
log.debug("Unwrapping nested directory: %s", nested)
|
|
369
|
+
for item in os.listdir(nested):
|
|
370
|
+
src = os.path.join(nested, item)
|
|
371
|
+
dst = os.path.join(target_dir, item)
|
|
372
|
+
shutil.move(src, dst)
|
|
373
|
+
os.rmdir(nested)
|
|
374
|
+
|
|
345
375
|
# ------------------------------------------------------------------
|
|
346
376
|
# Fetch + extract pipeline
|
|
347
377
|
# ------------------------------------------------------------------
|
|
@@ -381,6 +411,11 @@ class DataManager:
|
|
|
381
411
|
os.makedirs(user_dir, exist_ok=True)
|
|
382
412
|
ok = DataManager.extract_7z(archive, user_dir)
|
|
383
413
|
if ok:
|
|
414
|
+
# Some archives wrap contents in a single subdirectory that matches
|
|
415
|
+
# the target dir name (e.g. 1600720.7z contains 1600720/a001.png).
|
|
416
|
+
# This creates double nesting: user_dir/1600720/a001.png instead of
|
|
417
|
+
# user_dir/a001.png. Flatten if detected.
|
|
418
|
+
DataManager._unwrap_nested_dir(user_dir)
|
|
384
419
|
log.info("%s ready at %s", label, user_dir)
|
|
385
420
|
else:
|
|
386
421
|
log.warning("%s: extraction of %s failed", label, archive_name)
|
|
@@ -75,6 +75,15 @@ _INSTALL_MAP: dict[str, dict[str, str]] = {
|
|
|
75
75
|
'libxcb-cursor': {
|
|
76
76
|
'apt': 'libxcb-cursor0',
|
|
77
77
|
},
|
|
78
|
+
'checkmodule': {
|
|
79
|
+
'dnf': 'checkpolicy', 'apt': 'checkpolicy', 'pacman': 'checkpolicy',
|
|
80
|
+
'zypper': 'checkpolicy', 'rpm-ostree': 'checkpolicy',
|
|
81
|
+
},
|
|
82
|
+
'semodule_package': {
|
|
83
|
+
'dnf': 'policycoreutils', 'apt': 'semodule-utils',
|
|
84
|
+
'pacman': 'semodule-utils', 'zypper': 'policycoreutils',
|
|
85
|
+
'rpm-ostree': 'policycoreutils',
|
|
86
|
+
},
|
|
78
87
|
}
|
|
79
88
|
|
|
80
89
|
# sudo prefix per package manager
|
|
@@ -542,6 +551,57 @@ def check_udev() -> UdevResult:
|
|
|
542
551
|
return UdevResult(ok=True, message='udev rules installed')
|
|
543
552
|
|
|
544
553
|
|
|
554
|
+
@dataclass
|
|
555
|
+
class SelinuxResult:
|
|
556
|
+
"""Result of SELinux policy check."""
|
|
557
|
+
ok: bool
|
|
558
|
+
message: str
|
|
559
|
+
enforcing: bool = False
|
|
560
|
+
module_loaded: bool = False
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
def check_selinux() -> SelinuxResult:
|
|
564
|
+
"""Check if SELinux is enforcing and if trcc_usb policy module is loaded.
|
|
565
|
+
|
|
566
|
+
Returns ok=True when no action is needed: SELinux absent, permissive,
|
|
567
|
+
disabled, or enforcing with the trcc_usb module already loaded.
|
|
568
|
+
"""
|
|
569
|
+
import subprocess
|
|
570
|
+
|
|
571
|
+
# Check if SELinux is present and enforcing
|
|
572
|
+
try:
|
|
573
|
+
r = subprocess.run(
|
|
574
|
+
['getenforce'], capture_output=True, text=True, timeout=5,
|
|
575
|
+
)
|
|
576
|
+
status = r.stdout.strip().lower()
|
|
577
|
+
except FileNotFoundError:
|
|
578
|
+
return SelinuxResult(ok=True, message='SELinux not installed')
|
|
579
|
+
except Exception:
|
|
580
|
+
return SelinuxResult(ok=True, message='SELinux status unknown')
|
|
581
|
+
|
|
582
|
+
if status != 'enforcing':
|
|
583
|
+
return SelinuxResult(ok=True, message=f'SELinux {status} (no policy needed)')
|
|
584
|
+
|
|
585
|
+
# SELinux is enforcing — check if trcc_usb module is loaded
|
|
586
|
+
try:
|
|
587
|
+
r = subprocess.run(
|
|
588
|
+
['semodule', '-l'], capture_output=True, text=True, timeout=10,
|
|
589
|
+
)
|
|
590
|
+
loaded = 'trcc_usb' in r.stdout
|
|
591
|
+
except (FileNotFoundError, Exception):
|
|
592
|
+
loaded = False
|
|
593
|
+
|
|
594
|
+
if loaded:
|
|
595
|
+
return SelinuxResult(
|
|
596
|
+
ok=True, message='SELinux enforcing — trcc_usb module loaded',
|
|
597
|
+
enforcing=True, module_loaded=True,
|
|
598
|
+
)
|
|
599
|
+
return SelinuxResult(
|
|
600
|
+
ok=False, message='SELinux enforcing — USB policy not installed',
|
|
601
|
+
enforcing=True, module_loaded=False,
|
|
602
|
+
)
|
|
603
|
+
|
|
604
|
+
|
|
545
605
|
def check_desktop_entry() -> bool:
|
|
546
606
|
"""Check if .desktop file is installed."""
|
|
547
607
|
from pathlib import Path
|
|
@@ -611,6 +671,17 @@ def run_doctor() -> int:
|
|
|
611
671
|
if not _check_udev_rules():
|
|
612
672
|
all_ok = False
|
|
613
673
|
|
|
674
|
+
# SELinux
|
|
675
|
+
se = check_selinux()
|
|
676
|
+
if se.enforcing:
|
|
677
|
+
print()
|
|
678
|
+
if se.ok:
|
|
679
|
+
print(f" {_OK} {se.message}")
|
|
680
|
+
else:
|
|
681
|
+
print(f" {_MISS} {se.message}")
|
|
682
|
+
print(" run: sudo trcc setup-selinux")
|
|
683
|
+
all_ok = False
|
|
684
|
+
|
|
614
685
|
# Summary
|
|
615
686
|
print()
|
|
616
687
|
if all_ok:
|
|
@@ -362,6 +362,12 @@ def _cmd_setup_udev(
|
|
|
362
362
|
return SystemCommands.setup_udev(dry_run=dry_run)
|
|
363
363
|
|
|
364
364
|
|
|
365
|
+
@app.command("setup-selinux")
|
|
366
|
+
def _cmd_setup_selinux() -> int:
|
|
367
|
+
"""Install SELinux policy module for USB device access."""
|
|
368
|
+
return SystemCommands.setup_selinux()
|
|
369
|
+
|
|
370
|
+
|
|
365
371
|
@app.command("install-desktop")
|
|
366
372
|
def _cmd_install_desktop() -> int:
|
|
367
373
|
"""Install application menu entry and icon."""
|
|
@@ -2112,6 +2118,110 @@ class SystemCommands:
|
|
|
2112
2118
|
print(f"Error: {e}")
|
|
2113
2119
|
return 1
|
|
2114
2120
|
|
|
2121
|
+
@staticmethod
|
|
2122
|
+
def setup_selinux():
|
|
2123
|
+
"""Install SELinux policy module allowing USB device access.
|
|
2124
|
+
|
|
2125
|
+
Compiles trcc_usb.te → .mod → .pp, then loads via semodule.
|
|
2126
|
+
Required on SELinux-enforcing systems (Bazzite, Silverblue) where
|
|
2127
|
+
detach_kernel_driver() is silently blocked.
|
|
2128
|
+
"""
|
|
2129
|
+
import shutil
|
|
2130
|
+
import tempfile
|
|
2131
|
+
|
|
2132
|
+
# Must be root
|
|
2133
|
+
if os.geteuid() != 0:
|
|
2134
|
+
return _sudo_reexec("setup-selinux")
|
|
2135
|
+
|
|
2136
|
+
# Check if SELinux is enforcing
|
|
2137
|
+
try:
|
|
2138
|
+
r = subprocess.run(
|
|
2139
|
+
["getenforce"], capture_output=True, text=True, timeout=5,
|
|
2140
|
+
)
|
|
2141
|
+
status = r.stdout.strip().lower()
|
|
2142
|
+
except FileNotFoundError:
|
|
2143
|
+
print("SELinux not installed — nothing to do.")
|
|
2144
|
+
return 0
|
|
2145
|
+
|
|
2146
|
+
if status != 'enforcing':
|
|
2147
|
+
print(f"SELinux is {status} — no policy needed.")
|
|
2148
|
+
return 0
|
|
2149
|
+
|
|
2150
|
+
# Check if already loaded
|
|
2151
|
+
try:
|
|
2152
|
+
r = subprocess.run(
|
|
2153
|
+
["semodule", "-l"], capture_output=True, text=True, timeout=10,
|
|
2154
|
+
)
|
|
2155
|
+
if 'trcc_usb' in r.stdout:
|
|
2156
|
+
print("SELinux module trcc_usb already loaded.")
|
|
2157
|
+
return 0
|
|
2158
|
+
except FileNotFoundError:
|
|
2159
|
+
print("semodule not found — cannot manage SELinux policies.")
|
|
2160
|
+
return 1
|
|
2161
|
+
|
|
2162
|
+
# Check for checkmodule and semodule_package
|
|
2163
|
+
from trcc.adapters.infra.doctor import _detect_pkg_manager, _install_hint
|
|
2164
|
+
pm = _detect_pkg_manager()
|
|
2165
|
+
|
|
2166
|
+
missing: list[str] = []
|
|
2167
|
+
for tool in ('checkmodule', 'semodule_package'):
|
|
2168
|
+
if not shutil.which(tool):
|
|
2169
|
+
missing.append(tool)
|
|
2170
|
+
if missing:
|
|
2171
|
+
for tool in missing:
|
|
2172
|
+
print(f" {tool} not found — {_install_hint(tool, pm)}")
|
|
2173
|
+
return 1
|
|
2174
|
+
|
|
2175
|
+
# Find .te source (shipped in package data)
|
|
2176
|
+
te_src = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'data', 'trcc_usb.te')
|
|
2177
|
+
if not os.path.isfile(te_src):
|
|
2178
|
+
print(f"SELinux policy source not found: {te_src}")
|
|
2179
|
+
return 1
|
|
2180
|
+
|
|
2181
|
+
# Compile and install in temp directory
|
|
2182
|
+
try:
|
|
2183
|
+
with tempfile.TemporaryDirectory() as tmp:
|
|
2184
|
+
import shutil as sh
|
|
2185
|
+
te_path = os.path.join(tmp, 'trcc_usb.te')
|
|
2186
|
+
mod_path = os.path.join(tmp, 'trcc_usb.mod')
|
|
2187
|
+
pp_path = os.path.join(tmp, 'trcc_usb.pp')
|
|
2188
|
+
|
|
2189
|
+
sh.copy2(te_src, te_path)
|
|
2190
|
+
|
|
2191
|
+
# checkmodule -M -m -o trcc_usb.mod trcc_usb.te
|
|
2192
|
+
r = subprocess.run(
|
|
2193
|
+
['checkmodule', '-M', '-m', '-o', mod_path, te_path],
|
|
2194
|
+
capture_output=True, text=True,
|
|
2195
|
+
)
|
|
2196
|
+
if r.returncode != 0:
|
|
2197
|
+
print(f"checkmodule failed: {r.stderr.strip()}")
|
|
2198
|
+
return 1
|
|
2199
|
+
|
|
2200
|
+
# semodule_package -o trcc_usb.pp -m trcc_usb.mod
|
|
2201
|
+
r = subprocess.run(
|
|
2202
|
+
['semodule_package', '-o', pp_path, '-m', mod_path],
|
|
2203
|
+
capture_output=True, text=True,
|
|
2204
|
+
)
|
|
2205
|
+
if r.returncode != 0:
|
|
2206
|
+
print(f"semodule_package failed: {r.stderr.strip()}")
|
|
2207
|
+
return 1
|
|
2208
|
+
|
|
2209
|
+
# semodule -i trcc_usb.pp
|
|
2210
|
+
r = subprocess.run(
|
|
2211
|
+
['semodule', '-i', pp_path],
|
|
2212
|
+
capture_output=True, text=True,
|
|
2213
|
+
)
|
|
2214
|
+
if r.returncode != 0:
|
|
2215
|
+
print(f"semodule install failed: {r.stderr.strip()}")
|
|
2216
|
+
return 1
|
|
2217
|
+
|
|
2218
|
+
print("Installed SELinux module trcc_usb (USB device access for TRCC).")
|
|
2219
|
+
return 0
|
|
2220
|
+
|
|
2221
|
+
except Exception as e:
|
|
2222
|
+
print(f"Error installing SELinux policy: {e}")
|
|
2223
|
+
return 1
|
|
2224
|
+
|
|
2115
2225
|
@staticmethod
|
|
2116
2226
|
def install_desktop():
|
|
2117
2227
|
"""Install .desktop menu entry and icon for app launchers.
|
|
@@ -2302,6 +2412,7 @@ StartupWMClass=trcc-linux
|
|
|
2302
2412
|
from trcc.adapters.infra.doctor import (
|
|
2303
2413
|
check_desktop_entry,
|
|
2304
2414
|
check_gpu,
|
|
2415
|
+
check_selinux,
|
|
2305
2416
|
check_system_deps,
|
|
2306
2417
|
check_udev,
|
|
2307
2418
|
get_setup_info,
|
|
@@ -2312,8 +2423,8 @@ StartupWMClass=trcc-linux
|
|
|
2312
2423
|
|
|
2313
2424
|
actions: list[str] = []
|
|
2314
2425
|
|
|
2315
|
-
# ── Step 1/
|
|
2316
|
-
print(" Step 1/
|
|
2426
|
+
# ── Step 1/5: System dependencies ────────────────────────────
|
|
2427
|
+
print(" Step 1/5: System dependencies")
|
|
2317
2428
|
deps = check_system_deps(info.pkg_manager)
|
|
2318
2429
|
missing_required: list[str] = []
|
|
2319
2430
|
missing_optional: list[str] = []
|
|
@@ -2351,8 +2462,8 @@ StartupWMClass=trcc-linux
|
|
|
2351
2462
|
|
|
2352
2463
|
print()
|
|
2353
2464
|
|
|
2354
|
-
# ── Step 2/
|
|
2355
|
-
print(" Step 2/
|
|
2465
|
+
# ── Step 2/5: GPU detection ──────────────────────────────────
|
|
2466
|
+
print(" Step 2/5: GPU detection")
|
|
2356
2467
|
gpus = check_gpu()
|
|
2357
2468
|
if not gpus:
|
|
2358
2469
|
print(" [--] No discrete GPU detected")
|
|
@@ -2375,8 +2486,8 @@ StartupWMClass=trcc-linux
|
|
|
2375
2486
|
print(f" [!!] pip failed (exit {result.returncode})")
|
|
2376
2487
|
print()
|
|
2377
2488
|
|
|
2378
|
-
# ── Step 3/
|
|
2379
|
-
print(" Step 3/
|
|
2489
|
+
# ── Step 3/5: USB device permissions ─────────────────────────
|
|
2490
|
+
print(" Step 3/5: USB device permissions")
|
|
2380
2491
|
udev = check_udev()
|
|
2381
2492
|
if udev.ok:
|
|
2382
2493
|
print(f" [OK] {udev.message}")
|
|
@@ -2392,8 +2503,26 @@ StartupWMClass=trcc-linux
|
|
|
2392
2503
|
print(" [!!] udev setup failed")
|
|
2393
2504
|
print()
|
|
2394
2505
|
|
|
2395
|
-
# ── Step 4/
|
|
2396
|
-
|
|
2506
|
+
# ── Step 4/5: SELinux policy ───────────────────────────────────
|
|
2507
|
+
se = check_selinux()
|
|
2508
|
+
if se.enforcing:
|
|
2509
|
+
print(" Step 4/5: SELinux policy")
|
|
2510
|
+
if se.ok:
|
|
2511
|
+
print(f" [OK] {se.message}")
|
|
2512
|
+
else:
|
|
2513
|
+
print(f" [!!] {se.message}")
|
|
2514
|
+
if SystemCommands._confirm(
|
|
2515
|
+
"Install SELinux USB policy? (requires sudo)", auto_yes,
|
|
2516
|
+
):
|
|
2517
|
+
rc = SystemCommands.setup_selinux()
|
|
2518
|
+
if rc == 0:
|
|
2519
|
+
actions.append("Installed SELinux policy")
|
|
2520
|
+
else:
|
|
2521
|
+
print(" [!!] SELinux setup failed")
|
|
2522
|
+
print()
|
|
2523
|
+
|
|
2524
|
+
# ── Step 5/5: Desktop integration ────────────────────────────
|
|
2525
|
+
print(" Step 5/5: Desktop integration")
|
|
2397
2526
|
if check_desktop_entry():
|
|
2398
2527
|
print(" [OK] Application menu entry installed")
|
|
2399
2528
|
else:
|
|
@@ -206,7 +206,9 @@ class SetupWizard(QWidget):
|
|
|
206
206
|
self._rows.clear()
|
|
207
207
|
while self._checks_lay.count():
|
|
208
208
|
item = self._checks_lay.takeAt(0)
|
|
209
|
-
|
|
209
|
+
if item is None:
|
|
210
|
+
continue
|
|
211
|
+
w = item.widget()
|
|
210
212
|
if w is not None:
|
|
211
213
|
w.deleteLater()
|
|
212
214
|
|
|
@@ -243,6 +245,7 @@ class SetupWizard(QWidget):
|
|
|
243
245
|
from trcc.adapters.infra.doctor import (
|
|
244
246
|
check_desktop_entry,
|
|
245
247
|
check_gpu,
|
|
248
|
+
check_selinux,
|
|
246
249
|
check_system_deps,
|
|
247
250
|
check_udev,
|
|
248
251
|
get_setup_info,
|
|
@@ -283,8 +286,22 @@ class SetupWizard(QWidget):
|
|
|
283
286
|
install_cmd=udev_cmd,
|
|
284
287
|
)
|
|
285
288
|
|
|
286
|
-
# Step 5 —
|
|
287
|
-
|
|
289
|
+
# Step 5 — SELinux (only shown when enforcing)
|
|
290
|
+
se = check_selinux()
|
|
291
|
+
if se.enforcing:
|
|
292
|
+
self._section('Step 5: SELinux Policy')
|
|
293
|
+
se_cmd = (
|
|
294
|
+
'' if se.ok
|
|
295
|
+
else 'sudo ' + self._trcc_prefix() + ' setup-selinux'
|
|
296
|
+
)
|
|
297
|
+
self._add_dep(
|
|
298
|
+
'SELinux USB policy', se.ok, True,
|
|
299
|
+
note='' if se.ok else se.message,
|
|
300
|
+
install_cmd=se_cmd,
|
|
301
|
+
)
|
|
302
|
+
|
|
303
|
+
# Step 6 — desktop entry
|
|
304
|
+
self._section('Step 6: Desktop Integration')
|
|
288
305
|
desk = check_desktop_entry()
|
|
289
306
|
desk_cmd = '' if desk else self._trcc_prefix() + ' install-desktop'
|
|
290
307
|
self._add_dep(
|
|
@@ -153,6 +153,7 @@ class UCThemeWeb(DownloadableThemeBrowser):
|
|
|
153
153
|
return
|
|
154
154
|
from ..adapters.infra.data_repository import DataManager
|
|
155
155
|
DataManager.extract_7z(str(archive), str(self.web_directory))
|
|
156
|
+
DataManager._unwrap_nested_dir(str(self.web_directory))
|
|
156
157
|
|
|
157
158
|
def load_themes(self):
|
|
158
159
|
"""Load cloud themes from preview PNGs in Web directory.
|