trcc-linux 9.0.2__tar.gz → 9.0.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/PKG-INFO +9 -4
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/README.md +8 -3
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/pyproject.toml +1 -1
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/__init__.py +3 -6
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/__version__.py +1 -1
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/bulk.py +7 -3
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/system/linux/sensors.py +18 -16
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/api/display.py +125 -1
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/cli/__init__.py +5 -8
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/cli/_system.py +2 -5
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/__init__.py +0 -6
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/display_mode_panels.py +2 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/lcd_handler.py +12 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/screen_capture.py +4 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/trcc_app.py +45 -8
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/uc_about.py +1 -1
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/services/device.py +16 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/services/display.py +2 -2
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/test_bulk.py +21 -4
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/qt_components/test_widgets.py +3 -3
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/.gitignore +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/LICENSE +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/__main__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/_usb_helpers.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/bsd/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/bsd/detector.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/bsd/scsi.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/detector.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/factory.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/frame.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/hid.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/lcd.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/led.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/led_kvm.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/led_segment.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/linux/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/linux/detector.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/linux/scsi.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/ly.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/macos/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/macos/detector.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/macos/scsi.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/scsi.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/windows/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/windows/detector.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/device/windows/scsi.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/infra/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/infra/binary_reader.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/infra/data_repository.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/infra/dc_config.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/infra/dc_parser.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/infra/dc_writer.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/infra/debug_report.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/infra/doctor.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/infra/font_resolver.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/infra/media_player.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/infra/network.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/infra/theme_cloud.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/infra/theme_downloader.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/render/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/render/factory_render.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/render/pil.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/render/qt.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/system/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/system/bsd/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/system/bsd/hardware.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/system/bsd/sensors.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/system/bsd/setup.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/system/config.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/system/linux/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/system/linux/hardware.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/system/linux/setup.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/system/macos/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/system/macos/hardware.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/system/macos/sensors.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/system/macos/setup.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/system/windows/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/system/windows/hardware.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/system/windows/sensors.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/adapters/system/windows/setup.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/api/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/api/devices.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/api/i18n.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/api/led.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/api/models.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/api/system.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/api/themes.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/com.github.lexonight1.trcc.policy +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/fonts/MSYH.TTC +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/fonts/MSYHBD.TTC +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/fonts/README.md +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/240240.gif +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/240320.gif +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/320240.gif +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/320320.gif +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A0/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A0/345/220/257/345/212/250/347/225/214/351/235/242.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A0/346/225/260/346/215/256/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A0/347/241/254/344/273/266/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1AK120 Digital.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1AK120 Digitala.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1AK120_Digital.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1AK120_Digitala.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1AS120 VISION.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1AS120 VISIONa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1AS120_VISION.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1AS120_VISIONa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1AX120 DIGITAL.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1AX120 DIGITALa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1AX120_DIGITAL.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1AX120_DIGITALa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1BA120 VISION.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1BA120 VISIONa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1BA120_VISION.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1BA120_VISIONa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1CORE VISION.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1CORE VISIONa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1CORE_VISION.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1CORE_VISIONa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1CZ1.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1CZ1a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1CZ2.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1CZ2a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1CZTV.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1CZTVa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1ELITE VISION.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1ELITE VISIONa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1ELITE_VISION.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1ELITE_VISIONa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN HORIZON PRO.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN HORIZON PROa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN MAGIC PRO.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN MAGIC PROa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN VISION V2.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN VISION V2a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN WARFRAME PRO.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN WARFRAME PROa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN WARFRAME SE.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN WARFRAME SEa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN WARFRAME.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN WARFRAMEa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN_HORIZON_PROa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN_MAGIC_PROa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN_VISION_V2.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN_VISION_V2a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN_WARFRAME.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PRO.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PROa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SE.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SEa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1FROZEN_WARFRAMEa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1GRAND VISION.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1GRAND VISIONa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1GRAND_VISION.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1GRAND_VISIONa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITAL.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITALa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1HYPER VISION.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1HYPER VISIONa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1HYPER_VISION.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1HYPER_VISIONa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1KVMALEDC6.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1KVMALEDC6a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LC1.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LC1a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LC2.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LC2JD.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LC2JDa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LC2a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LC3.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LC3a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LC5.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LC5a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LC7.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LC7a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LC8.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LC8a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LC9.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LC9a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LD10.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LD10a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LD6.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LD6a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LD7.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LD7a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LD8.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LD8a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LD9.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LD9a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF10.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF10V.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF10Va.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF10a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF11.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF11a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF12.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF12a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF13.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF13a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF14.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF14a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF15.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF15a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF16.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF167.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF16a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF17a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF18.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF18a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF19.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF19a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF20.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF20a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF21.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF21a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF22.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF22a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF25.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF25a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF8.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LF8a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LM16SE.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LM16SEa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LM19SE.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LM19SEa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LM22.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LM22a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LM24.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LM24a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LM26.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LM26a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LM27.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LM27a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LM30.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1LM30a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1Mjolnir VISION PRO.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1Mjolnir VISION PROa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1Mjolnir VISION.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1Mjolnir VISIONa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1Mjolnir_VISION.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1Mjolnir_VISION_PRO.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1Mjolnir_VISION_PROa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1Mjolnir_VISIONa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1PA120 DIGITAL.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1PA120 DIGITALa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1PA120_DIGITAL.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1PA120_DIGITALa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1PC1.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1PC1a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1RK120 DIGITAL.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1RK120 DIGITALa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1RK120_DIGITAL.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1RK120_DIGITALa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1RP130 VISION.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1RP130 VISIONa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1RP130_VISION.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1RP130_VISIONa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1Stream Vision.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1Stream Visiona.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1Stream_Vision.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1Stream_Visiona.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A1/345/205/263/344/272/216a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A2_update_overlay.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A2/344/270/213/346/213/211/346/241/206/345/272/225/345/233/276.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A2/344/270/213/346/213/211/346/241/206/351/200/211/346/213/251/346/235/241.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A2/344/270/213/346/213/211/351/200/211/346/213/251/346/241/206.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A2/347/253/213/345/215/263/346/233/264/346/226/260.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/Acpu.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/Adram.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/Afan.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/Agpu.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/Ahdd.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/Alogout/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/Alogout/351/273/230/350/256/244.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/Anet.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/App_about.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/App_form.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/App_main.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/App_sysinfo.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/App_theme_base.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/App_theme_gallery.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A/344/270/212/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A/344/270/213/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A/345/242/236/345/212/240/346/225/260/347/273/204.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A/346/225/260/346/215/256/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A/346/273/232/345/212/250/346/235/241.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/A/350/207/252/345/256/232/344/271/211.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0CZ1.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0CZ1d.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0CZ1e.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0CZ1en.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0CZ1f.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0CZ1h.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0CZ1p.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0CZ1r.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0CZ1tc.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0CZ1x.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0KVMA/347/201/257/346/216/247.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LC1.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LC1d.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LC1e.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LC1en.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LC1f.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LC1h.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LC1p.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LC1r.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LC1tc.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LC1x.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LC2.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LC2d.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LC2e.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LC2en.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LC2f.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LC2h.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LC2p.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LC2r.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LC2tc.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LC2x.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF10.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF10d.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF10e.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF10en.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF10f.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF10h.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF10p.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF10r.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF10tc.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF10x.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF11.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF11d.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF11e.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF11en.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF11f.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF11h.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF11p.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF11r.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF11tc.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF11x.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF12.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF12d.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF12e.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF12en.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF12f.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF12h.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF12p.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF12r.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF12tc.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF12x.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF13.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF13d.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF13e.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF13en.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF13f.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF13h.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF13p.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF13r.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF13tc.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF13x.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF15.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF15d.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF15e.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF15en.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF15f.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF15h.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF15p.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF15r.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF15tc.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF15x.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF8.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF8d.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF8e.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF8en.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF8f.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF8h.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF8p.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF8r.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF8tc.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0LF8x.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0rgblf13.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237d.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237e.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237en.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237f.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/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-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237p.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237r.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237tc.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237x.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217d.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217e.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217en.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217f.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217h.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217p.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217r.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217tc.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217x.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D1/345/244/264/347/233/2241.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D1/345/244/264/347/233/2242.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D1/345/244/264/347/233/2243.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D1/345/244/264/347/233/2244.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D1/345/244/264/347/233/2245.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2111.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/21110.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/21110a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/21111.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/21111a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/21112.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/21112a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2111a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2112.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2112a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2113.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2113a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2114.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2114a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2115.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2115a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2116.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2116a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2117.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2117a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2118.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2118a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2119.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D2/347/201/257/345/205/2119a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D3/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D3/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D3/345/274/200/345/205/263b.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D3/346/227/213/351/222/256.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D3/346/227/213/351/222/2560.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D3/346/251/231.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D3/346/271/226.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D3/346/273/221/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D3/347/231/275.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D3/347/264/253.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D3/347/272/242.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D3/347/273/277.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D3/350/223/235.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D3/351/273/204.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/345/274/200/346/234/272.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/345/274/200/346/234/272a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/346/214/211/351/222/2561.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/346/214/211/351/222/2561a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/346/214/211/351/222/2562a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/346/214/211/351/222/2563.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/346/214/211/351/222/2563a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/346/214/211/351/222/2564.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/346/214/211/351/222/2564a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2171.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2171a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2172.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2172a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2173.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2173a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2174.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2174a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2175.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2175a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2176.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D4/346/250/241/345/274/2176a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/DAK120_DIGITAL.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/DAX120_DIGITAL.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/DCZ1.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/DFROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/DFROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/DLC1.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/DLC2.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/DLF10.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/DLF11.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/DLF12.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/DLF13.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/DLF15.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/DLF8.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/DPA120 DIGITAL.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/DPA120_DIGITAL.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/Dch1.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/Dch2.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/Dch3.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/Dch4.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/Dchcz1.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/2062.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/225.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/2252.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/256.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/2562.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/F0/345/211/257/345/261/217.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/F0/345/211/257/345/261/217d.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/F0/345/211/257/345/261/217e.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/F0/345/211/257/345/261/217en.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/F0/345/211/257/345/261/217f.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/F0/345/211/257/345/261/217h.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/F0/345/211/257/345/261/217p.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/F0/345/211/257/345/261/217r.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/F0/345/211/257/345/261/217tc.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/F0/345/211/257/345/261/217x.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultra.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultraa.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/344/272/256/345/272/246/350/260/203/346/225/264.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/345/212/250/347/224/273/350/201/224/345/212/250.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/345/242/236/345/212/240/345/206/205/345/256/271/351/201/256/347/275/251.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217d.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217e.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217en.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217f.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217p.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217r.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217tc.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217x.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/346/250/241/345/235/227/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227en.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227tc.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2501.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2502.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2503.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0M1.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0M2.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0M3.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0M4.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0M5.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0M5a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0M6.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217110480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217160480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/21732086.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480110.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480160.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/21786320.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/346/222/255/346/224/276.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/346/222/255/346/224/276/345/231/250/346/216/247/345/210/266.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/346/232/202/345/201/234.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217110480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217160480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/21732086.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217480110.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217480160.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/350/243/201/345/207/21786320.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271280X480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X440.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X462.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227320X960.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227360X800.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227440X1920.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227462X1920.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X1280.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X800.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X854.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227540X960.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X360.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227854X480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227960X320.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227960X540.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P12H.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P240240.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P240320.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P24H.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P320240.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P320320.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/PDM.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/PDMY.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/PL0.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/PL1.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/PL2.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/PL3.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/PM1.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/PM1a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/PM2.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/PM2a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/PM3.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/PM3a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/PM4.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/PM4a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/PM5.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/PM5a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/PM6.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/PM6a.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/PMD.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/PYMD.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/Panel_background.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/Panel_overlay.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/Panel_params.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206/345/272/225/345/233/2762X.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206/345/272/225/345/233/2764X.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206/351/253/230/344/272/256.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/344/270/273/351/242/230/345/210/206/347/261/273/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/344/270/273/351/242/230/345/210/206/347/261/273/351/200/211/346/213/2510.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/344/272/256/345/272/246/346/235/241.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/344/277/235/345/255/230/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/207/217.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227b.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/212/240.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/217/226/350/211/262.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/220/270/347/256/241.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/233/276/346/240/207.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/233/276/347/211/207.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/234/206/345/275/242/345/205/263/351/227/255.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/234/206/345/275/242/347/241/256/345/256/232.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/242/236/345/212/240/345/233/276/346/240/207.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/226/207/346/234/2541.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/245/346/234/2371.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/266/351/227/2641.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/230/237/346/234/2371.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/244/232/351/200/211.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/244/232/351/200/211a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/256/275/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/257/274/345/205/245.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/257/274/345/207/272.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/257/274/345/207/272/346/211/200/346/234/211/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/345/270/256/345/212/251.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/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-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/346/225/260/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/346/225/260/346/215/256.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/346/226/207/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/346/227/213/350/275/254.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206A.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/346/267/273/345/212/240/351/223/276/346/216/2451.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/205/263.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/274/200.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/346/273/221/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/346/273/232/345/212/250/346/235/241/345/272/225/345/233/276.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/346/273/232/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233180.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233270.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/23390.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a180.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a270.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a90.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b180.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b270.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b90.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206A.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/216/257H1.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/216/257H2.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/216/257H3.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/216/257H4.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/216/257H5.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/216/257H6.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/233/264/346/222/255/350/247/206/351/242/221/350/275/275/345/205/245.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/272/277/347/250/213/345/215/225.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/272/277/347/250/213/345/244/232.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/275/221/347/273/234.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/347/275/221/347/273/234/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/350/243/201/345/207/217.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/350/247/206/351/242/221.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/350/275/256/346/222/2551.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/350/275/256/346/222/2552.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/350/275/256/346/222/2553.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/350/275/256/346/222/2554.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/350/275/256/346/222/2555.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/350/275/256/346/222/2556.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/350/275/256/346/222/255/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/350/275/275/345/205/245/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/350/277/233/345/272/246/346/235/241.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206M.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206Ma.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210110X480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210116X480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210160X480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210180X400.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210180X480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210240X240.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210240X320.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210240X400.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210240X427.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210270X480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210320X240.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320/345/234/206.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210320X86.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210360360/345/234/206.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210400X180.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210400X240.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210427X240.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210480X110.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210480X116.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210480X160.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210480X180.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210480X270.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480/345/234/206.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/21086X320.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251320320/345/234/206.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251360360/345/234/206.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251480480/345/234/206.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/234/350/211/262/346/273/221/345/212/250/345/235/227.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/242/234/350/211/262/351/200/211/346/213/251/345/234/210.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/P/351/253/230/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257h.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/p/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/ucBoFangQiKongZhi1.BackgroundImage.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/ucBoFangQiKongZhi1_BackgroundImage.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/ucVideoCut1.BackgroundImage.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/ucVideoCut1_BackgroundImage.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/ucXiTongXianShi1.BackgroundImage.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/ucXiTongXianShiAdd1.BackgroundImage.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/ucXiTongXianShiColor1.BackgroundImage.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/gui/ucXiTongXianShiTable1.BackgroundImage.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/icons/app.ico +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/icons/trcc.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/icons/trcc_128x128.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/icons/trcc_16x16.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/icons/trcc_24x24.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/icons/trcc_256x256.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/icons/trcc_32x32.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/icons/trcc_48x48.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/icons/trcc_64x64.png +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/trcc-linux.desktop +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/assets/trcc-quirk-fix.service +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/cli/__main__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/cli/_device.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/cli/_diag.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/cli/_display.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/cli/_i18n.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/cli/_led.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/cli/_theme.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/conf.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/core/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/core/builder.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/core/color.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/core/encoding.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/core/i18n.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/core/instance.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/core/lcd_device.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/core/led_device.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/core/led_segment.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/core/models.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/core/paths.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/core/perf.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/core/platform.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/core/ports.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/data/trcc_usb.te +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/install/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/install/gui.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/ipc.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/assets.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/base.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/color_and_add_panels.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/constants.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/eyedropper.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/metrics_mediator.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/overlay_element.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/overlay_grid.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/pipewire_capture.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/uc_activity_sidebar.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/uc_color_wheel.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/uc_device.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/uc_image_cut.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/uc_info_module.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/uc_led_control.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/uc_preview.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/uc_screen_led.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/uc_sensor_picker.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/uc_system_info.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/uc_theme_local.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/uc_theme_mask.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/uc_theme_setting.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/uc_theme_web.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/qt_components/uc_video_cut.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/services/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/services/image.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/services/led.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/services/led_config.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/services/led_effects.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/services/media.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/services/overlay.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/services/perf.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/services/renderer.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/services/system.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/services/theme.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/services/theme_loader.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/services/theme_persistence.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/src/trcc/services/video_cache.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/README.md +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/bsd/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/bsd/test_detector.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/bsd/test_scsi.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/conftest.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/macos/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/macos/test_detector.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/macos/test_scsi.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/test_detector.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/test_factory.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/test_frame.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/test_hid.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/test_implementations.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/test_lcd.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/test_led.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/test_led_kvm.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/test_ly.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/test_scsi.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/windows/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/windows/test_detector.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/device/windows/test_scsi.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/infra/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/infra/test_data_repository.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/infra/test_dc_config.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/infra/test_dc_parser.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/infra/test_dc_writer.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/infra/test_debug_report.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/infra/test_doctor.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/infra/test_media_player.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/infra/test_theme_cloud.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/infra/test_theme_downloader.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/system/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/system/bsd/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/system/bsd/test_hardware.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/system/bsd/test_sensors.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/system/linux/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/system/linux/test_hardware.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/system/linux/test_sensors.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/system/macos/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/system/macos/test_hardware.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/system/macos/test_sensors.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/system/test_config.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/system/windows/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/system/windows/test_hardware.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/adapters/system/windows/test_sensors.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/api/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/api/test_api.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/api/test_api_security.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/cli/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/cli/test_cli.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/cli/test_device.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/cli/test_display.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/cli/test_led.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/cli/test_serve.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/cli/test_system.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/cli/test_theme.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/conftest.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/core/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/core/test_builder.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/core/test_color.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/core/test_encoding.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/core/test_i18n.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/core/test_instance.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/core/test_lcd_device.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/core/test_led_device.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/core/test_led_segment.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/core/test_led_segment_ax120.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/core/test_models.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/core/test_paths.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/core/test_perf.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/core/test_proxy_factory.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/qt_components/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/qt_components/test_base.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/qt_components/test_base_panel.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/qt_components/test_constants.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/qt_components/test_lcd_handler.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/qt_components/test_led_control.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/qt_components/test_misc.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/qt_components/test_preview.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/qt_components/test_screen_capture.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/qt_components/test_theme_mask.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/qt_components/test_theme_setting.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/qt_components/test_trcc_app.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/services/__init__.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/services/conftest.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/services/test_device.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/services/test_display_integration.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/services/test_image_ansi.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/services/test_led.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/services/test_led_config.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/services/test_led_effects.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/services/test_media.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/services/test_overlay.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/services/test_perf.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/services/test_services.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/services/test_system.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/services/test_theme.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/services/test_theme_loader.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/services/test_theme_persistence.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/services/test_video_cache.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/test_architecture.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/test_conf.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/test_cpu.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/test_integration.py +0 -0
- {trcc_linux-9.0.2 → trcc_linux-9.0.4}/tests/test_memory.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: trcc-linux
|
|
3
|
-
Version: 9.0.
|
|
3
|
+
Version: 9.0.4
|
|
4
4
|
Summary: Linux implementation of Thermalright LCD Control Center
|
|
5
5
|
Project-URL: Homepage, https://github.com/Lexonight1/thermalright-trcc-linux
|
|
6
6
|
Project-URL: Documentation, https://github.com/Lexonight1/thermalright-trcc-linux#readme
|
|
@@ -67,6 +67,11 @@ Description-Content-Type: text/markdown
|
|
|
67
67
|
|
|
68
68
|
# TRCC Linux
|
|
69
69
|
|
|
70
|
+
<p align="center">
|
|
71
|
+
<img src="doc/workplace.jpeg" width="600" alt="Our state-of-the-art development facility"><br>
|
|
72
|
+
<em>At our state-of-the-art development facility. We're working on professionalism. lol</em>
|
|
73
|
+
</p>
|
|
74
|
+
|
|
70
75
|
> **Looking for testers!** We need **Linux**, **Windows**, **macOS**, and **BSD** testers. If you have a Thermalright LCD or LED device on any platform, grab the latest [release](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest) and [let us know how it goes](https://github.com/Lexonight1/thermalright-trcc-linux/issues) — run `trcc report` and paste the output in an issue. Every test report helps, even if nothing works yet!
|
|
71
76
|
|
|
72
77
|
> **Solo hobbyist project** — built in my spare time, one device, no corporate backing. Just a Linux user who got tired of waiting for Thermalright to support us. If something breaks, please be patient — I do this for free because I like helping people. If this project helps you, consider [buying me a beer](https://buymeacoffee.com/Lexonight1) 🍺 or [Ko-fi](https://ko-fi.com/lexonight1) ☕
|
|
@@ -130,7 +135,7 @@ Pre-built packages are available for every major distro. No pip, no venv, no PEP
|
|
|
130
135
|
| Fedora / Nobara / openSUSE | [Fedora](doc/GUIDE_INSTALL.md#fedora--nobara) |
|
|
131
136
|
| Bazzite / Bluefin / Aurora / Universal Blue | [Immutable Fedora](doc/GUIDE_INSTALL.md#bazzite--aurora--bluefin--fedora-atomic) |
|
|
132
137
|
| Ubuntu 24.04+ / Debian 13+ / Mint 22+ / Pop!_OS / Zorin | [Ubuntu / Debian](doc/GUIDE_INSTALL.md#ubuntu--debian--mint--pop_os--zorin) |
|
|
133
|
-
| Ubuntu 22.04 / Mint 21.x / Debian 12 (older) | [
|
|
138
|
+
| Ubuntu 22.04 / Mint 21.x / Debian 12 (older) | [Legacy DEB](doc/GUIDE_INSTALL.md#ubuntu-2204--mint-21x--debian-12-legacy-deb) |
|
|
134
139
|
| Arch / CachyOS / Manjaro / EndeavourOS / Garuda | [Arch](doc/GUIDE_INSTALL.md#arch--cachyos--manjaro--endeavouros--garuda) |
|
|
135
140
|
| NixOS | [NixOS](doc/GUIDE_INSTALL.md#nixos) |
|
|
136
141
|
| Gentoo | [Gentoo](doc/GUIDE_INSTALL.md#gentoo) |
|
|
@@ -154,7 +159,7 @@ If you see `OK` next to your package — it's clean. Source code is GPL-3.0, ful
|
|
|
154
159
|
|
|
155
160
|
### PyPI
|
|
156
161
|
|
|
157
|
-
Best option for
|
|
162
|
+
Best option for very old distros (Ubuntu 20.04, Debian 11) or if you prefer Python packaging. For Ubuntu 22.04 / Mint 21.x / Debian 12, the [Legacy DEB](doc/GUIDE_INSTALL.md#ubuntu-2204--mint-21x--debian-12-legacy-deb) is easier.
|
|
158
163
|
|
|
159
164
|
```bash
|
|
160
165
|
# Install system dependencies first
|
|
@@ -424,7 +429,7 @@ A big thanks to everyone who has contributed invaluable reports to this project:
|
|
|
424
429
|
|
|
425
430
|
Thanks to everyone who took a moment to star this project — it means the world.
|
|
426
431
|
|
|
427
|
-
**[alessa-lara](https://github.com/alessa-lara)** · **[ArcaneCoder404](https://github.com/ArcaneCoder404)** · **[betolink](https://github.com/betolink)** · **[bive242](https://github.com/bive242)** · **[BrunoLeguizamon05](https://github.com/BrunoLeguizamon05)** · **[cancos1](https://github.com/cancos1)** · **[cesarnr21](https://github.com/cesarnr21)** · **[codeflitting](https://github.com/codeflitting)** · **[dabombUSA](https://github.com/dabombUSA)** · **[damachine](https://github.com/damachine)** · **[DasFlogetier](https://github.com/DasFlogetier)** · **[eap5](https://github.com/eap5)** · **[emaspa](https://github.com/emaspa)** · **[Gdetrane](https://github.com/Gdetrane)** · **[gupsterg](https://github.com/gupsterg)** · **[jezzaw007](https://github.com/jezzaw007)** · **[jhlasnik](https://github.com/jhlasnik)** · **[jmo808](https://github.com/jmo808)** · **[knappstar](https://github.com/knappstar)** · **[mgaruccio](https://github.com/mgaruccio)** · **[
|
|
432
|
+
**[alessa-lara](https://github.com/alessa-lara)** · **[ArcaneCoder404](https://github.com/ArcaneCoder404)** · **[betolink](https://github.com/betolink)** · **[bive242](https://github.com/bive242)** · **[BrunoLeguizamon05](https://github.com/BrunoLeguizamon05)** · **[cancos1](https://github.com/cancos1)** · **[cesarnr21](https://github.com/cesarnr21)** · **[codeflitting](https://github.com/codeflitting)** · **[dabombUSA](https://github.com/dabombUSA)** · **[damachine](https://github.com/damachine)** · **[DasFlogetier](https://github.com/DasFlogetier)** · **[eap5](https://github.com/eap5)** · **[emaspa](https://github.com/emaspa)** · **[Gdetrane](https://github.com/Gdetrane)** · **[gupsterg](https://github.com/gupsterg)** · **[jezzaw007](https://github.com/jezzaw007)** · **[jhlasnik](https://github.com/jhlasnik)** · **[jmo808](https://github.com/jmo808)** · **[knappstar](https://github.com/knappstar)** · **[mgaruccio](https://github.com/mgaruccio)** · **[michelle0812](https://github.com/michelle0812)** · **[mkogut](https://github.com/mkogut)** · **[nathanielhernandez](https://github.com/nathanielhernandez)** · **[oddajpierscien](https://github.com/oddajpierscien)** · **[Pewful2021](https://github.com/Pewful2021)** · **[Pikarz](https://github.com/Pikarz)** · **[qussaif10](https://github.com/qussaif10)** · **[Rehaell](https://github.com/Rehaell)** · **[riodevelop](https://github.com/riodevelop)** · **[rslater](https://github.com/rslater)** · **[shadowepaxeor-glitch](https://github.com/shadowepaxeor-glitch)** · **[ShaunnyBwoy](https://github.com/ShaunnyBwoy)** · **[Smokemic](https://github.com/Smokemic)** · **[Spebelgenenst](https://github.com/Spebelgenenst)** · **[spiritofjon](https://github.com/spiritofjon)** · **[stephenvalente](https://github.com/stephenvalente)** · **[Thymur](https://github.com/Thymur)** · **[Vydon](https://github.com/Vydon)** · **[Xentrino](https://github.com/Xentrino)** · **[Ziusz](https://github.com/Ziusz)**
|
|
428
433
|
|
|
429
434
|
## Faulkers
|
|
430
435
|
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# TRCC Linux
|
|
2
2
|
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="doc/workplace.jpeg" width="600" alt="Our state-of-the-art development facility"><br>
|
|
5
|
+
<em>At our state-of-the-art development facility. We're working on professionalism. lol</em>
|
|
6
|
+
</p>
|
|
7
|
+
|
|
3
8
|
> **Looking for testers!** We need **Linux**, **Windows**, **macOS**, and **BSD** testers. If you have a Thermalright LCD or LED device on any platform, grab the latest [release](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest) and [let us know how it goes](https://github.com/Lexonight1/thermalright-trcc-linux/issues) — run `trcc report` and paste the output in an issue. Every test report helps, even if nothing works yet!
|
|
4
9
|
|
|
5
10
|
> **Solo hobbyist project** — built in my spare time, one device, no corporate backing. Just a Linux user who got tired of waiting for Thermalright to support us. If something breaks, please be patient — I do this for free because I like helping people. If this project helps you, consider [buying me a beer](https://buymeacoffee.com/Lexonight1) 🍺 or [Ko-fi](https://ko-fi.com/lexonight1) ☕
|
|
@@ -63,7 +68,7 @@ Pre-built packages are available for every major distro. No pip, no venv, no PEP
|
|
|
63
68
|
| Fedora / Nobara / openSUSE | [Fedora](doc/GUIDE_INSTALL.md#fedora--nobara) |
|
|
64
69
|
| Bazzite / Bluefin / Aurora / Universal Blue | [Immutable Fedora](doc/GUIDE_INSTALL.md#bazzite--aurora--bluefin--fedora-atomic) |
|
|
65
70
|
| Ubuntu 24.04+ / Debian 13+ / Mint 22+ / Pop!_OS / Zorin | [Ubuntu / Debian](doc/GUIDE_INSTALL.md#ubuntu--debian--mint--pop_os--zorin) |
|
|
66
|
-
| Ubuntu 22.04 / Mint 21.x / Debian 12 (older) | [
|
|
71
|
+
| Ubuntu 22.04 / Mint 21.x / Debian 12 (older) | [Legacy DEB](doc/GUIDE_INSTALL.md#ubuntu-2204--mint-21x--debian-12-legacy-deb) |
|
|
67
72
|
| Arch / CachyOS / Manjaro / EndeavourOS / Garuda | [Arch](doc/GUIDE_INSTALL.md#arch--cachyos--manjaro--endeavouros--garuda) |
|
|
68
73
|
| NixOS | [NixOS](doc/GUIDE_INSTALL.md#nixos) |
|
|
69
74
|
| Gentoo | [Gentoo](doc/GUIDE_INSTALL.md#gentoo) |
|
|
@@ -87,7 +92,7 @@ If you see `OK` next to your package — it's clean. Source code is GPL-3.0, ful
|
|
|
87
92
|
|
|
88
93
|
### PyPI
|
|
89
94
|
|
|
90
|
-
Best option for
|
|
95
|
+
Best option for very old distros (Ubuntu 20.04, Debian 11) or if you prefer Python packaging. For Ubuntu 22.04 / Mint 21.x / Debian 12, the [Legacy DEB](doc/GUIDE_INSTALL.md#ubuntu-2204--mint-21x--debian-12-legacy-deb) is easier.
|
|
91
96
|
|
|
92
97
|
```bash
|
|
93
98
|
# Install system dependencies first
|
|
@@ -357,7 +362,7 @@ A big thanks to everyone who has contributed invaluable reports to this project:
|
|
|
357
362
|
|
|
358
363
|
Thanks to everyone who took a moment to star this project — it means the world.
|
|
359
364
|
|
|
360
|
-
**[alessa-lara](https://github.com/alessa-lara)** · **[ArcaneCoder404](https://github.com/ArcaneCoder404)** · **[betolink](https://github.com/betolink)** · **[bive242](https://github.com/bive242)** · **[BrunoLeguizamon05](https://github.com/BrunoLeguizamon05)** · **[cancos1](https://github.com/cancos1)** · **[cesarnr21](https://github.com/cesarnr21)** · **[codeflitting](https://github.com/codeflitting)** · **[dabombUSA](https://github.com/dabombUSA)** · **[damachine](https://github.com/damachine)** · **[DasFlogetier](https://github.com/DasFlogetier)** · **[eap5](https://github.com/eap5)** · **[emaspa](https://github.com/emaspa)** · **[Gdetrane](https://github.com/Gdetrane)** · **[gupsterg](https://github.com/gupsterg)** · **[jezzaw007](https://github.com/jezzaw007)** · **[jhlasnik](https://github.com/jhlasnik)** · **[jmo808](https://github.com/jmo808)** · **[knappstar](https://github.com/knappstar)** · **[mgaruccio](https://github.com/mgaruccio)** · **[
|
|
365
|
+
**[alessa-lara](https://github.com/alessa-lara)** · **[ArcaneCoder404](https://github.com/ArcaneCoder404)** · **[betolink](https://github.com/betolink)** · **[bive242](https://github.com/bive242)** · **[BrunoLeguizamon05](https://github.com/BrunoLeguizamon05)** · **[cancos1](https://github.com/cancos1)** · **[cesarnr21](https://github.com/cesarnr21)** · **[codeflitting](https://github.com/codeflitting)** · **[dabombUSA](https://github.com/dabombUSA)** · **[damachine](https://github.com/damachine)** · **[DasFlogetier](https://github.com/DasFlogetier)** · **[eap5](https://github.com/eap5)** · **[emaspa](https://github.com/emaspa)** · **[Gdetrane](https://github.com/Gdetrane)** · **[gupsterg](https://github.com/gupsterg)** · **[jezzaw007](https://github.com/jezzaw007)** · **[jhlasnik](https://github.com/jhlasnik)** · **[jmo808](https://github.com/jmo808)** · **[knappstar](https://github.com/knappstar)** · **[mgaruccio](https://github.com/mgaruccio)** · **[michelle0812](https://github.com/michelle0812)** · **[mkogut](https://github.com/mkogut)** · **[nathanielhernandez](https://github.com/nathanielhernandez)** · **[oddajpierscien](https://github.com/oddajpierscien)** · **[Pewful2021](https://github.com/Pewful2021)** · **[Pikarz](https://github.com/Pikarz)** · **[qussaif10](https://github.com/qussaif10)** · **[Rehaell](https://github.com/Rehaell)** · **[riodevelop](https://github.com/riodevelop)** · **[rslater](https://github.com/rslater)** · **[shadowepaxeor-glitch](https://github.com/shadowepaxeor-glitch)** · **[ShaunnyBwoy](https://github.com/ShaunnyBwoy)** · **[Smokemic](https://github.com/Smokemic)** · **[Spebelgenenst](https://github.com/Spebelgenenst)** · **[spiritofjon](https://github.com/spiritofjon)** · **[stephenvalente](https://github.com/stephenvalente)** · **[Thymur](https://github.com/Thymur)** · **[Vydon](https://github.com/Vydon)** · **[Xentrino](https://github.com/Xentrino)** · **[Ziusz](https://github.com/Ziusz)**
|
|
361
366
|
|
|
362
367
|
## Faulkers
|
|
363
368
|
|
|
@@ -23,20 +23,17 @@ Usage:
|
|
|
23
23
|
trcc-test # Test display with color cycle
|
|
24
24
|
"""
|
|
25
25
|
|
|
26
|
-
__version__
|
|
27
|
-
__author__ = "TRCC Linux Contributors"
|
|
28
|
-
|
|
29
|
-
# Core exports
|
|
26
|
+
from trcc.__version__ import __version__
|
|
30
27
|
from trcc.adapters.device.detector import detect_devices, get_device_path
|
|
31
28
|
from trcc.adapters.device.lcd import LCDDriver
|
|
32
29
|
from trcc.adapters.infra.dc_config import DcConfig
|
|
33
30
|
from trcc.adapters.infra.dc_parser import dc_to_overlay_config, parse_dc_file
|
|
34
|
-
|
|
35
|
-
# Animation
|
|
36
31
|
from trcc.adapters.infra.media_player import VideoDecoder
|
|
37
32
|
from trcc.core.models import format_metric
|
|
38
33
|
from trcc.services.system import get_all_metrics
|
|
39
34
|
|
|
35
|
+
__author__ = "TRCC Linux Contributors"
|
|
36
|
+
|
|
40
37
|
__all__ = [
|
|
41
38
|
# Version
|
|
42
39
|
"__version__",
|
|
@@ -163,10 +163,14 @@ class BulkDevice(BulkFrameDevice, FrameDevice):
|
|
|
163
163
|
struct.pack_into("<I", header, 60, data_size) # payload length
|
|
164
164
|
|
|
165
165
|
try:
|
|
166
|
-
# C# USBLCDNEW ThreadSendDeviceData: single SubmitAsyncTransfer
|
|
167
|
-
# of header + payload as one contiguous buffer.
|
|
168
166
|
frame = bytes(header) + image_data
|
|
169
|
-
|
|
167
|
+
# Send in chunks — a single large transfer can reset the device
|
|
168
|
+
# on KVM USB passthrough and slower USB hubs.
|
|
169
|
+
for offset in range(0, len(frame), _WRITE_CHUNK_SIZE):
|
|
170
|
+
self._ep_out.write( # type: ignore[union-attr]
|
|
171
|
+
frame[offset:offset + _WRITE_CHUNK_SIZE],
|
|
172
|
+
timeout=_WRITE_TIMEOUT_MS,
|
|
173
|
+
)
|
|
170
174
|
|
|
171
175
|
# C#: ZLP when total is 512-aligned (num2 % 512 == 0)
|
|
172
176
|
if len(frame) % 512 == 0:
|
|
@@ -315,7 +315,8 @@ class SensorEnumerator(SensorEnumeratorABC):
|
|
|
315
315
|
|
|
316
316
|
try:
|
|
317
317
|
count = pynvml.nvmlDeviceGetCount()
|
|
318
|
-
except Exception:
|
|
318
|
+
except Exception as e:
|
|
319
|
+
log.warning("nvmlDeviceGetCount failed — NVIDIA GPU sensors unavailable: %s", e)
|
|
319
320
|
return
|
|
320
321
|
|
|
321
322
|
for i in range(count):
|
|
@@ -325,7 +326,8 @@ class SensorEnumerator(SensorEnumeratorABC):
|
|
|
325
326
|
gpu_name = pynvml.nvmlDeviceGetName(handle)
|
|
326
327
|
if isinstance(gpu_name, bytes):
|
|
327
328
|
gpu_name = gpu_name.decode()
|
|
328
|
-
except Exception:
|
|
329
|
+
except Exception as e:
|
|
330
|
+
log.warning("NVIDIA GPU %d handle/name failed — skipping: %s", i, e)
|
|
329
331
|
continue
|
|
330
332
|
|
|
331
333
|
prefix = f"nvidia:{i}"
|
|
@@ -461,38 +463,38 @@ class SensorEnumerator(SensorEnumeratorABC):
|
|
|
461
463
|
try:
|
|
462
464
|
readings[f"{prefix}:temp"] = float(
|
|
463
465
|
pynvml.nvmlDeviceGetTemperature(handle, pynvml.NVML_TEMPERATURE_GPU))
|
|
464
|
-
except Exception:
|
|
465
|
-
|
|
466
|
+
except Exception as e:
|
|
467
|
+
log.debug("nvidia:%d temp read failed: %s", i, e)
|
|
466
468
|
try:
|
|
467
469
|
util = pynvml.nvmlDeviceGetUtilizationRates(handle)
|
|
468
470
|
readings[f"{prefix}:gpu_util"] = float(util.gpu)
|
|
469
471
|
readings[f"{prefix}:mem_util"] = float(util.memory)
|
|
470
|
-
except Exception:
|
|
471
|
-
|
|
472
|
+
except Exception as e:
|
|
473
|
+
log.debug("nvidia:%d util read failed: %s", i, e)
|
|
472
474
|
try:
|
|
473
475
|
readings[f"{prefix}:clock"] = float(
|
|
474
476
|
pynvml.nvmlDeviceGetClockInfo(handle, pynvml.NVML_CLOCK_GRAPHICS))
|
|
475
|
-
except Exception:
|
|
476
|
-
|
|
477
|
+
except Exception as e:
|
|
478
|
+
log.debug("nvidia:%d clock read failed: %s", i, e)
|
|
477
479
|
try:
|
|
478
480
|
readings[f"{prefix}:mem_clock"] = float(
|
|
479
481
|
pynvml.nvmlDeviceGetClockInfo(handle, pynvml.NVML_CLOCK_MEM))
|
|
480
|
-
except Exception:
|
|
481
|
-
|
|
482
|
+
except Exception as e:
|
|
483
|
+
log.debug("nvidia:%d mem_clock read failed: %s", i, e)
|
|
482
484
|
try:
|
|
483
485
|
readings[f"{prefix}:power"] = pynvml.nvmlDeviceGetPowerUsage(handle) / 1000.0
|
|
484
|
-
except Exception:
|
|
485
|
-
|
|
486
|
+
except Exception as e:
|
|
487
|
+
log.debug("nvidia:%d power read failed: %s", i, e)
|
|
486
488
|
try:
|
|
487
489
|
mem = pynvml.nvmlDeviceGetMemoryInfo(handle)
|
|
488
490
|
readings[f"{prefix}:vram_used"] = int(mem.used) / (1024 * 1024)
|
|
489
491
|
readings[f"{prefix}:vram_total"] = int(mem.total) / (1024 * 1024)
|
|
490
|
-
except Exception:
|
|
491
|
-
|
|
492
|
+
except Exception as e:
|
|
493
|
+
log.debug("nvidia:%d vram read failed: %s", i, e)
|
|
492
494
|
try:
|
|
493
495
|
readings[f"{prefix}:fan"] = float(pynvml.nvmlDeviceGetFanSpeed(handle))
|
|
494
|
-
except Exception:
|
|
495
|
-
|
|
496
|
+
except Exception as e:
|
|
497
|
+
log.debug("nvidia:%d fan read failed: %s", i, e)
|
|
496
498
|
|
|
497
499
|
def _read_drm(self, readings: dict[str, float]):
|
|
498
500
|
"""Read DRM sysfs sensors (AMD gpu_busy, Intel freq)."""
|
|
@@ -6,8 +6,9 @@ import hmac
|
|
|
6
6
|
import io
|
|
7
7
|
import json
|
|
8
8
|
import logging
|
|
9
|
+
from pathlib import Path
|
|
9
10
|
|
|
10
|
-
from fastapi import APIRouter, HTTPException, UploadFile, WebSocket, WebSocketDisconnect
|
|
11
|
+
from fastapi import APIRouter, HTTPException, Query, UploadFile, WebSocket, WebSocketDisconnect
|
|
11
12
|
from fastapi.responses import Response
|
|
12
13
|
|
|
13
14
|
from trcc.api.models import (
|
|
@@ -234,6 +235,129 @@ def test_display() -> dict:
|
|
|
234
235
|
return {"success": True, "message": f"Test complete — cycled {len(colors)} colors on {w}x{h}"}
|
|
235
236
|
|
|
236
237
|
|
|
238
|
+
# ── Create-theme endpoint ─────────────────────────────────────────────
|
|
239
|
+
|
|
240
|
+
_VIDEO_SUFFIXES = frozenset({'.mp4', '.zt', '.webm', '.avi', '.mkv'})
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
def _is_animated(path: Path) -> bool:
|
|
244
|
+
"""Return True if path is a video or an animated GIF (n_frames > 1)."""
|
|
245
|
+
suffix = path.suffix.lower()
|
|
246
|
+
if suffix in _VIDEO_SUFFIXES:
|
|
247
|
+
return True
|
|
248
|
+
if suffix == '.gif':
|
|
249
|
+
try:
|
|
250
|
+
from PIL import Image
|
|
251
|
+
with Image.open(path) as img:
|
|
252
|
+
return getattr(img, 'n_frames', 1) > 1
|
|
253
|
+
except Exception:
|
|
254
|
+
return False
|
|
255
|
+
return False
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
@router.post("/create-theme")
|
|
259
|
+
def create_theme(
|
|
260
|
+
background: str,
|
|
261
|
+
mask: str | None = None,
|
|
262
|
+
metric: list[str] = Query(default=[]),
|
|
263
|
+
loop: bool = True,
|
|
264
|
+
font_size: int = 14,
|
|
265
|
+
color: str = "ffffff",
|
|
266
|
+
font: str = "Microsoft YaHei",
|
|
267
|
+
font_style: str = "regular",
|
|
268
|
+
temp_unit: int = 0,
|
|
269
|
+
time_format: int = 0,
|
|
270
|
+
date_format: int = 0,
|
|
271
|
+
) -> dict:
|
|
272
|
+
"""Send a custom theme to the LCD device.
|
|
273
|
+
|
|
274
|
+
Auto-detects animated backgrounds (video, animated GIF) and loops them
|
|
275
|
+
by default. Add ``&loop=false`` to play once.
|
|
276
|
+
|
|
277
|
+
``metric`` is repeatable: ``&metric=cpu_temp:10,20&metric=time:150,10:ffffff:24``
|
|
278
|
+
|
|
279
|
+
Metric spec format: ``key:x,y[:color[:size[:font[:style]]]]``
|
|
280
|
+
"""
|
|
281
|
+
import trcc.api as api
|
|
282
|
+
from trcc.core.models import build_overlay_config
|
|
283
|
+
from trcc.services import ImageService
|
|
284
|
+
|
|
285
|
+
lcd = _get_display()
|
|
286
|
+
api.stop_video_playback()
|
|
287
|
+
api.stop_overlay_loop()
|
|
288
|
+
|
|
289
|
+
bg_path = Path(background)
|
|
290
|
+
if '\0' in background or not bg_path.exists():
|
|
291
|
+
raise HTTPException(status_code=400, detail=f"Background file not found: {background}")
|
|
292
|
+
|
|
293
|
+
if mask is not None and ('\0' in mask or not Path(mask).exists()):
|
|
294
|
+
raise HTTPException(status_code=400, detail=f"Mask file not found: {mask}")
|
|
295
|
+
|
|
296
|
+
w, h = lcd.resolution # type: ignore[union-attr]
|
|
297
|
+
animated = _is_animated(bg_path)
|
|
298
|
+
|
|
299
|
+
overlay_config = None
|
|
300
|
+
if metric:
|
|
301
|
+
try:
|
|
302
|
+
overlay_config = build_overlay_config(
|
|
303
|
+
metric,
|
|
304
|
+
default_color=color,
|
|
305
|
+
default_font_size=font_size,
|
|
306
|
+
default_font=font,
|
|
307
|
+
default_style=font_style,
|
|
308
|
+
temp_unit=temp_unit,
|
|
309
|
+
time_format=time_format,
|
|
310
|
+
date_format=date_format,
|
|
311
|
+
)
|
|
312
|
+
except ValueError as e:
|
|
313
|
+
raise HTTPException(status_code=400, detail=str(e))
|
|
314
|
+
|
|
315
|
+
if animated:
|
|
316
|
+
ok = api.start_video_playback(str(bg_path), w, h, loop=loop)
|
|
317
|
+
if not ok:
|
|
318
|
+
raise HTTPException(status_code=500, detail="Failed to start video playback")
|
|
319
|
+
return {"success": True, "animated": True, "loop": loop, "resolution": f"{w}x{h}"}
|
|
320
|
+
|
|
321
|
+
# Static image
|
|
322
|
+
from trcc.cli import _ensure_renderer
|
|
323
|
+
_ensure_renderer()
|
|
324
|
+
img = ImageService.open_and_resize(bg_path, w, h)
|
|
325
|
+
if img is None:
|
|
326
|
+
raise HTTPException(status_code=400, detail="Failed to open background image")
|
|
327
|
+
|
|
328
|
+
if mask:
|
|
329
|
+
result = lcd.load_mask_standalone(mask)
|
|
330
|
+
if not result.get("success"):
|
|
331
|
+
raise HTTPException(status_code=400, detail=result.get("error", "Mask load failed"))
|
|
332
|
+
img = result.get("image", img)
|
|
333
|
+
|
|
334
|
+
if overlay_config:
|
|
335
|
+
from trcc.adapters.infra.dc_config import DcConfig
|
|
336
|
+
from trcc.adapters.infra.dc_parser import load_config_json
|
|
337
|
+
from trcc.cli import _ensure_system
|
|
338
|
+
from trcc.services.overlay import OverlayService
|
|
339
|
+
_ensure_system()
|
|
340
|
+
overlay = OverlayService(
|
|
341
|
+
w, h, renderer=api._renderer,
|
|
342
|
+
load_config_json_fn=load_config_json,
|
|
343
|
+
dc_config_cls=DcConfig,
|
|
344
|
+
)
|
|
345
|
+
overlay.set_background(img)
|
|
346
|
+
overlay.set_config(overlay_config)
|
|
347
|
+
overlay.enabled = True
|
|
348
|
+
api._overlay_svc = overlay
|
|
349
|
+
# render one frame immediately and send
|
|
350
|
+
from trcc.services.system import get_all_metrics
|
|
351
|
+
frame = overlay.render(get_all_metrics())
|
|
352
|
+
lcd.frame.send_pil(frame)
|
|
353
|
+
api.set_current_image(frame)
|
|
354
|
+
else:
|
|
355
|
+
lcd.frame.send_pil(img)
|
|
356
|
+
api.set_current_image(img)
|
|
357
|
+
|
|
358
|
+
return {"success": True, "animated": False, "resolution": f"{w}x{h}"}
|
|
359
|
+
|
|
360
|
+
|
|
237
361
|
# ── Preview helpers ───────────────────────────────────────────────────
|
|
238
362
|
|
|
239
363
|
|
|
@@ -127,10 +127,6 @@ def _main_callback(
|
|
|
127
127
|
"--verbose", "-v", count=True,
|
|
128
128
|
help="Increase verbosity (-v, -vv, -vvv)",
|
|
129
129
|
)] = 0,
|
|
130
|
-
last_one: Annotated[bool, typer.Option(
|
|
131
|
-
"--last-one",
|
|
132
|
-
help="Start minimized to system tray with last-used theme (autostart)",
|
|
133
|
-
)] = False,
|
|
134
130
|
testing_hid: Annotated[bool, typer.Option(
|
|
135
131
|
"--testing-hid", hidden=True,
|
|
136
132
|
help="No-op (HID devices are now auto-detected)",
|
|
@@ -142,9 +138,6 @@ def _main_callback(
|
|
|
142
138
|
) -> None:
|
|
143
139
|
global _verbose
|
|
144
140
|
_verbose = verbose
|
|
145
|
-
if last_one:
|
|
146
|
-
result = gui(verbose=verbose, start_hidden=True)
|
|
147
|
-
raise typer.Exit(result or 0)
|
|
148
141
|
if ctx.invoked_subcommand is None:
|
|
149
142
|
typer.echo(ctx.get_help())
|
|
150
143
|
|
|
@@ -225,9 +218,13 @@ def _cmd_gui(
|
|
|
225
218
|
"--decorated", "-d",
|
|
226
219
|
help="Use decorated window (normal window with titlebar, can minimize)",
|
|
227
220
|
)] = False,
|
|
221
|
+
resume: Annotated[bool, typer.Option(
|
|
222
|
+
"--resume",
|
|
223
|
+
help="Start hidden in system tray and restore last-used theme (autostart)",
|
|
224
|
+
)] = False,
|
|
228
225
|
) -> int:
|
|
229
226
|
"""Launch graphical interface."""
|
|
230
|
-
return gui(verbose=_verbose, decorated=decorated)
|
|
227
|
+
return gui(verbose=_verbose, decorated=decorated, start_hidden=resume)
|
|
231
228
|
|
|
232
229
|
|
|
233
230
|
@app.command("detect")
|
|
@@ -9,9 +9,6 @@ from pathlib import Path
|
|
|
9
9
|
|
|
10
10
|
from trcc.core.platform import LINUX, detect_install_method, is_root
|
|
11
11
|
|
|
12
|
-
# Backward compat — internal callers use _is_root()
|
|
13
|
-
_is_root = is_root
|
|
14
|
-
|
|
15
12
|
|
|
16
13
|
def _require_linux(command: str) -> int | None:
|
|
17
14
|
"""Return error code if not on Linux, None if OK to proceed."""
|
|
@@ -192,7 +189,7 @@ def uninstall(*, yes: bool = False):
|
|
|
192
189
|
|
|
193
190
|
# Handle root files — auto-elevate with sudo if needed
|
|
194
191
|
root_exists = [p for p in root_files if os.path.exists(p)]
|
|
195
|
-
if root_exists and not
|
|
192
|
+
if root_exists and not is_root():
|
|
196
193
|
print("Root files found — requesting sudo to remove...")
|
|
197
194
|
result = _sudo_run(["rm", "-f"] + root_exists)
|
|
198
195
|
if result.returncode == 0:
|
|
@@ -221,7 +218,7 @@ def uninstall(*, yes: bool = False):
|
|
|
221
218
|
print("Nothing to remove — TRCC is already clean.")
|
|
222
219
|
|
|
223
220
|
# Reload udev if we removed rules (and we're root — non-root already did it above)
|
|
224
|
-
if
|
|
221
|
+
if is_root() and any("udev" in r for r in removed):
|
|
225
222
|
subprocess.run(["udevadm", "control", "--reload-rules"], check=False)
|
|
226
223
|
subprocess.run(["udevadm", "trigger"], check=False)
|
|
227
224
|
|
|
@@ -9,15 +9,9 @@ from .uc_theme_mask import UCThemeMask
|
|
|
9
9
|
from .uc_theme_setting import UCThemeSetting
|
|
10
10
|
from .uc_theme_web import UCThemeWeb
|
|
11
11
|
|
|
12
|
-
# Backward compat aliases (to be removed after migration)
|
|
13
|
-
TRCCMainWindowMVC = TRCCApp
|
|
14
|
-
run_mvc_app = run_app
|
|
15
|
-
|
|
16
12
|
__all__ = [
|
|
17
13
|
'TRCCApp',
|
|
18
14
|
'run_app',
|
|
19
|
-
'TRCCMainWindowMVC',
|
|
20
|
-
'run_mvc_app',
|
|
21
15
|
'BasePanel',
|
|
22
16
|
'ImageLabel',
|
|
23
17
|
'pil_to_pixmap',
|
|
@@ -279,7 +279,9 @@ class DisplayModePanel(QFrame):
|
|
|
279
279
|
btn.setEnabled(enabled)
|
|
280
280
|
|
|
281
281
|
def set_enabled(self, enabled):
|
|
282
|
+
self.toggle_btn.blockSignals(True)
|
|
282
283
|
self.toggle_btn.setChecked(enabled)
|
|
284
|
+
self.toggle_btn.blockSignals(False)
|
|
283
285
|
self._set_actions_enabled(enabled)
|
|
284
286
|
|
|
285
287
|
def set_title(self, text: str) -> None:
|
|
@@ -450,6 +450,9 @@ class LCDHandler:
|
|
|
450
450
|
if preview is not None:
|
|
451
451
|
self._w['preview'].set_image(preview, fast=True)
|
|
452
452
|
|
|
453
|
+
if not self._lcd.connected:
|
|
454
|
+
return
|
|
455
|
+
|
|
453
456
|
# Pre-encoded path
|
|
454
457
|
encoded = result.get('encoded')
|
|
455
458
|
if encoded is not None:
|
|
@@ -613,6 +616,8 @@ class LCDHandler:
|
|
|
613
616
|
return
|
|
614
617
|
if self._is_visible():
|
|
615
618
|
self._w['preview'].set_image(image)
|
|
619
|
+
if not self._lcd.connected:
|
|
620
|
+
return
|
|
616
621
|
if skip_if_video and self._lcd.video.playing:
|
|
617
622
|
return
|
|
618
623
|
self._lcd.frame.send(image)
|
|
@@ -686,4 +691,11 @@ class LCDHandler:
|
|
|
686
691
|
self._slideshow_timer.stop()
|
|
687
692
|
self._flash_timer.stop()
|
|
688
693
|
self._lcd.video.stop()
|
|
694
|
+
# Stop async send worker and wait for any in-progress send to finish,
|
|
695
|
+
# then send a black frame to clear the display before disconnecting.
|
|
696
|
+
try:
|
|
697
|
+
self._lcd.device_service.stop_send_worker()
|
|
698
|
+
self._lcd.frame.send_color(0, 0, 0)
|
|
699
|
+
except Exception:
|
|
700
|
+
pass
|
|
689
701
|
self._lcd.cleanup()
|
|
@@ -11,6 +11,7 @@ Works on both X11 and Wayland via fallback chain.
|
|
|
11
11
|
"""
|
|
12
12
|
from __future__ import annotations
|
|
13
13
|
|
|
14
|
+
import logging
|
|
14
15
|
import os
|
|
15
16
|
import subprocess
|
|
16
17
|
import tempfile
|
|
@@ -20,6 +21,8 @@ from PySide6.QtCore import QPoint, QRect, Qt, Signal
|
|
|
20
21
|
from PySide6.QtGui import QColor, QFont, QPainter, QPen, QPixmap
|
|
21
22
|
from PySide6.QtWidgets import QApplication, QWidget
|
|
22
23
|
|
|
24
|
+
log = logging.getLogger(__name__)
|
|
25
|
+
|
|
23
26
|
|
|
24
27
|
@lru_cache(maxsize=1)
|
|
25
28
|
def is_wayland() -> bool:
|
|
@@ -300,5 +303,6 @@ class ScreenCaptureOverlay(BaseScreenOverlay):
|
|
|
300
303
|
pil_img = pixmap_to_pil(cropped)
|
|
301
304
|
self.captured.emit(pil_img)
|
|
302
305
|
except Exception:
|
|
306
|
+
log.debug("Screen capture region crop/convert failed", exc_info=True)
|
|
303
307
|
self.captured.emit(None)
|
|
304
308
|
self.deleteLater()
|
|
@@ -297,7 +297,6 @@ class LEDHandler:
|
|
|
297
297
|
if self._save_counter >= self._SAVE_INTERVAL:
|
|
298
298
|
self._save_counter = 0
|
|
299
299
|
self._led.save_config()
|
|
300
|
-
log.debug("LED: periodic config save")
|
|
301
300
|
except Exception:
|
|
302
301
|
log.exception("LED tick error")
|
|
303
302
|
|
|
@@ -327,6 +326,7 @@ class ScreencastHandler:
|
|
|
327
326
|
self._lcd_w = 320
|
|
328
327
|
self._lcd_h = 320
|
|
329
328
|
|
|
329
|
+
self._capture_warn_logged = False
|
|
330
330
|
self._timer = QTimer(parent)
|
|
331
331
|
self._timer.timeout.connect(self._tick)
|
|
332
332
|
|
|
@@ -403,7 +403,11 @@ class ScreencastHandler:
|
|
|
403
403
|
from .screen_capture import grab_screen_region
|
|
404
404
|
pixmap = grab_screen_region(self._x, self._y, self._w, self._h)
|
|
405
405
|
if pixmap.isNull():
|
|
406
|
+
if not self._capture_warn_logged:
|
|
407
|
+
log.warning("Screencast: all capture methods failed — no frame available")
|
|
408
|
+
self._capture_warn_logged = True
|
|
406
409
|
return
|
|
410
|
+
self._capture_warn_logged = False
|
|
407
411
|
pil_img = pixmap_to_pil(pixmap)
|
|
408
412
|
|
|
409
413
|
pil_img = pil_img.resize(
|
|
@@ -1395,7 +1399,7 @@ class TRCCApp(QMainWindow):
|
|
|
1395
1399
|
elif cmd == UCThemeSetting.CMD_MASK_CLOUD:
|
|
1396
1400
|
self._show_panel(3) # C# buttonYDMB_Click — cloud masks
|
|
1397
1401
|
elif cmd == UCThemeSetting.CMD_VIDEO_LOAD:
|
|
1398
|
-
self.
|
|
1402
|
+
self._on_media_player_load_clicked()
|
|
1399
1403
|
elif cmd == 51: # C# buttonYDZT_Click — switch to cloud theme panel
|
|
1400
1404
|
self._show_panel(1)
|
|
1401
1405
|
elif cmd == UCThemeSetting.CMD_VIDEO_TOGGLE:
|
|
@@ -1449,13 +1453,19 @@ class TRCCApp(QMainWindow):
|
|
|
1449
1453
|
if not self._lcd_handler:
|
|
1450
1454
|
return
|
|
1451
1455
|
if enabled:
|
|
1452
|
-
#
|
|
1453
|
-
|
|
1454
|
-
self._lcd_handler.is_background_active = False
|
|
1455
|
-
if self._lcd_handler.display.video_has_frames():
|
|
1456
|
-
self._lcd_handler.play_pause()
|
|
1456
|
+
# Toggle ON: UI gate only — enable Load button, don't touch display
|
|
1457
|
+
pass
|
|
1457
1458
|
else:
|
|
1458
|
-
|
|
1459
|
+
# Toggle OFF: stop media player video and resume the background theme
|
|
1460
|
+
if self._lcd_handler.display.video_has_frames():
|
|
1461
|
+
self._lcd_handler._animation_timer.stop()
|
|
1462
|
+
self._lcd_handler.display.stop_video()
|
|
1463
|
+
self.uc_preview.set_playing(False)
|
|
1464
|
+
self.uc_preview.show_video_controls(False)
|
|
1465
|
+
# Always reload last theme on toggle OFF
|
|
1466
|
+
last_path = self._lcd_handler.display.current_theme_path
|
|
1467
|
+
if last_path:
|
|
1468
|
+
self._lcd_handler.select_theme_from_path(Path(last_path))
|
|
1459
1469
|
|
|
1460
1470
|
def _on_screencast_frame(self, pil_img):
|
|
1461
1471
|
if self._lcd_handler:
|
|
@@ -1474,6 +1484,33 @@ class TRCCApp(QMainWindow):
|
|
|
1474
1484
|
self.uc_video_cut.load_video(path)
|
|
1475
1485
|
self._show_cutter('video')
|
|
1476
1486
|
|
|
1487
|
+
def _on_media_player_load_clicked(self):
|
|
1488
|
+
"""Load and play a video directly on the LCD — no cutter, no Theme.zt encoding."""
|
|
1489
|
+
web_dir = str(_conf.settings.web_dir) if _conf.settings.web_dir else ""
|
|
1490
|
+
path, _ = QFileDialog.getOpenFileName(
|
|
1491
|
+
self, "Open Video", web_dir,
|
|
1492
|
+
"Video Files (*.mp4 *.avi *.mkv *.mov *.gif);;All Files (*)")
|
|
1493
|
+
if not path or not self._lcd_handler:
|
|
1494
|
+
return
|
|
1495
|
+
|
|
1496
|
+
# Stop all competing sources before loading: background, screencast, overlay
|
|
1497
|
+
self._screencast.toggle(False)
|
|
1498
|
+
self._lcd_handler.is_background_active = False
|
|
1499
|
+
self._lcd_handler._animation_timer.stop()
|
|
1500
|
+
self._lcd_handler.display.stop_video()
|
|
1501
|
+
self._lcd_handler.display.enable(False) # overlay off — don't overwrite video frames
|
|
1502
|
+
|
|
1503
|
+
result = self._lcd_handler.display.load_video(path)
|
|
1504
|
+
if not result.get("success"):
|
|
1505
|
+
self.uc_preview.set_status(f"Error: {result.get('error', 'Failed to load video')}")
|
|
1506
|
+
return
|
|
1507
|
+
self._lcd_handler.display.play_video()
|
|
1508
|
+
interval = self._lcd_handler.display.interval
|
|
1509
|
+
self._lcd_handler._animation_timer.start(interval)
|
|
1510
|
+
self.uc_preview.set_playing(True)
|
|
1511
|
+
self.uc_preview.show_video_controls(True)
|
|
1512
|
+
self.uc_preview.set_status(f"Playing: {Path(path).name}")
|
|
1513
|
+
|
|
1477
1514
|
def _on_load_image_clicked(self):
|
|
1478
1515
|
self._cut_mode = 'background'
|
|
1479
1516
|
path, _ = QFileDialog.getOpenFileName(
|
|
@@ -289,6 +289,22 @@ class DeviceService:
|
|
|
289
289
|
data, w, h = self._send_queue.popleft()
|
|
290
290
|
self.send_rgb565(data, w, h)
|
|
291
291
|
|
|
292
|
+
def stop_send_worker(self, timeout: float = 2.0) -> None:
|
|
293
|
+
"""Stop the async send worker and wait for any in-progress send to finish.
|
|
294
|
+
|
|
295
|
+
Must be called before send_rgb565() on shutdown so _send_busy is clear.
|
|
296
|
+
"""
|
|
297
|
+
self._send_shutdown = True
|
|
298
|
+
self._send_queue.clear()
|
|
299
|
+
self._send_event.set()
|
|
300
|
+
if self._send_worker and self._send_worker.is_alive():
|
|
301
|
+
self._send_worker.join(timeout=timeout)
|
|
302
|
+
# Spin-wait for any in-progress send_rgb565 to release _send_busy
|
|
303
|
+
import time
|
|
304
|
+
deadline = time.monotonic() + timeout
|
|
305
|
+
while self._send_busy and time.monotonic() < deadline:
|
|
306
|
+
time.sleep(0.01)
|
|
307
|
+
|
|
292
308
|
@property
|
|
293
309
|
def is_busy(self) -> bool:
|
|
294
310
|
"""Check if a send is in progress."""
|