trcc-linux 9.2.2__tar.gz → 9.2.3__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.2.2 → trcc_linux-9.2.3}/PKG-INFO +1 -1
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/pyproject.toml +1 -1
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/__version__.py +1 -1
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/detector.py +30 -38
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/factory.py +6 -21
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/api/__init__.py +26 -20
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/api/devices.py +1 -1
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/api/display.py +4 -4
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/api/system.py +8 -5
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/cli/__init__.py +2 -1
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/cli/_display.py +4 -4
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/cli/_theme.py +1 -1
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/core/app.py +37 -6
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/core/lcd_device.py +5 -5
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/core/models.py +1 -1
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/gui/__init__.py +8 -15
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/lcd_handler.py +8 -3
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/services/device.py +2 -2
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/api/test_api.py +7 -7
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/api/test_api_security.py +8 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/cli/test_cli.py +2 -2
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/cli/test_display.py +4 -4
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/conftest.py +60 -2
- trcc_linux-9.2.3/tests/core/test_app_lifecycle.py +358 -0
- trcc_linux-9.2.3/tests/core/test_app_scan.py +442 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/core/test_builder.py +87 -0
- trcc_linux-9.2.3/tests/core/test_builder_routing.py +246 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/core/test_lcd_device.py +7 -7
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/qt_components/test_lcd_handler.py +9 -2
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/services/test_device.py +5 -5
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/services/test_services.py +4 -4
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/test_integration.py +2 -2
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/.gitignore +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/LICENSE +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/README.md +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/__main__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/_usb_helpers.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/bsd/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/bsd/detector.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/bsd/scsi.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/bulk.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/frame.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/hid.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/led.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/led_kvm.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/led_segment.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/linux/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/linux/detector.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/linux/scsi.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/ly.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/macos/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/macos/detector.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/macos/scsi.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/scsi.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/windows/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/windows/detector.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/windows/scsi.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/device/windows/scsi_protocol.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/infra/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/infra/binary_reader.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/infra/data_repository.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/infra/dc_config.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/infra/dc_parser.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/infra/dc_writer.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/infra/debug_report.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/infra/diagnostics.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/infra/doctor.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/infra/logging_setup.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/infra/media_player.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/infra/network.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/infra/theme_cloud.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/infra/theme_downloader.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/render/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/render/factory_render.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/render/qt.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/_shared.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/bsd/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/bsd/hardware.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/bsd/platform.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/bsd/sensors.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/bsd/setup.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/config.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/linux/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/linux/autostart.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/linux/hardware.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/linux/platform.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/linux/sensors.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/linux/setup.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/macos/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/macos/autostart.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/macos/hardware.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/macos/platform.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/macos/sensors.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/macos/setup.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/windows/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/windows/autostart.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/windows/hardware.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/windows/platform.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/windows/sensors.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/adapters/system/windows/setup.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/api/i18n.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/api/led.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/api/models.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/api/themes.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/com.github.lexonight1.trcc.policy +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/fonts/MSYH.TTC +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/fonts/MSYHBD.TTC +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/fonts/README.md +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/240240.gif +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/240320.gif +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/320240.gif +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/320320.gif +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A0/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A0/345/220/257/345/212/250/347/225/214/351/235/242.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A0/346/225/260/346/215/256/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A0/347/241/254/344/273/266/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1AK120 Digital.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1AK120 Digitala.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1AK120_Digital.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1AK120_Digitala.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1AS120 VISION.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1AS120 VISIONa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1AS120_VISION.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1AS120_VISIONa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1AX120 DIGITAL.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1AX120 DIGITALa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1AX120_DIGITAL.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1AX120_DIGITALa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1BA120 VISION.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1BA120 VISIONa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1BA120_VISION.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1BA120_VISIONa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1CORE VISION.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1CORE VISIONa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1CORE_VISION.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1CORE_VISIONa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1CZ1.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1CZ1a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1CZ2.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1CZ2a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1CZTV.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1CZTVa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1ELITE VISION.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1ELITE VISIONa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1ELITE_VISION.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1ELITE_VISIONa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN HORIZON PRO.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN HORIZON PROa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN MAGIC PRO.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN MAGIC PROa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN VISION V2.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN VISION V2a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN WARFRAME PRO.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN WARFRAME PROa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN WARFRAME SE.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN WARFRAME SEa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN WARFRAME.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN WARFRAMEa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN_HORIZON_PROa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN_MAGIC_PROa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN_VISION_V2.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN_VISION_V2a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN_WARFRAME.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PRO.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PROa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SE.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SEa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1FROZEN_WARFRAMEa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1GRAND VISION.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1GRAND VISIONa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1GRAND_VISION.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1GRAND_VISIONa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITAL.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITALa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1HYPER VISION.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1HYPER VISIONa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1HYPER_VISION.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1HYPER_VISIONa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1KVMALEDC6.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1KVMALEDC6a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LC1.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LC1a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LC2.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LC2JD.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LC2JDa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LC2a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LC3.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LC3a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LC5.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LC5a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LC7.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LC7a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LC8.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LC8a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LC9.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LC9a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LD10.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LD10a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LD6.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LD6a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LD7.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LD7a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LD8.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LD8a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LD9.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LD9a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF10.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF10V.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF10Va.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF10a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF11.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF11a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF12.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF12a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF13.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF13a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF14.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF14a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF15.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF15a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF16.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF167.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF16a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF17a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF18.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF18a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF19.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF19a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF20.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF20a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF21.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF21a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF22.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF22a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF25.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF25a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF8.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LF8a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LM16SE.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LM16SEa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LM19SE.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LM19SEa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LM22.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LM22a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LM24.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LM24a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LM26.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LM26a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LM27.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LM27a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LM30.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1LM30a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1Mjolnir VISION PRO.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1Mjolnir VISION PROa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1Mjolnir VISION.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1Mjolnir VISIONa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1Mjolnir_VISION.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1Mjolnir_VISION_PRO.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1Mjolnir_VISION_PROa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1Mjolnir_VISIONa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1PA120 DIGITAL.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1PA120 DIGITALa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1PA120_DIGITAL.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1PA120_DIGITALa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1PC1.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1PC1a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1RK120 DIGITAL.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1RK120 DIGITALa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1RK120_DIGITAL.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1RK120_DIGITALa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1RP130 VISION.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1RP130 VISIONa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1RP130_VISION.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1RP130_VISIONa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1Stream Vision.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1Stream Visiona.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1Stream_Vision.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1Stream_Visiona.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A1/345/205/263/344/272/216a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A2_update_overlay.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A2/347/253/213/345/215/263/346/233/264/346/226/260.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/Acpu.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/Adram.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/Afan.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/Agpu.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/Ahdd.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/Alogout/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/Alogout/351/273/230/350/256/244.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/Anet.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/App_about.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/App_form.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/App_main.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/App_sysinfo.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/App_theme_base.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/App_theme_gallery.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A/344/270/212/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A/344/270/213/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A/345/242/236/345/212/240/346/225/260/347/273/204.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A/346/225/260/346/215/256/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A/346/273/232/345/212/250/346/235/241.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/A/350/207/252/345/256/232/344/271/211.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0CZ1.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0CZ1d.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0CZ1e.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0CZ1en.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0CZ1f.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0CZ1h.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0CZ1p.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0CZ1r.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0CZ1tc.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0CZ1x.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0KVMA/347/201/257/346/216/247.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LC1.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LC1d.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LC1e.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LC1en.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LC1f.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LC1h.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LC1p.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LC1r.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LC1tc.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LC1x.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LC2.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LC2d.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LC2e.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LC2en.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LC2f.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LC2h.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LC2p.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LC2r.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LC2tc.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LC2x.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF10.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF10d.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF10e.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF10en.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF10f.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF10h.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF10p.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF10r.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF10tc.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF10x.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF11.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF11d.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF11e.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF11en.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF11f.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF11h.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF11p.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF11r.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF11tc.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF11x.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF12.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF12d.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF12e.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF12en.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF12f.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF12h.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF12p.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF12r.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF12tc.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF12x.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF13.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF13d.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF13e.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF13en.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF13f.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF13h.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF13p.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF13r.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF13tc.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF13x.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF15.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF15d.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF15e.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF15en.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF15f.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF15h.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF15p.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF15r.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF15tc.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF15x.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF8.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF8d.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF8e.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF8en.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF8f.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF8h.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF8p.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF8r.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF8tc.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0LF8x.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0rgblf13.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217d.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217e.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217en.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217f.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217h.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217p.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217r.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217tc.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217x.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D1/345/244/264/347/233/2241.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D1/345/244/264/347/233/2242.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D1/345/244/264/347/233/2243.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D1/345/244/264/347/233/2244.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D1/345/244/264/347/233/2245.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/2111.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/21110.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/21110a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/21111.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/21111a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/21112.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/21112a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/2111a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/2112.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/2112a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/2113.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/2113a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/2114.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/2114a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/2115.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/2115a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/2116.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/2116a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/2117.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/2117a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/2118.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/2118a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/2119.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D2/347/201/257/345/205/2119a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D3/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D3/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D3/345/274/200/345/205/263b.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D3/346/227/213/351/222/256.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D3/346/227/213/351/222/2560.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D3/346/251/231.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D3/346/271/226.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D3/347/231/275.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D3/347/264/253.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D3/347/272/242.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D3/347/273/277.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D3/350/223/235.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D3/351/273/204.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/345/274/200/346/234/272.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/345/274/200/346/234/272a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/346/214/211/351/222/2561.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/346/214/211/351/222/2561a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/346/214/211/351/222/2562a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/346/214/211/351/222/2563.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/346/214/211/351/222/2563a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/346/214/211/351/222/2564.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/346/214/211/351/222/2564a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/346/250/241/345/274/2171.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/346/250/241/345/274/2171a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/346/250/241/345/274/2172.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/346/250/241/345/274/2172a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/346/250/241/345/274/2173.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/346/250/241/345/274/2173a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/346/250/241/345/274/2174.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/346/250/241/345/274/2174a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/346/250/241/345/274/2175.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/346/250/241/345/274/2175a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/346/250/241/345/274/2176.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D4/346/250/241/345/274/2176a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/DAK120_DIGITAL.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/DAX120_DIGITAL.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/DCZ1.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/DFROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/DFROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/DLC1.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/DLC2.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/DLF10.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/DLF11.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/DLF12.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/DLF13.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/DLF15.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/DLF8.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/DPA120 DIGITAL.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/DPA120_DIGITAL.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/Dch1.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/Dch2.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/Dch3.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/Dch4.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/Dchcz1.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/2062.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/225.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/2252.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/256.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/2562.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/F0/345/211/257/345/261/217.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/F0/345/211/257/345/261/217d.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/F0/345/211/257/345/261/217e.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/F0/345/211/257/345/261/217en.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/F0/345/211/257/345/261/217f.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/F0/345/211/257/345/261/217h.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/F0/345/211/257/345/261/217p.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/F0/345/211/257/345/261/217r.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/F0/345/211/257/345/261/217tc.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/F0/345/211/257/345/261/217x.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultra.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultraa.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/344/272/256/345/272/246/350/260/203/346/225/264.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/345/212/250/347/224/273/350/201/224/345/212/250.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217d.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217e.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217en.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217f.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217p.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217r.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217tc.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217x.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/346/250/241/345/235/227/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227en.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227tc.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2501.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2502.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2503.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0M1.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0M2.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0M3.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0M4.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0M5.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0M5a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0M6.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217110480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217160480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/21732086.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480110.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480160.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/21786320.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/346/222/255/346/224/276.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/346/232/202/345/201/234.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217110480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217160480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/21732086.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217480110.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217480160.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/350/243/201/345/207/21786320.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/351/242/204/350/247/210.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/351/242/204/350/247/210a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271280X480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X440.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X462.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227320X960.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227360X800.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227440X1920.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227462X1920.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X1280.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X800.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X854.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227540X960.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X360.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227854X480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227960X320.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227960X540.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P12H.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P240240.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P240320.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P24H.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P320240.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P320320.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/PDM.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/PDMY.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/PL0.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/PL1.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/PL2.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/PL3.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/PM1.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/PM1a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/PM2.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/PM2a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/PM3.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/PM3a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/PM4.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/PM4a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/PM5.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/PM5a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/PM6.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/PM6a.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/PMD.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/PYMD.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/Panel_background.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/Panel_overlay.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/Panel_params.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/344/272/256/345/272/246/346/235/241.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/344/277/235/345/255/230/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/207/217.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227b.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/212/240.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/217/226/350/211/262.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/220/270/347/256/241.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/233/276/346/240/207.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/233/276/347/211/207.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/234/206/345/275/242/345/205/263/351/227/255.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/234/206/345/275/242/347/241/256/345/256/232.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/242/236/345/212/240/345/233/276/346/240/207.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/226/207/346/234/2541.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/245/346/234/2371.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/266/351/227/2641.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/230/237/346/234/2371.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/244/232/351/200/211.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/244/232/351/200/211a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/256/275/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/257/274/345/205/245.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/257/274/345/207/272.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/345/270/256/345/212/251.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/346/225/260/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/346/225/260/346/215/256.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/346/226/207/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/346/227/213/350/275/254.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206A.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/346/267/273/345/212/240/351/223/276/346/216/2451.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/205/263.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/274/200.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233180.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233270.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/23390.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a180.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a270.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a90.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b180.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b270.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b90.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206A.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/216/257H1.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/216/257H2.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/216/257H3.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/216/257H4.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/216/257H5.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/216/257H6.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/272/277/347/250/213/345/215/225.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/272/277/347/250/213/345/244/232.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/275/221/347/273/234.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/347/275/221/347/273/234/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/350/243/201/345/207/217.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/350/247/206/351/242/221.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/350/275/256/346/222/2551.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/350/275/256/346/222/2552.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/350/275/256/346/222/2553.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/350/275/256/346/222/2554.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/350/275/256/346/222/2555.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/350/275/256/346/222/2556.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/350/275/256/346/222/255/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/350/275/275/345/205/245/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/350/277/233/345/272/246/346/235/241.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206M.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206Ma.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210110X480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210116X480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210160X480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210180X400.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210180X480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210240X240.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210240X320.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210240X400.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210240X427.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210270X480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210320X240.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320/345/234/206.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210320X86.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210360360/345/234/206.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210400X180.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210400X240.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210427X240.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210480X110.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210480X116.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210480X160.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210480X180.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210480X270.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480/345/234/206.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/21086X320.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/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.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/P/351/253/230/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/p0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257h.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/p/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/ucBoFangQiKongZhi1.BackgroundImage.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/ucBoFangQiKongZhi1_BackgroundImage.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/ucVideoCut1.BackgroundImage.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/ucVideoCut1_BackgroundImage.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/ucXiTongXianShi1.BackgroundImage.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/ucXiTongXianShiAdd1.BackgroundImage.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/ucXiTongXianShiColor1.BackgroundImage.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/gui/ucXiTongXianShiTable1.BackgroundImage.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/icons/app.ico +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/icons/trcc.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/icons/trcc_128x128.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/icons/trcc_16x16.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/icons/trcc_24x24.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/icons/trcc_256x256.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/icons/trcc_32x32.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/icons/trcc_48x48.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/icons/trcc_64x64.png +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/trcc-linux.desktop +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/assets/trcc-quirk-fix.service +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/cli/__main__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/cli/_device.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/cli/_diag.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/cli/_i18n.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/cli/_led.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/cli/_system.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/conf.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/core/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/core/builder.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/core/color.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/core/command_bus.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/core/commands/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/core/commands/initialize.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/core/commands/lcd.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/core/commands/led.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/core/encoding.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/core/i18n.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/core/instance.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/core/led_device.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/core/led_segment.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/core/paths.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/core/perf.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/core/platform.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/core/ports.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/data/trcc_usb.te +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/install/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/install/gui.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/ipc.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/assets.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/base.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/color_and_add_panels.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/constants.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/display_mode_panels.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/eyedropper.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/led_handler.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/metrics_mediator.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/overlay_element.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/overlay_grid.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/pipewire_capture.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/screen_capture.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/trcc_app.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/uc_about.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/uc_activity_sidebar.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/uc_color_wheel.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/uc_device.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/uc_image_cut.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/uc_info_module.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/uc_led_control.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/uc_preview.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/uc_screen_led.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/uc_sensor_picker.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/uc_system_info.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/uc_theme_local.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/uc_theme_mask.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/uc_theme_setting.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/uc_theme_web.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/qt_components/uc_video_cut.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/services/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/services/display.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/services/image.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/services/led.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/services/led_config.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/services/led_effects.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/services/media.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/services/overlay.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/services/perf.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/services/renderer.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/services/system.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/services/theme.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/services/theme_loader.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/services/theme_persistence.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/src/trcc/services/video_cache.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/README.md +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/bsd/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/bsd/test_detector.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/bsd/test_scsi.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/conftest.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/linux/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/linux/test_scsi.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/macos/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/macos/test_detector.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/macos/test_scsi.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/test_bulk.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/test_detector.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/test_factory.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/test_frame.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/test_hid.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/test_implementations.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/test_led.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/test_led_kvm.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/test_ly.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/test_scsi.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/windows/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/windows/test_detector.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/device/windows/test_scsi.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/infra/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/infra/test_data_repository.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/infra/test_dc_config.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/infra/test_dc_parser.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/infra/test_dc_writer.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/infra/test_debug_report.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/infra/test_media_player.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/infra/test_theme_cloud.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/infra/test_theme_downloader.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/system/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/system/bsd/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/system/bsd/test_hardware.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/system/bsd/test_platform.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/system/bsd/test_sensors.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/system/linux/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/system/linux/test_hardware.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/system/linux/test_platform.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/system/linux/test_sensors.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/system/macos/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/system/macos/test_hardware.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/system/macos/test_platform.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/system/macos/test_sensors.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/system/test_config.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/system/windows/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/system/windows/test_hardware.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/system/windows/test_platform.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/adapters/system/windows/test_sensors.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/api/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/api/conftest.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/api/test_api_buses.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/cli/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/cli/test_cli_buses.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/cli/test_device.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/cli/test_led.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/cli/test_serve.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/cli/test_system.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/cli/test_theme.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/core/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/core/test_app_buses.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/core/test_color.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/core/test_command_bus.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/core/test_encoding.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/core/test_i18n.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/core/test_instance.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/core/test_led_device.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/core/test_led_segment.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/core/test_led_segment_ax120.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/core/test_models.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/core/test_paths.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/core/test_perf.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/core/test_proxy_factory.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/qt_components/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/qt_components/test_base.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/qt_components/test_base_panel.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/qt_components/test_constants.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/qt_components/test_led_control.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/qt_components/test_misc.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/qt_components/test_preview.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/qt_components/test_screen_capture.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/qt_components/test_theme_mask.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/qt_components/test_theme_setting.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/qt_components/test_trcc_app.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/qt_components/test_widgets.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/services/__init__.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/services/conftest.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/services/test_display_integration.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/services/test_image_ansi.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/services/test_led.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/services/test_led_config.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/services/test_led_effects.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/services/test_media.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/services/test_overlay.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/services/test_perf.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/services/test_system.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/services/test_theme.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/services/test_theme_loader.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/services/test_theme_persistence.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/services/test_video_cache.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/test_architecture.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/test_conf.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/test_cpu.py +0 -0
- {trcc_linux-9.2.2 → trcc_linux-9.2.3}/tests/test_memory.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: trcc-linux
|
|
3
|
-
Version: 9.2.
|
|
3
|
+
Version: 9.2.3
|
|
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
|
|
@@ -19,13 +19,13 @@ from typing import Any, Callable, List, Optional
|
|
|
19
19
|
|
|
20
20
|
from trcc.core.models import (
|
|
21
21
|
ALL_DEVICES,
|
|
22
|
-
BULK_DEVICES,
|
|
23
|
-
HID_LCD_DEVICES,
|
|
24
|
-
LED_DEVICES,
|
|
25
|
-
LY_DEVICES,
|
|
26
|
-
SCSI_DEVICES,
|
|
22
|
+
BULK_DEVICES, # noqa: F401 — re-exported for downstream importers
|
|
23
|
+
HID_LCD_DEVICES, # noqa: F401
|
|
24
|
+
LED_DEVICES, # noqa: F401
|
|
25
|
+
LY_DEVICES, # noqa: F401
|
|
26
|
+
SCSI_DEVICES, # noqa: F401
|
|
27
27
|
DetectedDevice,
|
|
28
|
-
DeviceEntry, # noqa: F401
|
|
28
|
+
DeviceEntry, # noqa: F401
|
|
29
29
|
)
|
|
30
30
|
|
|
31
31
|
log = logging.getLogger(__name__)
|
|
@@ -51,13 +51,7 @@ def enable_hid_testing() -> None:
|
|
|
51
51
|
|
|
52
52
|
ScsiResolver = Callable[[int, int], Optional[str]]
|
|
53
53
|
|
|
54
|
-
|
|
55
|
-
(SCSI_DEVICES, 'scsi'),
|
|
56
|
-
(HID_LCD_DEVICES, 'hid'),
|
|
57
|
-
(BULK_DEVICES, 'bulk'),
|
|
58
|
-
(LY_DEVICES, 'ly'),
|
|
59
|
-
(LED_DEVICES, 'hid'),
|
|
60
|
-
]
|
|
54
|
+
# Protocol comes from DeviceEntry.protocol — models.py is the single source of truth.
|
|
61
55
|
|
|
62
56
|
|
|
63
57
|
class DeviceDetector:
|
|
@@ -96,31 +90,29 @@ class DeviceDetector:
|
|
|
96
90
|
return []
|
|
97
91
|
|
|
98
92
|
devices: List[DetectedDevice] = []
|
|
99
|
-
for
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
device_type=entry.device_type,
|
|
123
|
-
))
|
|
93
|
+
for (vid, pid), entry in ALL_DEVICES.items():
|
|
94
|
+
usb_dev: Any = usb.core.find(idVendor=vid, idProduct=pid)
|
|
95
|
+
if usb_dev is None:
|
|
96
|
+
continue
|
|
97
|
+
|
|
98
|
+
usb_path = f'usb:{usb_dev.bus}:{usb_dev.address}'
|
|
99
|
+
scsi_dev = (
|
|
100
|
+
scsi_resolver(vid, pid)
|
|
101
|
+
if scsi_resolver and entry.protocol == 'scsi'
|
|
102
|
+
else None
|
|
103
|
+
)
|
|
104
|
+
|
|
105
|
+
devices.append(DetectedDevice(
|
|
106
|
+
vid=vid, pid=pid,
|
|
107
|
+
vendor_name=entry.vendor, product_name=entry.product,
|
|
108
|
+
usb_path=usb_path,
|
|
109
|
+
scsi_device=scsi_dev,
|
|
110
|
+
implementation=entry.implementation,
|
|
111
|
+
model=entry.model,
|
|
112
|
+
button_image=entry.button_image,
|
|
113
|
+
protocol=entry.protocol,
|
|
114
|
+
device_type=entry.device_type,
|
|
115
|
+
))
|
|
124
116
|
|
|
125
117
|
log.info(
|
|
126
118
|
"Detected %d device(s): %s", len(devices),
|
|
@@ -25,7 +25,6 @@ from typing import Any, Callable, ClassVar, Dict, List, Optional, Tuple
|
|
|
25
25
|
|
|
26
26
|
from trcc.core.models import (
|
|
27
27
|
DEVICE_TYPE_NAMES,
|
|
28
|
-
LED_DEVICE_TYPE_NAME,
|
|
29
28
|
PROTOCOL_NAMES,
|
|
30
29
|
HandshakeResult,
|
|
31
30
|
)
|
|
@@ -626,12 +625,12 @@ class DeviceProtocolFactory:
|
|
|
626
625
|
# ControllerBuilder calls configure_scsi() to inject the platform-specific
|
|
627
626
|
# implementation (e.g. WindowsScsiProtocol) at composition time.
|
|
628
627
|
_PROTOCOL_REGISTRY: ClassVar[Dict[Tuple[str, str], Callable[..., DeviceProtocol]]] = {
|
|
629
|
-
('scsi', ''):
|
|
630
|
-
('bulk', ''):
|
|
631
|
-
('ly', ''):
|
|
632
|
-
('
|
|
633
|
-
('hid', ''):
|
|
634
|
-
|
|
628
|
+
('scsi', ''): lambda di: ScsiProtocol(di.path),
|
|
629
|
+
('bulk', ''): lambda di: BulkProtocol(vid=di.vid, pid=di.pid),
|
|
630
|
+
('ly', ''): lambda di: LyProtocol(vid=di.vid, pid=di.pid),
|
|
631
|
+
('led', ''): lambda di: LedProtocol(vid=di.vid, pid=di.pid),
|
|
632
|
+
('hid', ''): lambda di: HidProtocol(vid=di.vid, pid=di.pid,
|
|
633
|
+
device_type=getattr(di, 'device_type', 2)),
|
|
635
634
|
}
|
|
636
635
|
|
|
637
636
|
@classmethod
|
|
@@ -805,8 +804,6 @@ class DeviceProtocolFactory:
|
|
|
805
804
|
protocol = getattr(device_info, 'protocol', 'scsi')
|
|
806
805
|
device_type = getattr(device_info, 'device_type', 1)
|
|
807
806
|
|
|
808
|
-
implementation = getattr(device_info, 'implementation', '')
|
|
809
|
-
|
|
810
807
|
from trcc.core.models import PROTOCOL_TRAITS
|
|
811
808
|
traits = PROTOCOL_TRAITS.get(protocol)
|
|
812
809
|
if traits is None:
|
|
@@ -818,18 +815,6 @@ class DeviceProtocolFactory:
|
|
|
818
815
|
else:
|
|
819
816
|
active = "none"
|
|
820
817
|
|
|
821
|
-
# LED devices report as "led" protocol
|
|
822
|
-
if implementation == "hid_led":
|
|
823
|
-
return ProtocolInfo(
|
|
824
|
-
protocol="led",
|
|
825
|
-
device_type=1,
|
|
826
|
-
protocol_display=PROTOCOL_NAMES.get("led", "LED"),
|
|
827
|
-
device_type_display=LED_DEVICE_TYPE_NAME,
|
|
828
|
-
active_backend=active,
|
|
829
|
-
backends=backends,
|
|
830
|
-
transport_open=False,
|
|
831
|
-
)
|
|
832
|
-
|
|
833
818
|
return ProtocolInfo(
|
|
834
819
|
protocol=protocol,
|
|
835
820
|
device_type=device_type,
|
|
@@ -34,24 +34,11 @@ from trcc.adapters.device.factory import DeviceProtocolFactory
|
|
|
34
34
|
from trcc.adapters.device.led import probe_led_model
|
|
35
35
|
from trcc.adapters.infra.dc_config import DcConfig
|
|
36
36
|
from trcc.adapters.infra.dc_parser import load_config_json
|
|
37
|
-
from trcc.adapters.render.qt import QtRenderer
|
|
38
37
|
from trcc.services import DeviceService, MediaService, OverlayService
|
|
39
|
-
from trcc.services.system import
|
|
38
|
+
from trcc.services.system import SystemService
|
|
40
39
|
|
|
41
40
|
log = logging.getLogger(__name__)
|
|
42
41
|
|
|
43
|
-
# ── Initialization via commands (composition root) ────────────────────
|
|
44
|
-
# 1. InitPlatformCommand — logging, OS, settings, renderer
|
|
45
|
-
# 2. DiscoverDevicesCommand — triggered per endpoint that needs a device
|
|
46
|
-
|
|
47
|
-
from trcc.core.app import TrccApp # noqa: E402
|
|
48
|
-
from trcc.core.commands.initialize import InitPlatformCommand # noqa: E402
|
|
49
|
-
|
|
50
|
-
_trcc_app = TrccApp.init()
|
|
51
|
-
_trcc_app.os_bus.dispatch(InitPlatformCommand(
|
|
52
|
-
renderer_factory=QtRenderer,
|
|
53
|
-
))
|
|
54
|
-
|
|
55
42
|
# ── App ────────────────────────────────────────────────────────────────
|
|
56
43
|
|
|
57
44
|
app = FastAPI(title="TRCC Linux", version=__version__)
|
|
@@ -65,9 +52,8 @@ _device_svc = DeviceService(
|
|
|
65
52
|
get_protocol_info=DeviceProtocolFactory.get_protocol_info,
|
|
66
53
|
)
|
|
67
54
|
|
|
68
|
-
# System service (
|
|
69
|
-
_system_svc =
|
|
70
|
-
set_instance(_system_svc)
|
|
55
|
+
# System service — None until configure_app() is called by trcc serve
|
|
56
|
+
_system_svc: SystemService | None = None
|
|
71
57
|
|
|
72
58
|
# Lazy-initialized devices (set when device is selected)
|
|
73
59
|
_display_dispatcher = None # LCDDevice | None
|
|
@@ -83,6 +69,23 @@ def set_current_image(img) -> None:
|
|
|
83
69
|
_current_image = img
|
|
84
70
|
|
|
85
71
|
|
|
72
|
+
def configure_app() -> None:
|
|
73
|
+
"""Initialize platform, renderer, and system service.
|
|
74
|
+
|
|
75
|
+
Called once by CLI serve command before uvicorn starts. Not called at
|
|
76
|
+
import time so tests can import the module without triggering side effects.
|
|
77
|
+
"""
|
|
78
|
+
global _system_svc # noqa: PLW0603
|
|
79
|
+
from trcc.adapters.render.qt import QtRenderer
|
|
80
|
+
from trcc.core.app import TrccApp
|
|
81
|
+
from trcc.services.system import set_instance
|
|
82
|
+
|
|
83
|
+
trcc_app = TrccApp.init()
|
|
84
|
+
trcc_app.bootstrap(renderer_factory=QtRenderer)
|
|
85
|
+
_system_svc = trcc_app.build_system()
|
|
86
|
+
set_instance(_system_svc)
|
|
87
|
+
|
|
88
|
+
|
|
86
89
|
# ── Video playback (background thread) ───────────────────────────────
|
|
87
90
|
|
|
88
91
|
_media_service: MediaService | None = None
|
|
@@ -125,7 +128,7 @@ def start_video_playback(
|
|
|
125
128
|
if frame is None:
|
|
126
129
|
break
|
|
127
130
|
if should_send:
|
|
128
|
-
_device_svc.
|
|
131
|
+
_device_svc.send_frame(frame, width, height)
|
|
129
132
|
stop_event.wait(interval)
|
|
130
133
|
|
|
131
134
|
_video_thread = threading.Thread(target=_pump, daemon=True, name="api-video")
|
|
@@ -190,12 +193,15 @@ def start_overlay_loop(
|
|
|
190
193
|
|
|
191
194
|
def _loop() -> None:
|
|
192
195
|
while not stop_event.is_set():
|
|
196
|
+
if _system_svc is None:
|
|
197
|
+
stop_event.wait(2.0)
|
|
198
|
+
continue
|
|
193
199
|
metrics = _system_svc.all_metrics
|
|
194
200
|
if overlay.would_change(metrics):
|
|
195
201
|
overlay.update_metrics(metrics)
|
|
196
202
|
frame = overlay.render(metrics=metrics)
|
|
197
203
|
if frame is not None:
|
|
198
|
-
_device_svc.
|
|
204
|
+
_device_svc.send_frame(frame, width, height)
|
|
199
205
|
stop_event.wait(2.0)
|
|
200
206
|
|
|
201
207
|
_overlay_thread = threading.Thread(target=_loop, daemon=True, name="api-overlay")
|
|
@@ -242,7 +248,7 @@ def start_led_loop() -> None:
|
|
|
242
248
|
def _loop() -> None:
|
|
243
249
|
tick_count = 0
|
|
244
250
|
while not stop_event.is_set():
|
|
245
|
-
if tick_count % 20 == 0:
|
|
251
|
+
if tick_count % 20 == 0 and _system_svc is not None:
|
|
246
252
|
try:
|
|
247
253
|
led.update_metrics(_system_svc.all_metrics)
|
|
248
254
|
except Exception:
|
|
@@ -203,7 +203,7 @@ async def send_image(device_id: int, image: UploadFile, rotation: int = 0,
|
|
|
203
203
|
|
|
204
204
|
# Encode and send via service (handles JPEG vs RGB565, rotation, byte order)
|
|
205
205
|
# Frame capture is automatic via on_frame_sent callback
|
|
206
|
-
ok = _device_svc.
|
|
206
|
+
ok = _device_svc.send_frame(img, w, h)
|
|
207
207
|
|
|
208
208
|
if not ok:
|
|
209
209
|
raise HTTPException(status_code=500, detail="Send failed (device busy or error)")
|
|
@@ -156,8 +156,8 @@ async def render_overlay(dc_path: str, send: bool = True) -> dict:
|
|
|
156
156
|
import trcc.api as api
|
|
157
157
|
|
|
158
158
|
lcd = _get_display()
|
|
159
|
-
|
|
160
|
-
|
|
159
|
+
metrics = api._system_svc.all_metrics if api._system_svc is not None else None
|
|
160
|
+
result = lcd.render_overlay_from_dc(safe_path, send=send, metrics=metrics)
|
|
161
161
|
return dispatch_result(result)
|
|
162
162
|
|
|
163
163
|
|
|
@@ -427,10 +427,10 @@ async def create_theme(
|
|
|
427
427
|
api._overlay_svc = overlay_svc
|
|
428
428
|
from trcc.services.system import get_all_metrics
|
|
429
429
|
frame = overlay_svc.render(get_all_metrics())
|
|
430
|
-
lcd.frame.
|
|
430
|
+
lcd.frame.send_frame(frame)
|
|
431
431
|
api.set_current_image(frame)
|
|
432
432
|
else:
|
|
433
|
-
lcd.frame.
|
|
433
|
+
lcd.frame.send_frame(img)
|
|
434
434
|
api.set_current_image(img)
|
|
435
435
|
|
|
436
436
|
return {"success": True, "animated": False, "resolution": f"{w}x{h}"}
|
|
@@ -12,8 +12,12 @@ router = APIRouter(prefix="/system", tags=["system"])
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
def _get_system_svc():
|
|
15
|
-
"""Get the shared SystemService instance (initialized
|
|
15
|
+
"""Get the shared SystemService instance (initialized by configure_app())."""
|
|
16
|
+
from fastapi import HTTPException
|
|
17
|
+
|
|
16
18
|
import trcc.api as api
|
|
19
|
+
if api._system_svc is None:
|
|
20
|
+
raise HTTPException(status_code=503, detail="System service not initialized")
|
|
17
21
|
return api._system_svc
|
|
18
22
|
|
|
19
23
|
|
|
@@ -30,10 +34,6 @@ def get_metrics_by_category(category: str) -> dict:
|
|
|
30
34
|
"""Filtered metrics by category (cpu, gpu, mem, disk, net, fan)."""
|
|
31
35
|
from fastapi import HTTPException
|
|
32
36
|
|
|
33
|
-
svc = _get_system_svc()
|
|
34
|
-
m = svc.all_metrics
|
|
35
|
-
all_data = dataclasses.asdict(m)
|
|
36
|
-
|
|
37
37
|
prefix_map = {
|
|
38
38
|
"cpu": "cpu_",
|
|
39
39
|
"gpu": "gpu_",
|
|
@@ -52,6 +52,9 @@ def get_metrics_by_category(category: str) -> dict:
|
|
|
52
52
|
detail=f"Unknown category '{category}'. Use: {', '.join(sorted(prefix_map.keys()))}",
|
|
53
53
|
)
|
|
54
54
|
|
|
55
|
+
svc = _get_system_svc()
|
|
56
|
+
m = svc.all_metrics
|
|
57
|
+
all_data = dataclasses.asdict(m)
|
|
55
58
|
return {k: v for k, v in all_data.items() if k.startswith(prefix)}
|
|
56
59
|
|
|
57
60
|
|
|
@@ -1011,7 +1011,7 @@ def _cmd_serve(
|
|
|
1011
1011
|
|
|
1012
1012
|
import uvicorn
|
|
1013
1013
|
|
|
1014
|
-
from trcc.api import app as api_app, configure_auth, set_pairing_code # noqa: I001
|
|
1014
|
+
from trcc.api import app as api_app, configure_app, configure_auth, set_pairing_code # noqa: I001
|
|
1015
1015
|
from trcc.conf import Settings
|
|
1016
1016
|
|
|
1017
1017
|
# Token resolution: explicit --token > persistent config > auto-generate
|
|
@@ -1052,6 +1052,7 @@ def _cmd_serve(
|
|
|
1052
1052
|
print(" After pairing, the phone stays connected across restarts.\n")
|
|
1053
1053
|
|
|
1054
1054
|
_print_serve_qr(host, port, token, bool(ssl_kwargs))
|
|
1055
|
+
configure_app()
|
|
1055
1056
|
uvicorn.run(api_app, host=host, port=port, **ssl_kwargs)
|
|
1056
1057
|
return 0
|
|
1057
1058
|
|
|
@@ -84,7 +84,7 @@ def test(device=None, loop=False, preview=False):
|
|
|
84
84
|
for (r, g, b), name in colors:
|
|
85
85
|
print(f" Displaying: {name}")
|
|
86
86
|
img = ImageService.solid_color(r, g, b, w, h)
|
|
87
|
-
svc.
|
|
87
|
+
svc.send_frame(img, w, h)
|
|
88
88
|
if preview:
|
|
89
89
|
print(ImageService.to_ansi(img))
|
|
90
90
|
time.sleep(1)
|
|
@@ -165,7 +165,7 @@ def play_video(builder, video_path, *, device=None, loop=True, duration=0,
|
|
|
165
165
|
def _on_frame(img):
|
|
166
166
|
svc = lcd._device_svc
|
|
167
167
|
if svc:
|
|
168
|
-
svc.
|
|
168
|
+
svc.send_frame(img, w, h)
|
|
169
169
|
if preview:
|
|
170
170
|
from trcc.services import ImageService
|
|
171
171
|
print(ImageService.to_ansi_cursor_home(img), flush=True)
|
|
@@ -252,10 +252,10 @@ def screencast(builder, *, device=None, x=0, y=0, w=0, h=0, fps=10, preview=Fals
|
|
|
252
252
|
raw = proc.stdout.read(frame_size)
|
|
253
253
|
if len(raw) < frame_size:
|
|
254
254
|
break
|
|
255
|
-
# Detach from raw buffer immediately —
|
|
255
|
+
# Detach from raw buffer immediately — send_frame may hold a ref
|
|
256
256
|
qimg = QImage(raw, lcd_w, lcd_h, lcd_w * 3,
|
|
257
257
|
QImage.Format.Format_RGB888).copy()
|
|
258
|
-
svc.
|
|
258
|
+
svc.send_frame(qimg, lcd_w, lcd_h)
|
|
259
259
|
frames += 1
|
|
260
260
|
if preview:
|
|
261
261
|
print(ImageService.to_ansi_cursor_home(qimg), flush=True)
|
|
@@ -104,7 +104,7 @@ def load_theme(builder, name, *, device=None, preview=False):
|
|
|
104
104
|
|
|
105
105
|
loop_result = lcd._display_svc._run_tick_loop(
|
|
106
106
|
metrics_fn=metrics_fn,
|
|
107
|
-
on_frame=lambda img: svc.
|
|
107
|
+
on_frame=lambda img: svc.send_frame(img, w, h),
|
|
108
108
|
on_progress=lambda p, c, t: print(
|
|
109
109
|
f"\r {c} / {t} ({p:.0f}%)", end="", flush=True),
|
|
110
110
|
)
|
|
@@ -129,9 +129,13 @@ class TrccApp:
|
|
|
129
129
|
# ── Device scanning ──────────────────────────────────────────────────────
|
|
130
130
|
|
|
131
131
|
def scan(self) -> list[Device]:
|
|
132
|
-
"""Detect hardware, build and connect LCDDevice/LEDDevice
|
|
132
|
+
"""Detect hardware, build and connect LCDDevice/LEDDevice in parallel.
|
|
133
133
|
|
|
134
|
-
|
|
134
|
+
Detection is sequential (single USB enumerate call), then one thread
|
|
135
|
+
per device for connect + _wire_bus (USB handshakes run concurrently).
|
|
136
|
+
_wire_bus fires EnsureDataCommand per resolution in a background thread.
|
|
137
|
+
|
|
138
|
+
Sequence: bootstrap() or init() → OS → scan()
|
|
135
139
|
- LCD found → lcd_bus built and stored
|
|
136
140
|
- LED found → led_bus built and stored
|
|
137
141
|
- Notifies observers with DEVICES_CHANGED
|
|
@@ -140,20 +144,47 @@ class TrccApp:
|
|
|
140
144
|
found: list[DetectedDevice] = detect_fn()
|
|
141
145
|
|
|
142
146
|
self._devices = {}
|
|
143
|
-
|
|
147
|
+
lock = threading.Lock()
|
|
148
|
+
|
|
149
|
+
def _connect_one(detected: DetectedDevice) -> None:
|
|
144
150
|
device = self._builder.build_device(detected)
|
|
145
151
|
try:
|
|
146
152
|
device.connect(detected)
|
|
147
153
|
except Exception:
|
|
148
154
|
log.warning("scan: connect failed for %s — skipping", detected.path)
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
155
|
+
return
|
|
156
|
+
with lock:
|
|
157
|
+
self._devices[detected.path] = device
|
|
158
|
+
self._wire_bus(device)
|
|
159
|
+
|
|
160
|
+
threads = [
|
|
161
|
+
threading.Thread(target=_connect_one, args=(d,), daemon=True)
|
|
162
|
+
for d in found
|
|
163
|
+
]
|
|
164
|
+
for t in threads:
|
|
165
|
+
t.start()
|
|
166
|
+
for t in threads:
|
|
167
|
+
t.join(timeout=30)
|
|
152
168
|
|
|
153
169
|
log.debug("scan: %d device(s) found", len(self._devices))
|
|
154
170
|
self._notify(AppEvent.DEVICES_CHANGED, list(self._devices.values()))
|
|
155
171
|
return list(self._devices.values())
|
|
156
172
|
|
|
173
|
+
def bootstrap(self, renderer_factory: Any = None) -> list[Device]:
|
|
174
|
+
"""Init platform + connect all devices in parallel.
|
|
175
|
+
|
|
176
|
+
Single call that every composition root (GUI, API, CLI serve) makes
|
|
177
|
+
before starting its UI. After this returns:
|
|
178
|
+
- Platform initialized (logging, OS, settings, renderer)
|
|
179
|
+
- All devices connected and their buses ready
|
|
180
|
+
- EnsureDataCommand running in background per resolution
|
|
181
|
+
|
|
182
|
+
Returns the list of connected devices (same as scan()).
|
|
183
|
+
"""
|
|
184
|
+
from .commands.initialize import InitPlatformCommand
|
|
185
|
+
self.os_bus.dispatch(InitPlatformCommand(renderer_factory=renderer_factory))
|
|
186
|
+
return self.scan()
|
|
187
|
+
|
|
157
188
|
def device_connected(self, detected: DetectedDevice) -> None:
|
|
158
189
|
"""Build, connect, and register a newly discovered device, notify observers."""
|
|
159
190
|
device = self._builder.build_device(detected)
|
|
@@ -412,14 +412,14 @@ class LCDDevice(Device):
|
|
|
412
412
|
from ..services import ImageService
|
|
413
413
|
w, h = self.lcd_size
|
|
414
414
|
img = ImageService.open_and_resize(image_path, w, h)
|
|
415
|
-
self._device_svc.
|
|
415
|
+
self._device_svc.send_frame(img, w, h)
|
|
416
416
|
return {"success": True, "image": img, "message": f"Sent {image_path}"}
|
|
417
417
|
|
|
418
418
|
def send_color(self, r: int, g: int, b: int) -> dict:
|
|
419
419
|
from ..services import ImageService
|
|
420
420
|
w, h = self.lcd_size
|
|
421
421
|
img = ImageService.solid_color(r, g, b, w, h)
|
|
422
|
-
self._device_svc.
|
|
422
|
+
self._device_svc.send_frame(img, w, h)
|
|
423
423
|
return {"success": True, "image": img,
|
|
424
424
|
"message": f"Sent color #{r:02x}{g:02x}{b:02x}"}
|
|
425
425
|
|
|
@@ -428,13 +428,13 @@ class LCDDevice(Device):
|
|
|
428
428
|
if not self._device_svc.selected:
|
|
429
429
|
return {"success": False, "error": "No device selected"}
|
|
430
430
|
w, h = self.lcd_size
|
|
431
|
-
self._device_svc.
|
|
431
|
+
self._device_svc.send_frame_async(image, w, h)
|
|
432
432
|
return {"success": True}
|
|
433
433
|
|
|
434
434
|
def send_async(self, image: Any, width: int, height: int) -> None:
|
|
435
435
|
if self._device_svc.is_busy:
|
|
436
436
|
return
|
|
437
|
-
self._device_svc.
|
|
437
|
+
self._device_svc.send_frame_async(image, width, height)
|
|
438
438
|
|
|
439
439
|
def load_image(self, path: Any) -> dict:
|
|
440
440
|
image = self._display_svc.load_image_file(Path(path))
|
|
@@ -447,7 +447,7 @@ class LCDDevice(Device):
|
|
|
447
447
|
from ..services import ImageService
|
|
448
448
|
w, h = self.lcd_size
|
|
449
449
|
img = ImageService.solid_color(255, 0, 0, w, h)
|
|
450
|
-
self._device_svc.
|
|
450
|
+
self._device_svc.send_frame(img, w, h)
|
|
451
451
|
return {"success": True, "image": img, "message": "Device reset — RED"}
|
|
452
452
|
|
|
453
453
|
# ── Display settings (brightness/rotation/split) ─────────────
|
|
@@ -350,7 +350,7 @@ LED_DEVICES: dict[tuple[int, int], DeviceEntry] = {
|
|
|
350
350
|
(0x0416, 0x8001): DeviceEntry(
|
|
351
351
|
vendor="Winbond", product="LED Controller",
|
|
352
352
|
model="LED_DIGITAL", implementation="hid_led",
|
|
353
|
-
protocol="
|
|
353
|
+
protocol="led", device_type=1,
|
|
354
354
|
),
|
|
355
355
|
}
|
|
356
356
|
|
|
@@ -22,18 +22,11 @@ def launch(verbosity: int = 0, decorated: bool = False,
|
|
|
22
22
|
|
|
23
23
|
Returns the Qt exit code.
|
|
24
24
|
"""
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
# ── Bootstrap via commands ────────────────────────────────────────────
|
|
28
|
-
# 1. InitPlatformCommand — logging, OS, settings, renderer
|
|
29
|
-
# 2. DiscoverDevicesCommand — dispatched after Qt + IPC are ready (below)
|
|
30
|
-
from trcc.core.commands.initialize import InitPlatformCommand
|
|
31
|
-
app = TrccApp.init()
|
|
25
|
+
# ── Bootstrap — platform init + parallel device scan ─────────────────
|
|
32
26
|
from trcc.adapters.render.qt import QtRenderer
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
))
|
|
27
|
+
from trcc.core.app import AppEvent, TrccApp
|
|
28
|
+
app = TrccApp.init()
|
|
29
|
+
app.bootstrap(renderer_factory=QtRenderer)
|
|
37
30
|
|
|
38
31
|
# ── Platform deps ─────────────────────────────────────────────────────
|
|
39
32
|
setup = app.build_setup()
|
|
@@ -97,11 +90,11 @@ def launch(verbosity: int = 0, decorated: bool = False,
|
|
|
97
90
|
ipc_server.start()
|
|
98
91
|
window._ipc_server = ipc_server
|
|
99
92
|
|
|
100
|
-
# ── Register window as observer,
|
|
101
|
-
#
|
|
102
|
-
|
|
93
|
+
# ── Register window as observer, replay scan results, start metrics ──
|
|
94
|
+
# bootstrap() already ran scan(); registering now replays DEVICES_CHANGED
|
|
95
|
+
# so window.on_app_event creates handlers for all pre-discovered devices.
|
|
103
96
|
app.register(window) # type: ignore[arg-type]
|
|
104
|
-
app.
|
|
97
|
+
app._notify(AppEvent.DEVICES_CHANGED, list(app._devices.values()))
|
|
105
98
|
app.start_metrics_loop()
|
|
106
99
|
|
|
107
100
|
# ── IPC raise + signals ───────────────────────────────────────────────
|
|
@@ -21,7 +21,12 @@ import trcc.conf as _conf
|
|
|
21
21
|
from trcc.conf import Settings
|
|
22
22
|
|
|
23
23
|
from ..core.command_bus import CommandBus
|
|
24
|
-
from ..core.commands.lcd import
|
|
24
|
+
from ..core.commands.lcd import (
|
|
25
|
+
SetBrightnessCommand,
|
|
26
|
+
SetResolutionCommand,
|
|
27
|
+
SetRotationCommand,
|
|
28
|
+
SetSplitModeCommand,
|
|
29
|
+
)
|
|
25
30
|
from ..core.lcd_device import LCDDevice
|
|
26
31
|
from ..core.models import (
|
|
27
32
|
DEFAULT_BRIGHTNESS_LEVEL,
|
|
@@ -121,10 +126,10 @@ class LCDHandler(BaseHandler):
|
|
|
121
126
|
self._device_key = Settings.device_config_key(
|
|
122
127
|
device.device_index, device.vid, device.pid)
|
|
123
128
|
|
|
124
|
-
# Resolution change —
|
|
129
|
+
# Resolution change — dispatch via bus so EnsureDataCommand fires automatically
|
|
125
130
|
cur_w, cur_h = self._lcd.lcd_size
|
|
126
131
|
if (w, h) != (cur_w, cur_h):
|
|
127
|
-
self.
|
|
132
|
+
self._bus.dispatch(SetResolutionCommand(width=w, height=h))
|
|
128
133
|
self._w['preview'].set_resolution(w, h)
|
|
129
134
|
self._w['image_cut'].set_resolution(w, h)
|
|
130
135
|
self._w['video_cut'].set_resolution(w, h)
|
|
@@ -209,7 +209,7 @@ class DeviceService:
|
|
|
209
209
|
with self._send_lock:
|
|
210
210
|
self._send_busy = False
|
|
211
211
|
|
|
212
|
-
def
|
|
212
|
+
def send_frame(self, image: Any, width: int, height: int) -> bool:
|
|
213
213
|
"""Encode image for device and send.
|
|
214
214
|
|
|
215
215
|
Delegates encoding strategy to ImageService.encode_for_device() —
|
|
@@ -247,7 +247,7 @@ class DeviceService:
|
|
|
247
247
|
self._send_queue.append((data, width, height))
|
|
248
248
|
self._send_event.set()
|
|
249
249
|
|
|
250
|
-
def
|
|
250
|
+
def send_frame_async(self, image: Any, width: int, height: int) -> None:
|
|
251
251
|
"""Encode image and queue for the persistent send worker.
|
|
252
252
|
|
|
253
253
|
Encoding runs inline (~0.5ms), then routes through the same
|