trcc-linux 8.4.0__tar.gz → 8.4.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-8.4.0 → trcc_linux-8.4.2}/PKG-INFO +12 -11
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/README.md +8 -8
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/pyproject.toml +5 -2
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/__version__.py +1 -1
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/bulk.py +2 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/detector.py +26 -3
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/hid.py +4 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/ly.py +2 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/scsi.py +4 -1
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/infra/debug_report.py +18 -10
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/cli/_device.py +14 -12
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/core/models.py +2 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/trcc_app.py +19 -9
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/device/test_bulk.py +24 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/device/test_hid.py +27 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/device/test_ly.py +10 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/infra/test_debug_report.py +15 -7
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/cli/test_system.py +11 -11
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/core/test_lcd_device.py +3 -3
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/core/test_models.py +27 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/test_integration.py +5 -5
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/.gitignore +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/LICENSE +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/__main__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/_usb_helpers.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/bsd/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/bsd/detector.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/bsd/scsi.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/factory.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/frame.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/lcd.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/led.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/led_kvm.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/led_segment.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/macos/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/macos/detector.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/macos/scsi.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/windows/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/windows/detector.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/device/windows/scsi.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/infra/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/infra/binary_reader.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/infra/data_repository.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/infra/dc_config.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/infra/dc_parser.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/infra/dc_writer.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/infra/doctor.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/infra/font_resolver.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/infra/media_player.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/infra/network.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/infra/theme_cloud.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/infra/theme_downloader.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/render/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/render/pil.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/render/qt.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/system/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/system/bsd/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/system/bsd/hardware.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/system/bsd/sensors.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/system/config.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/system/hardware.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/system/macos/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/system/macos/hardware.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/system/macos/sensors.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/system/sensors.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/system/windows/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/system/windows/hardware.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/adapters/system/windows/sensors.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/api/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/api/devices.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/api/display.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/api/i18n.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/api/led.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/api/models.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/api/system.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/api/themes.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/com.github.lexonight1.trcc.policy +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/fonts/MSYH.TTC +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/fonts/MSYHBD.TTC +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/fonts/README.md +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/240240.gif +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/240320.gif +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/320240.gif +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/320320.gif +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A0/345/220/257/345/212/250/347/225/214/351/235/242.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A0/346/225/260/346/215/256/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A0/347/241/254/344/273/266/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1AK120 Digital.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1AK120 Digitala.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1AK120_Digital.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1AK120_Digitala.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1AS120 VISION.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1AS120 VISIONa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1AS120_VISION.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1AS120_VISIONa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1AX120 DIGITAL.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1AX120 DIGITALa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1AX120_DIGITAL.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1AX120_DIGITALa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1BA120 VISION.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1BA120 VISIONa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1BA120_VISION.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1BA120_VISIONa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1CORE VISION.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1CORE VISIONa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1CORE_VISION.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1CORE_VISIONa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1CZ1.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1CZ1a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1CZ2.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1CZ2a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1CZTV.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1CZTVa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1ELITE VISION.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1ELITE VISIONa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1ELITE_VISION.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1ELITE_VISIONa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN HORIZON PRO.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN HORIZON PROa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN MAGIC PRO.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN MAGIC PROa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN VISION V2.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN VISION V2a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN WARFRAME PRO.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN WARFRAME PROa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN WARFRAME SE.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN WARFRAME SEa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN WARFRAME.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN WARFRAMEa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN_HORIZON_PROa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN_MAGIC_PROa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN_VISION_V2.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN_VISION_V2a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN_WARFRAME.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PRO.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PROa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SE.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SEa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1FROZEN_WARFRAMEa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1GRAND VISION.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1GRAND VISIONa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1GRAND_VISION.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1GRAND_VISIONa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITAL.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITALa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1HYPER VISION.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1HYPER VISIONa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1HYPER_VISION.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1HYPER_VISIONa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1KVMALEDC6.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1KVMALEDC6a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LC1.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LC1a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LC2.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LC2JD.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LC2JDa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LC2a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LC3.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LC3a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LC5.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LC5a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LC7.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LC7a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LC8.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LC8a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LC9.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LC9a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LD10.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LD10a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LD6.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LD6a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LD7.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LD7a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LD8.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LD8a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LD9.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LD9a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF10.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF10V.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF10Va.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF10a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF11.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF11a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF12.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF12a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF13.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF13a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF14.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF14a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF15.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF15a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF16.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF167.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF16a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF17a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF18.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF18a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF19.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF19a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF20.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF20a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF21.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF21a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF22.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF22a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF25.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF25a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF8.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LF8a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LM16SE.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LM16SEa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LM19SE.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LM19SEa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LM22.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LM22a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LM24.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LM24a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LM26.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LM26a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LM27.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LM27a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LM30.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1LM30a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1Mjolnir VISION PRO.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1Mjolnir VISION PROa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1Mjolnir VISION.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1Mjolnir VISIONa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1Mjolnir_VISION.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1Mjolnir_VISION_PRO.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1Mjolnir_VISION_PROa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1Mjolnir_VISIONa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1PA120 DIGITAL.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1PA120 DIGITALa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1PA120_DIGITAL.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1PA120_DIGITALa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1PC1.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1PC1a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1RK120 DIGITAL.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1RK120 DIGITALa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1RK120_DIGITAL.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1RK120_DIGITALa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1RP130 VISION.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1RP130 VISIONa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1RP130_VISION.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1RP130_VISIONa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1Stream Vision.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1Stream Visiona.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1Stream_Vision.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1Stream_Visiona.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A1/345/205/263/344/272/216a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A2_update_overlay.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A2/347/253/213/345/215/263/346/233/264/346/226/260.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/Acpu.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/Adram.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/Afan.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/Agpu.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/Ahdd.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/Alogout/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/Alogout/351/273/230/350/256/244.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/Anet.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/App_about.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/App_form.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/App_main.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/App_sysinfo.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/App_theme_base.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/App_theme_gallery.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A/344/270/212/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A/344/270/213/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A/345/242/236/345/212/240/346/225/260/347/273/204.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A/346/225/260/346/215/256/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A/346/273/232/345/212/250/346/235/241.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/A/350/207/252/345/256/232/344/271/211.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0CZ1.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0CZ1d.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0CZ1e.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0CZ1en.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0CZ1f.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0CZ1h.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0CZ1p.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0CZ1r.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0CZ1tc.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0CZ1x.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0KVMA/347/201/257/346/216/247.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LC1.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LC1d.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LC1e.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LC1en.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LC1f.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LC1h.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LC1p.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LC1r.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LC1tc.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LC1x.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LC2.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LC2d.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LC2e.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LC2en.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LC2f.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LC2h.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LC2p.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LC2r.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LC2tc.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LC2x.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF10.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF10d.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF10e.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF10en.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF10f.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF10h.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF10p.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF10r.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF10tc.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF10x.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF11.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF11d.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF11e.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF11en.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF11f.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF11h.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF11p.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF11r.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF11tc.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF11x.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF12.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF12d.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF12e.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF12en.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF12f.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF12h.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF12p.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF12r.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF12tc.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF12x.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF13.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF13d.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF13e.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF13en.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF13f.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF13h.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF13p.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF13r.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF13tc.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF13x.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF15.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF15d.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF15e.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF15en.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF15f.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF15h.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF15p.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF15r.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF15tc.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF15x.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF8.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF8d.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF8e.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF8en.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF8f.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF8h.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF8p.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF8r.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF8tc.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0LF8x.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0rgblf13.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237h.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217d.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217e.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217en.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217f.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217h.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217p.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217r.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217tc.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217x.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D1/345/244/264/347/233/2241.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D1/345/244/264/347/233/2242.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D1/345/244/264/347/233/2243.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D1/345/244/264/347/233/2244.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D1/345/244/264/347/233/2245.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2111.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21110.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21110a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21111.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21111a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21112.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21112a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2111a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2112.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2112a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2113.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2113a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2114.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2114a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2115.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2115a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2116.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2116a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2117.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2117a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2118.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2118a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2119.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2119a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D3/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D3/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D3/345/274/200/345/205/263b.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D3/346/227/213/351/222/256.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D3/346/227/213/351/222/2560.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D3/346/251/231.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D3/346/271/226.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D3/347/231/275.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D3/347/264/253.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D3/347/272/242.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D3/347/273/277.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D3/350/223/235.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D3/351/273/204.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/345/274/200/346/234/272.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/345/274/200/346/234/272a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2561.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2561a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2562a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2563.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2563a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2564.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2564a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2171.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2171a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2172.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2172a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2173.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2173a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2174.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2174a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2175.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2175a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2176.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2176a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/DAK120_DIGITAL.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/DAX120_DIGITAL.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/DCZ1.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/DFROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/DFROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/DLC1.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/DLC2.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/DLF10.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/DLF11.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/DLF12.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/DLF13.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/DLF15.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/DLF8.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/DPA120 DIGITAL.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/DPA120_DIGITAL.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/Dch1.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/Dch2.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/Dch3.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/Dch4.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/Dchcz1.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/2062.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/225.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/2252.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/256.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/2562.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217d.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217e.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217en.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217f.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217h.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217p.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217r.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217tc.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217x.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultra.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultraa.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/344/272/256/345/272/246/350/260/203/346/225/264.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/345/212/250/347/224/273/350/201/224/345/212/250.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217d.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217e.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217en.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217f.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217p.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217r.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217tc.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217x.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/346/250/241/345/235/227/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227en.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227tc.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2501.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2502.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2503.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0M1.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0M2.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0M3.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0M4.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0M5.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0M5a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0M6.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217110480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217160480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/21732086.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480110.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480160.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/21786320.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/346/222/255/346/224/276.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/346/232/202/345/201/234.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217110480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217160480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/21732086.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480110.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480160.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/350/243/201/345/207/21786320.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271280X480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X440.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X462.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227320X960.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227360X800.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227440X1920.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227462X1920.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X1280.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X800.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X854.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227540X960.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X360.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227854X480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227960X320.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227960X540.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P12H.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P240240.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P240320.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P24H.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P320240.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P320320.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/PDM.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/PDMY.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/PL0.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/PL1.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/PL2.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/PL3.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/PM1.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/PM1a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/PM2.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/PM2a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/PM3.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/PM3a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/PM4.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/PM4a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/PM5.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/PM5a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/PM6.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/PM6a.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/PMD.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/PYMD.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/Panel_background.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/Panel_overlay.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/Panel_params.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/344/272/256/345/272/246/346/235/241.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/344/277/235/345/255/230/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/207/217.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227b.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/212/240.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/217/226/350/211/262.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/220/270/347/256/241.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/233/276/346/240/207.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/233/276/347/211/207.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/234/206/345/275/242/345/205/263/351/227/255.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/234/206/345/275/242/347/241/256/345/256/232.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/345/233/276/346/240/207.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/226/207/346/234/2541.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/245/346/234/2371.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/266/351/227/2641.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/230/237/346/234/2371.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/244/232/351/200/211.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/244/232/351/200/211a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/256/275/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/257/274/345/205/245.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/257/274/345/207/272.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/270/256/345/212/251.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/345/277/253/346/215/267/346/226/271/345/274/217/345/244/247/345/260/217/346/273/221/345/212/250/346/235/241.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/346/225/260/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/346/225/260/346/215/256.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/346/226/207/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/346/227/213/350/275/254.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206A.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/346/267/273/345/212/240/351/223/276/346/216/2451.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/205/263.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/274/200.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233180.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233270.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/23390.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a180.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a270.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a90.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b180.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b270.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b90.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206A.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/216/257H1.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/216/257H2.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/216/257H3.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/216/257H4.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/216/257H5.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/216/257H6.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/272/277/347/250/213/345/215/225.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/272/277/347/250/213/345/244/232.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/275/221/347/273/234.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/347/275/221/347/273/234/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/350/243/201/345/207/217.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/350/247/206/351/242/221.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/350/275/256/346/222/2551.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/350/275/256/346/222/2552.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/350/275/256/346/222/2553.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/350/275/256/346/222/2554.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/350/275/256/346/222/2555.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/350/275/256/346/222/2556.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/350/275/256/346/222/255/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/350/275/275/345/205/245/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/350/277/233/345/272/246/346/235/241.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206M.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206Ma.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210110X480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210116X480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210160X480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210180X400.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210180X480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210240X240.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210240X320.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210240X400.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210240X427.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210270X480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210320X240.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320/345/234/206.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210320X86.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210360360/345/234/206.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210400X180.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210400X240.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210427X240.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X110.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X116.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X160.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X180.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X270.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480/345/234/206.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/21086X320.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.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-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/P/351/253/230/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257h.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/p/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/ucBoFangQiKongZhi1.BackgroundImage.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/ucBoFangQiKongZhi1_BackgroundImage.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/ucVideoCut1.BackgroundImage.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/ucVideoCut1_BackgroundImage.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/ucXiTongXianShi1.BackgroundImage.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/ucXiTongXianShiAdd1.BackgroundImage.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/ucXiTongXianShiColor1.BackgroundImage.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/gui/ucXiTongXianShiTable1.BackgroundImage.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/icons/app.ico +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/icons/trcc.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/icons/trcc_128x128.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/icons/trcc_16x16.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/icons/trcc_24x24.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/icons/trcc_256x256.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/icons/trcc_32x32.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/icons/trcc_48x48.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/icons/trcc_64x64.png +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/trcc-linux.desktop +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/assets/trcc-quirk-fix.service +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/cli/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/cli/__main__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/cli/_diag.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/cli/_display.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/cli/_led.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/cli/_system.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/cli/_theme.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/conf.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/core/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/core/builder.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/core/color.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/core/encoding.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/core/i18n.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/core/instance.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/core/lcd_device.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/core/led_device.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/core/led_segment.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/core/paths.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/core/perf.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/core/platform.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/core/ports.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/data/trcc_usb.te +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/install/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/install/gui.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/ipc.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/assets.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/base.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/color_and_add_panels.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/constants.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/display_mode_panels.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/eyedropper.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/lcd_handler.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/metrics_mediator.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/overlay_element.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/overlay_grid.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/pipewire_capture.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/screen_capture.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/uc_about.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/uc_activity_sidebar.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/uc_color_wheel.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/uc_device.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/uc_image_cut.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/uc_info_module.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/uc_led_control.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/uc_preview.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/uc_screen_led.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/uc_sensor_picker.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/uc_system_info.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/uc_theme_local.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/uc_theme_mask.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/uc_theme_setting.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/uc_theme_web.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/qt_components/uc_video_cut.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/services/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/services/device.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/services/display.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/services/image.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/services/led.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/services/led_config.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/services/led_effects.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/services/media.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/services/overlay.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/services/perf.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/services/renderer.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/services/system.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/services/theme.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/services/theme_loader.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/services/theme_persistence.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/src/trcc/services/video_cache.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/README.md +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/device/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/device/conftest.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/device/test_bsd_detector.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/device/test_bsd_scsi.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/device/test_detector.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/device/test_factory.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/device/test_frame.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/device/test_implementations.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/device/test_lcd.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/device/test_led.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/device/test_led_kvm.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/device/test_macos_detector.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/device/test_macos_scsi.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/device/test_scsi.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/device/test_windows_detector.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/device/test_windows_scsi.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/infra/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/infra/test_data_repository.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/infra/test_dc_config.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/infra/test_dc_parser.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/infra/test_dc_writer.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/infra/test_doctor.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/infra/test_media_player.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/infra/test_theme_cloud.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/infra/test_theme_downloader.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/system/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/system/test_bsd_hardware.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/system/test_bsd_sensors.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/system/test_config.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/system/test_hardware.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/system/test_macos_hardware.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/system/test_macos_sensors.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/system/test_sensors.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/system/test_windows_hardware.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/adapters/system/test_windows_sensors.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/api/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/api/test_api.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/api/test_api_security.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/cli/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/cli/test_cli.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/cli/test_device.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/cli/test_display.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/cli/test_led.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/cli/test_serve.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/cli/test_theme.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/conftest.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/core/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/core/test_builder.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/core/test_color.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/core/test_encoding.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/core/test_i18n.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/core/test_instance.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/core/test_led_device.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/core/test_led_segment.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/core/test_led_segment_ax120.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/core/test_paths.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/core/test_perf.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/core/test_proxy_factory.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/qt_components/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/qt_components/test_base.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/qt_components/test_base_panel.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/qt_components/test_constants.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/qt_components/test_lcd_handler.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/qt_components/test_lcd_visual.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/qt_components/test_led_control.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/qt_components/test_led_visual.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/qt_components/test_misc.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/qt_components/test_preview.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/qt_components/test_screen_capture.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/qt_components/test_theme_mask.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/qt_components/test_theme_setting.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/qt_components/test_trcc_app.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/qt_components/test_widgets.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/services/__init__.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/services/conftest.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/services/test_device.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/services/test_display_integration.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/services/test_image_ansi.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/services/test_led.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/services/test_led_config.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/services/test_led_effects.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/services/test_media.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/services/test_overlay.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/services/test_perf.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/services/test_services.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/services/test_system.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/services/test_theme.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/services/test_theme_loader.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/services/test_theme_persistence.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/services/test_video_cache.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/test_architecture.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/test_conf.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/test_cpu.py +0 -0
- {trcc_linux-8.4.0 → trcc_linux-8.4.2}/tests/test_memory.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: trcc-linux
|
|
3
|
-
Version: 8.4.
|
|
3
|
+
Version: 8.4.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
|
|
@@ -29,6 +29,7 @@ Requires-Dist: numpy>=1.24.0
|
|
|
29
29
|
Requires-Dist: pillow>=10.0.0
|
|
30
30
|
Requires-Dist: psutil>=5.9.0
|
|
31
31
|
Requires-Dist: pyside6>=6.5.0
|
|
32
|
+
Requires-Dist: python-multipart>=0.0.6
|
|
32
33
|
Requires-Dist: pyusb>=1.2.0
|
|
33
34
|
Requires-Dist: typer>=0.9.0
|
|
34
35
|
Requires-Dist: uvicorn[standard]>=0.20
|
|
@@ -40,7 +41,6 @@ Requires-Dist: nvidia-ml-py>=11.0.0; extra == 'all'
|
|
|
40
41
|
Requires-Dist: pygobject>=3.42.0; extra == 'all'
|
|
41
42
|
Requires-Dist: pytest-cov>=4.0.0; extra == 'all'
|
|
42
43
|
Requires-Dist: pytest>=7.0.0; extra == 'all'
|
|
43
|
-
Requires-Dist: python-multipart>=0.0.6; extra == 'all'
|
|
44
44
|
Requires-Dist: qrcode>=7.0; extra == 'all'
|
|
45
45
|
Requires-Dist: ruff>=0.4.0; extra == 'all'
|
|
46
46
|
Requires-Dist: types-qrcode>=7.0; extra == 'all'
|
|
@@ -48,7 +48,6 @@ Provides-Extra: dev
|
|
|
48
48
|
Requires-Dist: httpx>=0.24.0; extra == 'dev'
|
|
49
49
|
Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
|
|
50
50
|
Requires-Dist: pytest>=7.0.0; extra == 'dev'
|
|
51
|
-
Requires-Dist: python-multipart>=0.0.6; extra == 'dev'
|
|
52
51
|
Requires-Dist: ruff>=0.4.0; extra == 'dev'
|
|
53
52
|
Requires-Dist: types-qrcode>=7.0; extra == 'dev'
|
|
54
53
|
Provides-Extra: hid
|
|
@@ -60,6 +59,8 @@ Requires-Dist: qrcode>=7.0; extra == 'remote'
|
|
|
60
59
|
Provides-Extra: wayland
|
|
61
60
|
Requires-Dist: dbus-python>=1.3.0; extra == 'wayland'
|
|
62
61
|
Requires-Dist: pygobject>=3.42.0; extra == 'wayland'
|
|
62
|
+
Provides-Extra: windows
|
|
63
|
+
Requires-Dist: wmi>=1.5.1; (sys_platform == 'win32') and extra == 'windows'
|
|
63
64
|
Description-Content-Type: text/markdown
|
|
64
65
|
|
|
65
66
|
# TRCC Linux
|
|
@@ -76,7 +77,7 @@ Description-Content-Type: text/markdown
|
|
|
76
77
|
[](https://github.com/Lexonight1/thermalright-trcc-linux)
|
|
77
78
|
|
|
78
79
|
[](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
|
|
79
|
-
[](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
|
|
80
81
|
[](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
|
|
81
82
|
[](https://python.org)
|
|
82
83
|
[](https://docs.astral.sh/ruff/)
|
|
@@ -124,13 +125,13 @@ Pre-built packages are available for every major distro. No pip, no venv, no PEP
|
|
|
124
125
|
|
|
125
126
|
**Fedora / openSUSE / Nobara:**
|
|
126
127
|
```bash
|
|
127
|
-
sudo dnf install https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest/download/trcc-linux-8.4.
|
|
128
|
+
sudo dnf install https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest/download/trcc-linux-8.4.2-1.fc43.noarch.rpm
|
|
128
129
|
```
|
|
129
130
|
|
|
130
131
|
**Ubuntu 24.04+ / Debian 13+ / Mint 22+ / Pop!_OS 24.04+ / Zorin 17+:**
|
|
131
132
|
```bash
|
|
132
|
-
curl -LO https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest/download/trcc-linux_8.4.
|
|
133
|
-
sudo dpkg -i trcc-linux_8.4.
|
|
133
|
+
curl -LO https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest/download/trcc-linux_8.4.2-1_all.deb
|
|
134
|
+
sudo dpkg -i trcc-linux_8.4.2-1_all.deb
|
|
134
135
|
sudo apt-get install -f # pulls in any missing dependencies
|
|
135
136
|
```
|
|
136
137
|
|
|
@@ -138,8 +139,8 @@ sudo apt-get install -f # pulls in any missing dependencies
|
|
|
138
139
|
|
|
139
140
|
**Arch / CachyOS / Manjaro / EndeavourOS / Garuda:**
|
|
140
141
|
```bash
|
|
141
|
-
curl -LO https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest/download/trcc-linux-8.4.
|
|
142
|
-
sudo pacman -U trcc-linux-8.4.
|
|
142
|
+
curl -LO https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest/download/trcc-linux-8.4.2-1-any.pkg.tar.zst
|
|
143
|
+
sudo pacman -U trcc-linux-8.4.2-1-any.pkg.tar.zst
|
|
143
144
|
```
|
|
144
145
|
|
|
145
146
|
**NixOS** — add to your `flake.nix` inputs:
|
|
@@ -164,7 +165,7 @@ That's it! If your device isn't detected, run `trcc detect --all` to see what's
|
|
|
164
165
|
|
|
165
166
|
### Windows (experimental)
|
|
166
167
|
|
|
167
|
-
Download `trcc-8.4.
|
|
168
|
+
Download `trcc-8.4.2-setup.exe` from the [latest release](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest) and run the installer. It installs both the GUI and CLI:
|
|
168
169
|
|
|
169
170
|
- **TRCC** shortcut in Start Menu — launches the GUI
|
|
170
171
|
- **`trcc`** command in Command Prompt/PowerShell — CLI access (installer adds it to PATH)
|
|
@@ -173,7 +174,7 @@ Download `trcc-8.4.0-setup.exe` from the [latest release](https://github.com/Lex
|
|
|
173
174
|
|
|
174
175
|
### macOS (experimental)
|
|
175
176
|
|
|
176
|
-
Download `trcc-8.4.
|
|
177
|
+
Download `trcc-8.4.2-macos.dmg` from the [latest release](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest), open the DMG, and drag **TRCC** to Applications.
|
|
177
178
|
|
|
178
179
|
> Requires macOS 11+. Install `libusb` first: `brew install libusb`. LCD devices using SCSI (most models) need `sudo` to detach the kernel driver — HID devices work without root. On Apple Silicon Macs, sensor reading requires `sudo` for `powermetrics` access.
|
|
179
180
|
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
[](https://github.com/Lexonight1/thermalright-trcc-linux)
|
|
13
13
|
|
|
14
14
|
[](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
|
|
15
|
-
[](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
|
|
16
16
|
[](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
|
|
17
17
|
[](https://python.org)
|
|
18
18
|
[](https://docs.astral.sh/ruff/)
|
|
@@ -60,13 +60,13 @@ Pre-built packages are available for every major distro. No pip, no venv, no PEP
|
|
|
60
60
|
|
|
61
61
|
**Fedora / openSUSE / Nobara:**
|
|
62
62
|
```bash
|
|
63
|
-
sudo dnf install https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest/download/trcc-linux-8.4.
|
|
63
|
+
sudo dnf install https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest/download/trcc-linux-8.4.2-1.fc43.noarch.rpm
|
|
64
64
|
```
|
|
65
65
|
|
|
66
66
|
**Ubuntu 24.04+ / Debian 13+ / Mint 22+ / Pop!_OS 24.04+ / Zorin 17+:**
|
|
67
67
|
```bash
|
|
68
|
-
curl -LO https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest/download/trcc-linux_8.4.
|
|
69
|
-
sudo dpkg -i trcc-linux_8.4.
|
|
68
|
+
curl -LO https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest/download/trcc-linux_8.4.2-1_all.deb
|
|
69
|
+
sudo dpkg -i trcc-linux_8.4.2-1_all.deb
|
|
70
70
|
sudo apt-get install -f # pulls in any missing dependencies
|
|
71
71
|
```
|
|
72
72
|
|
|
@@ -74,8 +74,8 @@ sudo apt-get install -f # pulls in any missing dependencies
|
|
|
74
74
|
|
|
75
75
|
**Arch / CachyOS / Manjaro / EndeavourOS / Garuda:**
|
|
76
76
|
```bash
|
|
77
|
-
curl -LO https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest/download/trcc-linux-8.4.
|
|
78
|
-
sudo pacman -U trcc-linux-8.4.
|
|
77
|
+
curl -LO https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest/download/trcc-linux-8.4.2-1-any.pkg.tar.zst
|
|
78
|
+
sudo pacman -U trcc-linux-8.4.2-1-any.pkg.tar.zst
|
|
79
79
|
```
|
|
80
80
|
|
|
81
81
|
**NixOS** — add to your `flake.nix` inputs:
|
|
@@ -100,7 +100,7 @@ That's it! If your device isn't detected, run `trcc detect --all` to see what's
|
|
|
100
100
|
|
|
101
101
|
### Windows (experimental)
|
|
102
102
|
|
|
103
|
-
Download `trcc-8.4.
|
|
103
|
+
Download `trcc-8.4.2-setup.exe` from the [latest release](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest) and run the installer. It installs both the GUI and CLI:
|
|
104
104
|
|
|
105
105
|
- **TRCC** shortcut in Start Menu — launches the GUI
|
|
106
106
|
- **`trcc`** command in Command Prompt/PowerShell — CLI access (installer adds it to PATH)
|
|
@@ -109,7 +109,7 @@ Download `trcc-8.4.0-setup.exe` from the [latest release](https://github.com/Lex
|
|
|
109
109
|
|
|
110
110
|
### macOS (experimental)
|
|
111
111
|
|
|
112
|
-
Download `trcc-8.4.
|
|
112
|
+
Download `trcc-8.4.2-macos.dmg` from the [latest release](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest), open the DMG, and drag **TRCC** to Applications.
|
|
113
113
|
|
|
114
114
|
> Requires macOS 11+. Install `libusb` first: `brew install libusb`. LCD devices using SCSI (most models) need `sudo` to detach the kernel driver — HID devices work without root. On Apple Silicon Macs, sensor reading requires `sudo` for `powermetrics` access.
|
|
115
115
|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "trcc-linux"
|
|
7
|
-
version = "8.4.
|
|
7
|
+
version = "8.4.2"
|
|
8
8
|
description = "Linux implementation of Thermalright LCD Control Center"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "GPL-3.0-or-later"
|
|
@@ -38,6 +38,7 @@ dependencies = [
|
|
|
38
38
|
"typer>=0.9.0",
|
|
39
39
|
"fastapi>=0.100",
|
|
40
40
|
"uvicorn[standard]>=0.20",
|
|
41
|
+
"python-multipart>=0.0.6",
|
|
41
42
|
]
|
|
42
43
|
|
|
43
44
|
[project.optional-dependencies]
|
|
@@ -48,6 +49,9 @@ wayland = [
|
|
|
48
49
|
"dbus-python>=1.3.0",
|
|
49
50
|
"PyGObject>=3.42.0",
|
|
50
51
|
]
|
|
52
|
+
windows = [
|
|
53
|
+
"wmi>=1.5.1; sys_platform == 'win32'",
|
|
54
|
+
]
|
|
51
55
|
hid = [
|
|
52
56
|
"hidapi>=0.14.0",
|
|
53
57
|
]
|
|
@@ -59,7 +63,6 @@ dev = [
|
|
|
59
63
|
"pytest-cov>=4.0.0",
|
|
60
64
|
"ruff>=0.4.0",
|
|
61
65
|
"httpx>=0.24.0",
|
|
62
|
-
"python-multipart>=0.0.6",
|
|
63
66
|
"types-qrcode>=7.0",
|
|
64
67
|
]
|
|
65
68
|
all = [
|
|
@@ -35,6 +35,7 @@ from trcc.core.models import (
|
|
|
35
35
|
DetectedDevice, # noqa: F401 — re-export
|
|
36
36
|
DeviceEntry, # noqa: F401 — re-export
|
|
37
37
|
)
|
|
38
|
+
from trcc.core.platform import BSD, MACOS, WINDOWS
|
|
38
39
|
|
|
39
40
|
log = logging.getLogger(__name__)
|
|
40
41
|
|
|
@@ -611,13 +612,35 @@ def main():
|
|
|
611
612
|
return 0
|
|
612
613
|
|
|
613
614
|
|
|
614
|
-
# Aliases used by cli/, __init__.py, and tests
|
|
615
|
+
# Aliases used by cli/, __init__.py, and tests.
|
|
616
|
+
# Platform-aware: route to the correct detector based on OS.
|
|
615
617
|
_get_all_devices = DeviceDetector._get_all_registries
|
|
616
|
-
detect_devices = DeviceDetector.detect
|
|
617
618
|
check_udev_rules = DeviceDetector.check_udev_rules
|
|
618
|
-
get_default_device = DeviceDetector.get_default
|
|
619
619
|
get_device_path = DeviceDetector.get_device_path
|
|
620
620
|
|
|
621
|
+
if WINDOWS:
|
|
622
|
+
from trcc.adapters.device.windows.detector import WindowsDeviceDetector
|
|
623
|
+
detect_devices = WindowsDeviceDetector.detect
|
|
624
|
+
elif MACOS:
|
|
625
|
+
from trcc.adapters.device.macos.detector import MacOSDeviceDetector
|
|
626
|
+
detect_devices = MacOSDeviceDetector.detect
|
|
627
|
+
elif BSD:
|
|
628
|
+
from trcc.adapters.device.bsd.detector import BSDDeviceDetector
|
|
629
|
+
detect_devices = BSDDeviceDetector.detect
|
|
630
|
+
else:
|
|
631
|
+
detect_devices = DeviceDetector.detect
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
def get_default_device() -> 'Optional[DetectedDevice]':
|
|
635
|
+
"""Get the first available LCD device (platform-aware)."""
|
|
636
|
+
devices = detect_devices()
|
|
637
|
+
if not devices:
|
|
638
|
+
return None
|
|
639
|
+
for device in devices:
|
|
640
|
+
if device.vid == 0x87CD:
|
|
641
|
+
return device
|
|
642
|
+
return devices[0]
|
|
643
|
+
|
|
621
644
|
|
|
622
645
|
if __name__ == '__main__':
|
|
623
646
|
import sys
|
|
@@ -347,6 +347,8 @@ class HidDeviceType2(HidDevice):
|
|
|
347
347
|
resolution=resolution,
|
|
348
348
|
model_id=pm,
|
|
349
349
|
serial=serial,
|
|
350
|
+
pm_byte=pm,
|
|
351
|
+
sub_byte=sub,
|
|
350
352
|
raw_response=bytes(resp[:64]),
|
|
351
353
|
device_type=2,
|
|
352
354
|
mode_byte_1=pm,
|
|
@@ -502,6 +504,8 @@ class HidDeviceType3(HidDevice):
|
|
|
502
504
|
resolution=resolution,
|
|
503
505
|
model_id=fbl,
|
|
504
506
|
serial=serial,
|
|
507
|
+
pm_byte=fbl,
|
|
508
|
+
sub_byte=0,
|
|
505
509
|
raw_response=bytes(resp[:64]),
|
|
506
510
|
device_type=3,
|
|
507
511
|
mode_byte_1=fbl,
|
|
@@ -16,7 +16,6 @@ from __future__ import annotations
|
|
|
16
16
|
|
|
17
17
|
import binascii
|
|
18
18
|
import ctypes
|
|
19
|
-
import fcntl
|
|
20
19
|
import logging
|
|
21
20
|
import os
|
|
22
21
|
import struct
|
|
@@ -128,6 +127,8 @@ def _get_write_bufs(cdb_len: int, data_len: int) -> tuple:
|
|
|
128
127
|
|
|
129
128
|
def _sg_io_write(dev: str, cdb: bytes, data: bytes) -> bool:
|
|
130
129
|
"""SCSI write via SG_IO ioctl. No subprocess, no temp file."""
|
|
130
|
+
import fcntl # Unix-only — Windows uses windows/scsi.py
|
|
131
|
+
|
|
131
132
|
fd = _get_device_fd(dev)
|
|
132
133
|
|
|
133
134
|
cdb_buf, data_buf, _sense, hdr, ioctl_buf = _get_write_bufs(len(cdb), len(data))
|
|
@@ -144,6 +145,8 @@ def _sg_io_write(dev: str, cdb: bytes, data: bytes) -> bool:
|
|
|
144
145
|
|
|
145
146
|
def _sg_io_read(dev: str, cdb: bytes, length: int) -> bytes:
|
|
146
147
|
"""SCSI read via SG_IO ioctl. No subprocess."""
|
|
148
|
+
import fcntl # Unix-only — Windows uses windows/scsi.py
|
|
149
|
+
|
|
147
150
|
fd = _get_device_fd(dev)
|
|
148
151
|
|
|
149
152
|
cdb_buf = (ctypes.c_ubyte * len(cdb)).from_buffer_copy(cdb)
|
|
@@ -21,6 +21,8 @@ import subprocess
|
|
|
21
21
|
from dataclasses import dataclass, field
|
|
22
22
|
from pathlib import Path
|
|
23
23
|
|
|
24
|
+
from trcc.core.platform import LINUX
|
|
25
|
+
|
|
24
26
|
log = logging.getLogger(__name__)
|
|
25
27
|
|
|
26
28
|
# All known Thermalright VIDs (lowercase hex, no prefix)
|
|
@@ -51,13 +53,15 @@ class DebugReport:
|
|
|
51
53
|
def collect(self) -> None:
|
|
52
54
|
"""Gather all diagnostic sections."""
|
|
53
55
|
self._version()
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
56
|
+
if LINUX:
|
|
57
|
+
self._lsusb()
|
|
58
|
+
self._udev_rules()
|
|
59
|
+
self._selinux()
|
|
60
|
+
self._rapl_permissions()
|
|
58
61
|
self._dependencies()
|
|
59
62
|
self._devices()
|
|
60
|
-
|
|
63
|
+
if LINUX:
|
|
64
|
+
self._device_permissions()
|
|
61
65
|
self._handshakes()
|
|
62
66
|
self._process_usage()
|
|
63
67
|
self._config()
|
|
@@ -99,7 +103,9 @@ class DebugReport:
|
|
|
99
103
|
|
|
100
104
|
@staticmethod
|
|
101
105
|
def _distro_name() -> str:
|
|
102
|
-
"""Get
|
|
106
|
+
"""Get OS/distro name (e.g. 'Fedora 43', 'Windows 11')."""
|
|
107
|
+
if not LINUX:
|
|
108
|
+
return platform.platform()
|
|
103
109
|
try:
|
|
104
110
|
# Python 3.10+ — pyright may not know about this on older stubs
|
|
105
111
|
info: dict[str, str] = platform.freedesktop_os_release() # type: ignore[attr-defined]
|
|
@@ -189,9 +195,9 @@ class DebugReport:
|
|
|
189
195
|
def _devices(self) -> None:
|
|
190
196
|
sec = self._add("Detected devices")
|
|
191
197
|
try:
|
|
192
|
-
from trcc.adapters.device.detector import
|
|
198
|
+
from trcc.adapters.device.detector import detect_devices
|
|
193
199
|
|
|
194
|
-
devices =
|
|
200
|
+
devices = detect_devices()
|
|
195
201
|
self._detected_devices = devices
|
|
196
202
|
if not devices:
|
|
197
203
|
sec.lines.append(" (none)")
|
|
@@ -464,7 +470,8 @@ class DebugReport:
|
|
|
464
470
|
f" Result: None ({error or 'no response'})")
|
|
465
471
|
return
|
|
466
472
|
sec.lines.append(
|
|
467
|
-
f" PM={result.
|
|
473
|
+
f" PM={result.pm_byte}, SUB={result.sub_byte}, "
|
|
474
|
+
f"FBL={result.model_id}, resolution={result.resolution}, "
|
|
468
475
|
f"serial={result.serial}"
|
|
469
476
|
)
|
|
470
477
|
if result.raw_response:
|
|
@@ -512,7 +519,8 @@ class DebugReport:
|
|
|
512
519
|
f" Result: None ({error or 'no response'})")
|
|
513
520
|
return
|
|
514
521
|
sec.lines.append(
|
|
515
|
-
f" PM={result.
|
|
522
|
+
f" PM={result.pm_byte}, SUB={result.sub_byte}, "
|
|
523
|
+
f"FBL={result.model_id}, resolution={result.resolution}, "
|
|
516
524
|
f"serial={result.serial}"
|
|
517
525
|
)
|
|
518
526
|
if result.raw_response:
|
|
@@ -180,18 +180,20 @@ def detect(show_all=False):
|
|
|
180
180
|
dev = devices[0]
|
|
181
181
|
print(f"Active: {_format(dev, probe=True)}")
|
|
182
182
|
|
|
183
|
-
# Check for stale/missing udev rules
|
|
184
|
-
from trcc.core.
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
183
|
+
# Check for stale/missing udev rules (Linux only)
|
|
184
|
+
from trcc.core.platform import LINUX
|
|
185
|
+
if LINUX:
|
|
186
|
+
from trcc.core.models import PROTOCOL_TRAITS
|
|
187
|
+
|
|
188
|
+
for dev in devices:
|
|
189
|
+
if not check_udev_rules(dev):
|
|
190
|
+
msg = f"\nDevice {dev.vid:04x}:{dev.pid:04x} needs updated udev rules.\n"
|
|
191
|
+
msg += "Run: sudo trcc setup-udev"
|
|
192
|
+
traits = PROTOCOL_TRAITS.get(dev.protocol, PROTOCOL_TRAITS['scsi'])
|
|
193
|
+
if traits.requires_reboot:
|
|
194
|
+
msg += "\nThen reboot for the USB storage quirk to take effect."
|
|
195
|
+
print(msg)
|
|
196
|
+
break
|
|
195
197
|
|
|
196
198
|
return 0
|
|
197
199
|
|
|
@@ -396,6 +396,8 @@ class HandshakeResult:
|
|
|
396
396
|
resolution: Optional[Tuple[int, int]] = None
|
|
397
397
|
model_id: int = 0
|
|
398
398
|
serial: str = ""
|
|
399
|
+
pm_byte: int = 0 # Raw PM from handshake (for button image lookup)
|
|
400
|
+
sub_byte: int = 0 # Raw SUB from handshake (for button image lookup)
|
|
399
401
|
raw_response: bytes = field(default=b"", repr=False)
|
|
400
402
|
|
|
401
403
|
|
|
@@ -1259,7 +1259,10 @@ class TRCCApp(QMainWindow):
|
|
|
1259
1259
|
resolution = getattr(result, 'resolution', None)
|
|
1260
1260
|
fbl = getattr(result, 'fbl', None) or getattr(
|
|
1261
1261
|
result, 'model_id', None)
|
|
1262
|
-
|
|
1262
|
+
pm = getattr(result, 'pm_byte', 0)
|
|
1263
|
+
sub = getattr(result, 'sub_byte', 0)
|
|
1264
|
+
self._handshake_done.emit(
|
|
1265
|
+
device, (resolution, fbl, pm, sub))
|
|
1263
1266
|
else:
|
|
1264
1267
|
self._handshake_done.emit(device, None)
|
|
1265
1268
|
except Exception as e:
|
|
@@ -1272,21 +1275,22 @@ class TRCCApp(QMainWindow):
|
|
|
1272
1275
|
if not data:
|
|
1273
1276
|
self.uc_preview.set_status("Handshake failed — replug device")
|
|
1274
1277
|
return
|
|
1275
|
-
resolution, fbl = data
|
|
1278
|
+
resolution, fbl, pm, sub = data
|
|
1276
1279
|
if not resolution or resolution == (0, 0):
|
|
1277
1280
|
self.uc_preview.set_status("Handshake failed — no resolution")
|
|
1278
1281
|
return
|
|
1279
|
-
log.info("Handshake OK: %s -> %s (FBL=%s
|
|
1282
|
+
log.info("Handshake OK: %s -> %s (FBL=%s, PM=%s, SUB=%s)",
|
|
1283
|
+
device.path, resolution, fbl, pm, sub)
|
|
1280
1284
|
device.resolution = resolution
|
|
1281
1285
|
if fbl:
|
|
1282
1286
|
device.fbl_code = fbl
|
|
1283
|
-
self._resolve_device_identity(device, fbl)
|
|
1287
|
+
self._resolve_device_identity(device, pm or fbl, sub)
|
|
1284
1288
|
# use_jpeg is computed from protocol + fbl — no propagation needed
|
|
1285
1289
|
self._on_device_selected(device)
|
|
1286
1290
|
|
|
1287
|
-
def _resolve_device_identity(self, device: DeviceInfo,
|
|
1291
|
+
def _resolve_device_identity(self, device: DeviceInfo, pm: int, sub: int = 0):
|
|
1288
1292
|
from ..core.models import get_button_image
|
|
1289
|
-
btn_img = get_button_image(
|
|
1293
|
+
btn_img = get_button_image(pm, sub)
|
|
1290
1294
|
if not btn_img:
|
|
1291
1295
|
return
|
|
1292
1296
|
product = btn_img.replace('A1', '', 1).replace('_', ' ')
|
|
@@ -1928,10 +1932,16 @@ def _lock_path() -> Path:
|
|
|
1928
1932
|
|
|
1929
1933
|
|
|
1930
1934
|
def _acquire_instance_lock() -> object | None:
|
|
1931
|
-
import
|
|
1935
|
+
from trcc.core.platform import WINDOWS
|
|
1932
1936
|
try:
|
|
1933
|
-
|
|
1934
|
-
|
|
1937
|
+
if WINDOWS:
|
|
1938
|
+
import msvcrt # pyright: ignore[reportMissingImports]
|
|
1939
|
+
fh = open(_lock_path(), "w") # noqa: SIM115
|
|
1940
|
+
msvcrt.locking(fh.fileno(), msvcrt.LK_NBLCK, 1) # pyright: ignore[reportAttributeAccessIssue]
|
|
1941
|
+
else:
|
|
1942
|
+
import fcntl
|
|
1943
|
+
fh = open(_lock_path(), "w") # noqa: SIM115
|
|
1944
|
+
fcntl.flock(fh, fcntl.LOCK_EX | fcntl.LOCK_NB)
|
|
1935
1945
|
fh.write(str(os.getpid()))
|
|
1936
1946
|
fh.flush()
|
|
1937
1947
|
return fh
|
|
@@ -455,6 +455,30 @@ class TestBulkDeviceHandshake(unittest.TestCase):
|
|
|
455
455
|
bd.handshake()
|
|
456
456
|
self.assertFalse(bd.use_jpeg)
|
|
457
457
|
|
|
458
|
+
def test_handshake_pm_byte_and_sub_byte_on_result(self):
|
|
459
|
+
"""HandshakeResult carries raw PM + SUB for button image lookup (#69)."""
|
|
460
|
+
bd = self._setup_device()
|
|
461
|
+
resp = _make_handshake_response(pm=7, sub=1)
|
|
462
|
+
bd._ep_in.read.return_value = resp
|
|
463
|
+
|
|
464
|
+
result = bd.handshake()
|
|
465
|
+
|
|
466
|
+
self.assertEqual(result.pm_byte, 7)
|
|
467
|
+
self.assertEqual(result.sub_byte, 1)
|
|
468
|
+
# model_id is FBL (64), NOT the raw PM
|
|
469
|
+
self.assertEqual(result.model_id, 64)
|
|
470
|
+
|
|
471
|
+
def test_handshake_pm_byte_differs_from_fbl(self):
|
|
472
|
+
"""PM=7 → FBL=64 — pm_byte must be the raw PM, not FBL (#69)."""
|
|
473
|
+
bd = self._setup_device()
|
|
474
|
+
resp = _make_handshake_response(pm=7, sub=0)
|
|
475
|
+
bd._ep_in.read.return_value = resp
|
|
476
|
+
|
|
477
|
+
result = bd.handshake()
|
|
478
|
+
|
|
479
|
+
self.assertEqual(result.pm_byte, 7)
|
|
480
|
+
self.assertNotEqual(result.pm_byte, result.model_id)
|
|
481
|
+
|
|
458
482
|
def test_handshake_opens_device_if_needed(self):
|
|
459
483
|
"""If _dev is None, handshake calls _open() first."""
|
|
460
484
|
bd = BulkDevice(0x87AD, 0x70DB)
|
|
@@ -288,6 +288,21 @@ class TestType2Handshake:
|
|
|
288
288
|
assert info.mode_byte_1 == 0x99
|
|
289
289
|
assert info.mode_byte_2 == 0x42
|
|
290
290
|
|
|
291
|
+
def test_handshake_pm_byte_and_sub_byte(self):
|
|
292
|
+
"""Type 2: pm_byte/sub_byte carry raw PM+SUB for button image (#69)."""
|
|
293
|
+
transport = _make_mock_transport()
|
|
294
|
+
resp = bytearray(_make_type2_valid_response())
|
|
295
|
+
resp[4] = 1 # SUB
|
|
296
|
+
resp[5] = 7 # PM
|
|
297
|
+
transport.read.return_value = bytes(resp)
|
|
298
|
+
transport.write.return_value = TYPE2_INIT_SIZE
|
|
299
|
+
|
|
300
|
+
dev = HidDeviceType2(transport)
|
|
301
|
+
info = dev.handshake()
|
|
302
|
+
|
|
303
|
+
assert info.pm_byte == 7
|
|
304
|
+
assert info.sub_byte == 1
|
|
305
|
+
|
|
291
306
|
def test_handshake_timing(self):
|
|
292
307
|
"""Verify C# Sleep(50) + Sleep(200) timing is called."""
|
|
293
308
|
transport = _make_mock_transport()
|
|
@@ -577,6 +592,18 @@ class TestType3Handshake:
|
|
|
577
592
|
assert dev.device_info is info
|
|
578
593
|
assert info.fbl == 101
|
|
579
594
|
|
|
595
|
+
def test_handshake_pm_byte_equals_fbl(self):
|
|
596
|
+
"""Type 3: pm_byte=fbl (PM=FBL for Type 3 devices, #69)."""
|
|
597
|
+
transport = _make_mock_transport()
|
|
598
|
+
transport.read.return_value = _make_type3_valid_response(0x66)
|
|
599
|
+
transport.write.return_value = TYPE3_INIT_SIZE
|
|
600
|
+
|
|
601
|
+
dev = HidDeviceType3(transport)
|
|
602
|
+
info = dev.handshake()
|
|
603
|
+
|
|
604
|
+
assert info.pm_byte == 101 # 0x66 - 1
|
|
605
|
+
assert info.sub_byte == 0
|
|
606
|
+
|
|
580
607
|
def test_handshake_timing(self):
|
|
581
608
|
"""Verify C# Sleep(50) + Sleep(200) timing is called."""
|
|
582
609
|
transport = _make_mock_transport()
|
|
@@ -174,6 +174,16 @@ class TestLyDeviceHandshake(unittest.TestCase):
|
|
|
174
174
|
d.handshake()
|
|
175
175
|
self.assertTrue(d.use_jpeg)
|
|
176
176
|
|
|
177
|
+
def test_handshake_pm_byte_and_sub_byte(self):
|
|
178
|
+
"""HandshakeResult carries raw PM + SUB for button image lookup (#69)."""
|
|
179
|
+
d = self._setup()
|
|
180
|
+
d._ep_in.read.return_value = _make_ly_response(pm_byte_20=1, pm_byte_22=2)
|
|
181
|
+
result = d.handshake()
|
|
182
|
+
|
|
183
|
+
self.assertEqual(result.pm_byte, 65) # 64 + 1
|
|
184
|
+
self.assertEqual(result.sub_byte, 3) # resp[22]+1
|
|
185
|
+
self.assertEqual(result.model_id, 192) # FBL
|
|
186
|
+
|
|
177
187
|
|
|
178
188
|
class TestLyDeviceSendFrame(unittest.TestCase):
|
|
179
189
|
def _setup(self, pid=_PID_LY):
|
|
@@ -275,7 +275,7 @@ class TestDependenciesExtra:
|
|
|
275
275
|
class TestDevicesExtra:
|
|
276
276
|
"""_devices extra coverage."""
|
|
277
277
|
|
|
278
|
-
@patch("trcc.adapters.device.detector.
|
|
278
|
+
@patch("trcc.adapters.device.detector.detect_devices",
|
|
279
279
|
side_effect=RuntimeError("usb error"))
|
|
280
280
|
def test_detect_raises(self, _):
|
|
281
281
|
"""Exception from detect() is caught gracefully."""
|
|
@@ -284,7 +284,7 @@ class TestDevicesExtra:
|
|
|
284
284
|
_, body = _section(rpt)
|
|
285
285
|
assert "detect failed" in body
|
|
286
286
|
|
|
287
|
-
@patch("trcc.adapters.device.detector.
|
|
287
|
+
@patch("trcc.adapters.device.detector.detect_devices")
|
|
288
288
|
def test_scsi_device_shows_scsi_path(self, mock_detect):
|
|
289
289
|
"""SCSI device uses scsi_device path in output."""
|
|
290
290
|
dev = MagicMock()
|
|
@@ -301,7 +301,7 @@ class TestDevicesExtra:
|
|
|
301
301
|
assert "/dev/sg0" in body
|
|
302
302
|
assert "SCSI" in body
|
|
303
303
|
|
|
304
|
-
@patch("trcc.adapters.device.detector.
|
|
304
|
+
@patch("trcc.adapters.device.detector.detect_devices")
|
|
305
305
|
def test_hid_device_shows_usb_path(self, mock_detect):
|
|
306
306
|
"""HID device uses usb_path when scsi_device is None."""
|
|
307
307
|
dev = MagicMock()
|
|
@@ -802,11 +802,13 @@ class TestHandshakeBulk:
|
|
|
802
802
|
return dev
|
|
803
803
|
|
|
804
804
|
def _make_result(self, model_id=32, resolution=(480, 480),
|
|
805
|
-
serial="", raw=bytes(64)):
|
|
805
|
+
serial="", raw=bytes(64), pm_byte=7, sub_byte=1):
|
|
806
806
|
r = MagicMock()
|
|
807
807
|
r.model_id = model_id
|
|
808
808
|
r.resolution = resolution
|
|
809
809
|
r.serial = serial
|
|
810
|
+
r.pm_byte = pm_byte
|
|
811
|
+
r.sub_byte = sub_byte
|
|
810
812
|
r.raw_response = raw
|
|
811
813
|
return r
|
|
812
814
|
|
|
@@ -822,7 +824,9 @@ class TestHandshakeBulk:
|
|
|
822
824
|
rpt._handshake_bulk(self._make_dev(), sec_obj)
|
|
823
825
|
|
|
824
826
|
text = " ".join(sec_obj.lines)
|
|
825
|
-
assert "PM=
|
|
827
|
+
assert "PM=7" in text
|
|
828
|
+
assert "SUB=1" in text
|
|
829
|
+
assert "FBL=32" in text
|
|
826
830
|
assert "(480, 480)" in text
|
|
827
831
|
proto.close.assert_called_once()
|
|
828
832
|
|
|
@@ -904,11 +908,13 @@ class TestHandshakeLy:
|
|
|
904
908
|
return dev
|
|
905
909
|
|
|
906
910
|
def _make_result(self, model_id=64, resolution=(1280, 480),
|
|
907
|
-
serial="", raw=bytes(64)):
|
|
911
|
+
serial="", raw=bytes(64), pm_byte=68, sub_byte=0):
|
|
908
912
|
r = MagicMock()
|
|
909
913
|
r.model_id = model_id
|
|
910
914
|
r.resolution = resolution
|
|
911
915
|
r.serial = serial
|
|
916
|
+
r.pm_byte = pm_byte
|
|
917
|
+
r.sub_byte = sub_byte
|
|
912
918
|
r.raw_response = raw
|
|
913
919
|
return r
|
|
914
920
|
|
|
@@ -924,7 +930,9 @@ class TestHandshakeLy:
|
|
|
924
930
|
rpt._handshake_ly(self._make_dev(), sec_obj)
|
|
925
931
|
|
|
926
932
|
text = " ".join(sec_obj.lines)
|
|
927
|
-
assert "PM=
|
|
933
|
+
assert "PM=68" in text
|
|
934
|
+
assert "SUB=0" in text
|
|
935
|
+
assert "FBL=64" in text
|
|
928
936
|
assert "(1280, 480)" in text
|
|
929
937
|
proto.close.assert_called_once()
|
|
930
938
|
|