trcc-linux 9.2.1__tar.gz → 9.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/PKG-INFO +1 -1
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/pyproject.toml +1 -1
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/__version__.py +1 -1
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/render/qt.py +14 -16
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/linux/setup.py +12 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/windows/setup.py +30 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/api/devices.py +8 -3
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/api/i18n.py +5 -4
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/api/themes.py +5 -7
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/cli/__init__.py +0 -1
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/cli/_device.py +0 -9
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/cli/_i18n.py +5 -4
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/cli/_led.py +28 -19
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/cli/_system.py +41 -56
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/cli/_theme.py +6 -8
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/core/app.py +100 -10
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/core/builder.py +8 -3
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/core/command_bus.py +4 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/core/commands/__init__.py +22 -1
- trcc_linux-9.2.2/src/trcc/core/commands/initialize.py +98 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/core/commands/lcd.py +12 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/core/lcd_device.py +9 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/core/ports.py +40 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/services/display.py +4 -18
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/services/led_effects.py +25 -19
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/services/overlay.py +4 -2
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/services/theme.py +0 -7
- trcc_linux-9.2.2/tests/adapters/device/linux/test_scsi.py +297 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/api/test_api.py +39 -24
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/cli/test_cli.py +15 -5
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/cli/test_device.py +0 -45
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/cli/test_led.py +8 -6
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/cli/test_theme.py +48 -16
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/conftest.py +55 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/core/test_app_buses.py +8 -14
- trcc_linux-9.2.2/tests/services/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/services/test_display_integration.py +375 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/services/test_led.py +4 -4
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/services/test_theme.py +8 -5
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/services/test_theme_persistence.py +116 -0
- trcc_linux-9.2.1/src/trcc/core/commands/initialize.py +0 -41
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/.gitignore +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/LICENSE +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/README.md +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/__main__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/_usb_helpers.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/bsd/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/bsd/detector.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/bsd/scsi.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/bulk.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/detector.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/factory.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/frame.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/hid.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/led.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/led_kvm.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/led_segment.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/linux/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/linux/detector.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/linux/scsi.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/ly.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/macos/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/macos/detector.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/macos/scsi.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/scsi.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/windows/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/windows/detector.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/windows/scsi.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/device/windows/scsi_protocol.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/infra/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/infra/binary_reader.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/infra/data_repository.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/infra/dc_config.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/infra/dc_parser.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/infra/dc_writer.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/infra/debug_report.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/infra/diagnostics.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/infra/doctor.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/infra/logging_setup.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/infra/media_player.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/infra/network.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/infra/theme_cloud.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/infra/theme_downloader.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/render/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/render/factory_render.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/_shared.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/bsd/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/bsd/hardware.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/bsd/platform.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/bsd/sensors.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/bsd/setup.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/config.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/linux/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/linux/autostart.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/linux/hardware.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/linux/platform.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/linux/sensors.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/macos/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/macos/autostart.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/macos/hardware.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/macos/platform.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/macos/sensors.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/macos/setup.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/windows/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/windows/autostart.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/windows/hardware.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/windows/platform.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/adapters/system/windows/sensors.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/api/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/api/display.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/api/led.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/api/models.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/api/system.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/com.github.lexonight1.trcc.policy +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/fonts/MSYH.TTC +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/fonts/MSYHBD.TTC +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/fonts/README.md +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/240240.gif +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/240320.gif +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/320240.gif +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/320320.gif +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A0/345/220/257/345/212/250/347/225/214/351/235/242.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A0/346/225/260/346/215/256/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A0/347/241/254/344/273/266/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1AK120 Digital.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1AK120 Digitala.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1AK120_Digital.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1AK120_Digitala.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1AS120 VISION.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1AS120 VISIONa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1AS120_VISION.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1AS120_VISIONa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1AX120 DIGITAL.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1AX120 DIGITALa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1AX120_DIGITAL.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1AX120_DIGITALa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1BA120 VISION.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1BA120 VISIONa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1BA120_VISION.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1BA120_VISIONa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1CORE VISION.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1CORE VISIONa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1CORE_VISION.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1CORE_VISIONa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1CZ1.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1CZ1a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1CZ2.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1CZ2a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1CZTV.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1CZTVa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1ELITE VISION.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1ELITE VISIONa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1ELITE_VISION.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1ELITE_VISIONa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN HORIZON PRO.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN HORIZON PROa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN MAGIC PRO.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN MAGIC PROa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN VISION V2.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN VISION V2a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN WARFRAME PRO.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN WARFRAME PROa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN WARFRAME SE.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN WARFRAME SEa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN WARFRAME.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN WARFRAMEa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN_HORIZON_PROa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN_MAGIC_PROa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN_VISION_V2.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN_VISION_V2a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN_WARFRAME.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PRO.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PROa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SE.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SEa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1FROZEN_WARFRAMEa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1GRAND VISION.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1GRAND VISIONa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1GRAND_VISION.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1GRAND_VISIONa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITAL.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITALa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1HYPER VISION.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1HYPER VISIONa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1HYPER_VISION.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1HYPER_VISIONa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1KVMALEDC6.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1KVMALEDC6a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LC1.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LC1a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LC2.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LC2JD.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LC2JDa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LC2a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LC3.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LC3a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LC5.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LC5a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LC7.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LC7a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LC8.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LC8a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LC9.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LC9a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LD10.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LD10a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LD6.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LD6a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LD7.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LD7a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LD8.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LD8a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LD9.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LD9a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF10.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF10V.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF10Va.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF10a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF11.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF11a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF12.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF12a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF13.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF13a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF14.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF14a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF15.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF15a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF16.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF167.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF16a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF17a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF18.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF18a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF19.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF19a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF20.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF20a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF21.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF21a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF22.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF22a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF25.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF25a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF8.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LF8a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LM16SE.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LM16SEa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LM19SE.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LM19SEa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LM22.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LM22a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LM24.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LM24a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LM26.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LM26a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LM27.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LM27a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LM30.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1LM30a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1Mjolnir VISION PRO.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1Mjolnir VISION PROa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1Mjolnir VISION.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1Mjolnir VISIONa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1Mjolnir_VISION.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1Mjolnir_VISION_PRO.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1Mjolnir_VISION_PROa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1Mjolnir_VISIONa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1PA120 DIGITAL.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1PA120 DIGITALa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1PA120_DIGITAL.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1PA120_DIGITALa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1PC1.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1PC1a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1RK120 DIGITAL.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1RK120 DIGITALa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1RK120_DIGITAL.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1RK120_DIGITALa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1RP130 VISION.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1RP130 VISIONa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1RP130_VISION.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1RP130_VISIONa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1Stream Vision.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1Stream Visiona.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1Stream_Vision.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1Stream_Visiona.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A1/345/205/263/344/272/216a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A2_update_overlay.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A2/344/270/213/346/213/211/346/241/206/345/272/225/345/233/276.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A2/344/270/213/346/213/211/346/241/206/351/200/211/346/213/251/346/235/241.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A2/344/270/213/346/213/211/351/200/211/346/213/251/346/241/206.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A2/347/253/213/345/215/263/346/233/264/346/226/260.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/Acpu.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/Adram.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/Afan.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/Agpu.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/Ahdd.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/Alogout/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/Alogout/351/273/230/350/256/244.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/Anet.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/App_about.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/App_form.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/App_main.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/App_sysinfo.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/App_theme_base.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/App_theme_gallery.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A/344/270/212/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A/344/270/213/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A/345/242/236/345/212/240/346/225/260/347/273/204.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A/346/225/260/346/215/256/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A/346/273/232/345/212/250/346/235/241.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/A/350/207/252/345/256/232/344/271/211.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0CZ1.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0CZ1d.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0CZ1e.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0CZ1en.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0CZ1f.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0CZ1h.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0CZ1p.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0CZ1r.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0CZ1tc.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0CZ1x.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0KVMA/347/201/257/346/216/247.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LC1.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LC1d.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LC1e.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LC1en.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LC1f.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LC1h.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LC1p.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LC1r.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LC1tc.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LC1x.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LC2.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LC2d.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LC2e.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LC2en.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LC2f.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LC2h.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LC2p.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LC2r.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LC2tc.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LC2x.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF10.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF10d.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF10e.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF10en.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF10f.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF10h.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF10p.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF10r.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF10tc.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF10x.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF11.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF11d.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF11e.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF11en.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF11f.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF11h.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF11p.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF11r.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF11tc.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF11x.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF12.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF12d.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF12e.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF12en.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF12f.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF12h.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF12p.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF12r.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF12tc.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF12x.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF13.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF13d.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF13e.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF13en.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF13f.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF13h.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF13p.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF13r.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF13tc.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF13x.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF15.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF15d.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF15e.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF15en.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF15f.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF15h.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF15p.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF15r.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF15tc.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF15x.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF8.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF8d.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF8e.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF8en.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF8f.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF8h.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF8p.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF8r.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF8tc.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0LF8x.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0rgblf13.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237d.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237e.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237en.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237f.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237h.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237p.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237r.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237tc.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237x.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217d.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217e.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217en.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217f.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217h.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217p.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217r.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217tc.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217x.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D1/345/244/264/347/233/2241.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D1/345/244/264/347/233/2242.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D1/345/244/264/347/233/2243.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D1/345/244/264/347/233/2244.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D1/345/244/264/347/233/2245.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2111.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21110.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21110a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21111.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21111a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21112.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21112a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2111a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2112.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2112a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2113.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2113a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2114.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2114a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2115.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2115a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2116.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2116a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2117.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2117a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2118.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2118a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2119.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2119a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D3/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D3/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D3/345/274/200/345/205/263b.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D3/346/227/213/351/222/256.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D3/346/227/213/351/222/2560.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D3/346/251/231.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D3/346/271/226.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D3/346/273/221/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D3/347/231/275.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D3/347/264/253.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D3/347/272/242.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D3/347/273/277.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D3/350/223/235.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D3/351/273/204.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/345/274/200/346/234/272.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/345/274/200/346/234/272a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2561.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2561a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2562a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2563.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2563a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2564.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2564a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2171.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2171a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2172.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2172a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2173.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2173a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2174.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2174a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2175.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2175a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2176.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2176a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/DAK120_DIGITAL.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/DAX120_DIGITAL.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/DCZ1.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/DFROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/DFROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/DLC1.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/DLC2.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/DLF10.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/DLF11.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/DLF12.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/DLF13.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/DLF15.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/DLF8.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/DPA120 DIGITAL.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/DPA120_DIGITAL.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/Dch1.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/Dch2.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/Dch3.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/Dch4.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/Dchcz1.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/2062.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/225.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/2252.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/256.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/2562.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217d.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217e.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217en.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217f.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217h.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217p.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217r.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217tc.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217x.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultra.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultraa.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/344/272/256/345/272/246/350/260/203/346/225/264.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/345/212/250/347/224/273/350/201/224/345/212/250.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/345/242/236/345/212/240/345/206/205/345/256/271/351/201/256/347/275/251.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217d.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217e.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217en.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217f.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217p.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217r.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217tc.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217x.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/346/250/241/345/235/227/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227en.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227tc.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2501.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2502.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2503.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0M1.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0M2.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0M3.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0M4.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0M5.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0M5a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0M6.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217110480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217160480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/21732086.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480110.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480160.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/21786320.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/346/222/255/346/224/276.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/346/222/255/346/224/276/345/231/250/346/216/247/345/210/266.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/346/232/202/345/201/234.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217110480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217160480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/21732086.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480110.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480160.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/350/243/201/345/207/21786320.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271280X480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X440.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X462.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227320X960.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227360X800.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227440X1920.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227462X1920.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X1280.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X800.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X854.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227540X960.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X360.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227854X480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227960X320.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227960X540.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P12H.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P240240.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P240320.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P24H.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P320240.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P320320.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/PDM.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/PDMY.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/PL0.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/PL1.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/PL2.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/PL3.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/PM1.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/PM1a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/PM2.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/PM2a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/PM3.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/PM3a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/PM4.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/PM4a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/PM5.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/PM5a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/PM6.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/PM6a.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/PMD.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/PYMD.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/Panel_background.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/Panel_overlay.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/Panel_params.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206/345/272/225/345/233/2762X.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206/345/272/225/345/233/2764X.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206/351/253/230/344/272/256.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/344/270/273/351/242/230/345/210/206/347/261/273/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/344/270/273/351/242/230/345/210/206/347/261/273/351/200/211/346/213/2510.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/344/272/256/345/272/246/346/235/241.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/344/277/235/345/255/230/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/207/217.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227b.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/212/240.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/217/226/350/211/262.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/220/270/347/256/241.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/233/276/346/240/207.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/233/276/347/211/207.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/234/206/345/275/242/345/205/263/351/227/255.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/234/206/345/275/242/347/241/256/345/256/232.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/345/233/276/346/240/207.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/226/207/346/234/2541.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/245/346/234/2371.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/266/351/227/2641.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/230/237/346/234/2371.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/244/232/351/200/211.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/244/232/351/200/211a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/256/275/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/257/274/345/205/245.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/257/274/345/207/272.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/257/274/345/207/272/346/211/200/346/234/211/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/270/256/345/212/251.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/345/277/253/346/215/267/346/226/271/345/274/217/345/244/247/345/260/217/346/273/221/345/212/250/346/235/241.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/346/225/260/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/346/225/260/346/215/256.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/346/226/207/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/346/227/213/350/275/254.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206A.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/346/267/273/345/212/240/351/223/276/346/216/2451.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/205/263.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/274/200.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/346/273/221/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/346/273/232/345/212/250/346/235/241/345/272/225/345/233/276.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/346/273/232/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233180.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233270.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/23390.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a180.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a270.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a90.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b180.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b270.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b90.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206A.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/216/257H1.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/216/257H2.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/216/257H3.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/216/257H4.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/216/257H5.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/216/257H6.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/233/264/346/222/255/350/247/206/351/242/221/350/275/275/345/205/245.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/272/277/347/250/213/345/215/225.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/272/277/347/250/213/345/244/232.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/275/221/347/273/234.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/347/275/221/347/273/234/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/350/243/201/345/207/217.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/350/247/206/351/242/221.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/350/275/256/346/222/2551.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/350/275/256/346/222/2552.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/350/275/256/346/222/2553.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/350/275/256/346/222/2554.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/350/275/256/346/222/2555.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/350/275/256/346/222/2556.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/350/275/256/346/222/255/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/350/275/275/345/205/245/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/350/277/233/345/272/246/346/235/241.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206M.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206Ma.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210110X480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210116X480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210160X480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210180X400.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210180X480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210240X240.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210240X320.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210240X400.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210240X427.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210270X480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210320X240.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320/345/234/206.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210320X86.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210360360/345/234/206.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210400X180.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210400X240.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210427X240.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X110.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X116.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X160.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X180.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X270.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480/345/234/206.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/21086X320.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251320320/345/234/206.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251360360/345/234/206.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251480480/345/234/206.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/234/350/211/262/346/273/221/345/212/250/345/235/227.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/242/234/350/211/262/351/200/211/346/213/251/345/234/210.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/P/351/253/230/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257h.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/p/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/ucBoFangQiKongZhi1.BackgroundImage.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/ucBoFangQiKongZhi1_BackgroundImage.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/ucVideoCut1.BackgroundImage.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/ucVideoCut1_BackgroundImage.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/ucXiTongXianShi1.BackgroundImage.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/ucXiTongXianShiAdd1.BackgroundImage.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/ucXiTongXianShiColor1.BackgroundImage.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/gui/ucXiTongXianShiTable1.BackgroundImage.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/icons/app.ico +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/icons/trcc.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/icons/trcc_128x128.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/icons/trcc_16x16.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/icons/trcc_24x24.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/icons/trcc_256x256.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/icons/trcc_32x32.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/icons/trcc_48x48.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/icons/trcc_64x64.png +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/trcc-linux.desktop +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/assets/trcc-quirk-fix.service +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/cli/__main__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/cli/_diag.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/cli/_display.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/conf.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/core/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/core/color.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/core/commands/led.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/core/encoding.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/core/i18n.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/core/instance.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/core/led_device.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/core/led_segment.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/core/models.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/core/paths.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/core/perf.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/core/platform.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/data/trcc_usb.te +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/gui/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/install/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/install/gui.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/ipc.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/assets.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/base.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/color_and_add_panels.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/constants.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/display_mode_panels.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/eyedropper.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/lcd_handler.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/led_handler.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/metrics_mediator.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/overlay_element.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/overlay_grid.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/pipewire_capture.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/screen_capture.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/trcc_app.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/uc_about.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/uc_activity_sidebar.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/uc_color_wheel.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/uc_device.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/uc_image_cut.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/uc_info_module.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/uc_led_control.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/uc_preview.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/uc_screen_led.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/uc_sensor_picker.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/uc_system_info.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/uc_theme_local.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/uc_theme_mask.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/uc_theme_setting.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/uc_theme_web.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/qt_components/uc_video_cut.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/services/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/services/device.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/services/image.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/services/led.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/services/led_config.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/services/media.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/services/perf.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/services/renderer.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/services/system.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/services/theme_loader.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/services/theme_persistence.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/src/trcc/services/video_cache.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/README.md +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/device/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/device/bsd/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/device/bsd/test_detector.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/device/bsd/test_scsi.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/device/conftest.py +0 -0
- {trcc_linux-9.2.1/tests/adapters/device/macos → trcc_linux-9.2.2/tests/adapters/device/linux}/__init__.py +0 -0
- {trcc_linux-9.2.1/tests/adapters/device/windows → trcc_linux-9.2.2/tests/adapters/device/macos}/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/device/macos/test_detector.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/device/macos/test_scsi.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/device/test_bulk.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/device/test_detector.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/device/test_factory.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/device/test_frame.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/device/test_hid.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/device/test_implementations.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/device/test_led.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/device/test_led_kvm.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/device/test_ly.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/device/test_scsi.py +0 -0
- {trcc_linux-9.2.1/tests/adapters/infra → trcc_linux-9.2.2/tests/adapters/device/windows}/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/device/windows/test_detector.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/device/windows/test_scsi.py +0 -0
- {trcc_linux-9.2.1/tests/adapters/system → trcc_linux-9.2.2/tests/adapters/infra}/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/infra/test_data_repository.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/infra/test_dc_config.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/infra/test_dc_parser.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/infra/test_dc_writer.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/infra/test_debug_report.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/infra/test_media_player.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/infra/test_theme_cloud.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/infra/test_theme_downloader.py +0 -0
- {trcc_linux-9.2.1/tests/adapters/system/bsd → trcc_linux-9.2.2/tests/adapters/system}/__init__.py +0 -0
- {trcc_linux-9.2.1/tests/adapters/system/linux → trcc_linux-9.2.2/tests/adapters/system/bsd}/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/system/bsd/test_hardware.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/system/bsd/test_platform.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/system/bsd/test_sensors.py +0 -0
- {trcc_linux-9.2.1/tests/adapters/system/macos → trcc_linux-9.2.2/tests/adapters/system/linux}/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/system/linux/test_hardware.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/system/linux/test_platform.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/system/linux/test_sensors.py +0 -0
- {trcc_linux-9.2.1/tests/adapters/system/windows → trcc_linux-9.2.2/tests/adapters/system/macos}/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/system/macos/test_hardware.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/system/macos/test_platform.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/system/macos/test_sensors.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/system/test_config.py +0 -0
- {trcc_linux-9.2.1/tests/api → trcc_linux-9.2.2/tests/adapters/system/windows}/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/system/windows/test_hardware.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/system/windows/test_platform.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/adapters/system/windows/test_sensors.py +0 -0
- {trcc_linux-9.2.1/tests/cli → trcc_linux-9.2.2/tests/api}/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/api/conftest.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/api/test_api_buses.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/api/test_api_security.py +0 -0
- {trcc_linux-9.2.1/tests/core → trcc_linux-9.2.2/tests/cli}/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/cli/test_cli_buses.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/cli/test_display.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/cli/test_serve.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/cli/test_system.py +0 -0
- {trcc_linux-9.2.1/tests/qt_components → trcc_linux-9.2.2/tests/core}/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/core/test_builder.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/core/test_color.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/core/test_command_bus.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/core/test_encoding.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/core/test_i18n.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/core/test_instance.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/core/test_lcd_device.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/core/test_led_device.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/core/test_led_segment.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/core/test_led_segment_ax120.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/core/test_models.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/core/test_paths.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/core/test_perf.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/core/test_proxy_factory.py +0 -0
- {trcc_linux-9.2.1/tests/services → trcc_linux-9.2.2/tests/qt_components}/__init__.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/qt_components/test_base.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/qt_components/test_base_panel.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/qt_components/test_constants.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/qt_components/test_lcd_handler.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/qt_components/test_led_control.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/qt_components/test_misc.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/qt_components/test_preview.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/qt_components/test_screen_capture.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/qt_components/test_theme_mask.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/qt_components/test_theme_setting.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/qt_components/test_trcc_app.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/qt_components/test_widgets.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/services/conftest.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/services/test_device.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/services/test_image_ansi.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/services/test_led_config.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/services/test_led_effects.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/services/test_media.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/services/test_overlay.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/services/test_perf.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/services/test_services.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/services/test_system.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/services/test_theme_loader.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/services/test_video_cache.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/test_architecture.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/test_conf.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/test_cpu.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/tests/test_integration.py +0 -0
- {trcc_linux-9.2.1 → trcc_linux-9.2.2}/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.2
|
|
4
4
|
Summary: Linux implementation of Thermalright LCD Control Center
|
|
5
5
|
Project-URL: Homepage, https://github.com/Lexonight1/thermalright-trcc-linux
|
|
6
6
|
Project-URL: Documentation, https://github.com/Lexonight1/thermalright-trcc-linux#readme
|
|
@@ -122,18 +122,26 @@ class QtRenderer(Renderer):
|
|
|
122
122
|
painter.end()
|
|
123
123
|
|
|
124
124
|
def get_font(self, size: int, bold: bool = False,
|
|
125
|
+
italic: bool = False,
|
|
125
126
|
font_name: str | None = None) -> Any:
|
|
126
|
-
key = (size, bold, font_name)
|
|
127
|
+
key = (size, bold, italic, font_name)
|
|
127
128
|
if key in self._font_cache:
|
|
128
129
|
return self._font_cache[key]
|
|
129
130
|
|
|
130
|
-
font = self._resolve_font(size, bold, font_name)
|
|
131
|
+
font = self._resolve_font(size, bold, italic, font_name)
|
|
131
132
|
self._font_cache[key] = font
|
|
132
133
|
return font
|
|
133
134
|
|
|
134
135
|
def _resolve_font(self, size: int, bold: bool,
|
|
136
|
+
italic: bool,
|
|
135
137
|
font_name: str | None) -> QFont:
|
|
136
138
|
"""Resolve font name → QFont with the same fallback chain as FontResolver."""
|
|
139
|
+
def _apply(f: QFont) -> QFont:
|
|
140
|
+
f.setPixelSize(size)
|
|
141
|
+
f.setBold(bold)
|
|
142
|
+
f.setItalic(italic)
|
|
143
|
+
return f
|
|
144
|
+
|
|
137
145
|
# User-specified font name
|
|
138
146
|
if font_name and font_name != 'Microsoft YaHei':
|
|
139
147
|
path = self._resolve_font_path(font_name, bold)
|
|
@@ -142,10 +150,7 @@ class QtRenderer(Renderer):
|
|
|
142
150
|
if font_id >= 0:
|
|
143
151
|
families = QFontDatabase.applicationFontFamilies(font_id)
|
|
144
152
|
if families:
|
|
145
|
-
|
|
146
|
-
f.setPixelSize(size)
|
|
147
|
-
f.setBold(bold)
|
|
148
|
-
return f
|
|
153
|
+
return _apply(QFont(families[0]))
|
|
149
154
|
|
|
150
155
|
# Search bundled + system fonts
|
|
151
156
|
bold_suffix = '-Bold' if bold else ''
|
|
@@ -165,19 +170,12 @@ class QtRenderer(Renderer):
|
|
|
165
170
|
if os.path.exists(path):
|
|
166
171
|
font_id = QFontDatabase.addApplicationFont(path)
|
|
167
172
|
if font_id >= 0:
|
|
168
|
-
families = QFontDatabase.applicationFontFamilies(
|
|
169
|
-
font_id)
|
|
173
|
+
families = QFontDatabase.applicationFontFamilies(font_id)
|
|
170
174
|
if families:
|
|
171
|
-
|
|
172
|
-
f.setPixelSize(size)
|
|
173
|
-
f.setBold(bold)
|
|
174
|
-
return f
|
|
175
|
+
return _apply(QFont(families[0]))
|
|
175
176
|
|
|
176
177
|
# Fallback: Qt default sans-serif
|
|
177
|
-
|
|
178
|
-
f.setPixelSize(size)
|
|
179
|
-
f.setBold(bold)
|
|
180
|
-
return f
|
|
178
|
+
return _apply(QFont('Sans'))
|
|
181
179
|
|
|
182
180
|
def _resolve_font_path(self, font_name: str,
|
|
183
181
|
bold: bool) -> str | None:
|
|
@@ -525,6 +525,18 @@ class LinuxSetup(PlatformSetup):
|
|
|
525
525
|
"/etc/polkit-1/rules.d/50-trcc.rules",
|
|
526
526
|
]
|
|
527
527
|
|
|
528
|
+
def setup_udev(self, dry_run: bool = False) -> int:
|
|
529
|
+
return setup_udev(dry_run=dry_run)
|
|
530
|
+
|
|
531
|
+
def setup_selinux(self) -> int:
|
|
532
|
+
return setup_selinux()
|
|
533
|
+
|
|
534
|
+
def setup_polkit(self) -> int:
|
|
535
|
+
return setup_polkit()
|
|
536
|
+
|
|
537
|
+
def install_desktop(self) -> int:
|
|
538
|
+
return install_desktop()
|
|
539
|
+
|
|
528
540
|
def acquire_instance_lock(self) -> object | None:
|
|
529
541
|
return _posix_acquire_instance_lock(self.config_dir())
|
|
530
542
|
|
|
@@ -93,6 +93,36 @@ class WindowsSetup(PlatformSetup):
|
|
|
93
93
|
def supports_winusb(self) -> bool:
|
|
94
94
|
return True
|
|
95
95
|
|
|
96
|
+
def setup_winusb(self) -> int:
|
|
97
|
+
"""Print Zadig-based WinUSB driver installation guide."""
|
|
98
|
+
from trcc.core.models import BULK_DEVICES, HID_LCD_DEVICES, LED_DEVICES, LY_DEVICES
|
|
99
|
+
|
|
100
|
+
winusb_vids: set[tuple[int, int]] = set()
|
|
101
|
+
for registry in (BULK_DEVICES, HID_LCD_DEVICES, LED_DEVICES, LY_DEVICES):
|
|
102
|
+
for vid, pid in registry:
|
|
103
|
+
winusb_vids.add((vid, pid))
|
|
104
|
+
|
|
105
|
+
print("\n TRCC WinUSB Driver Setup\n")
|
|
106
|
+
print(" SCSI devices (Frozen Warframe, Elite Vision, CZTV, etc.)")
|
|
107
|
+
print(" use the default USB Mass Storage driver — no setup needed.\n")
|
|
108
|
+
print(" HID, Bulk, and LY devices need the WinUSB driver.")
|
|
109
|
+
print(" Install it using Zadig (free, open-source):\n")
|
|
110
|
+
print(" 1. Download Zadig: https://zadig.akeo.ie/")
|
|
111
|
+
print(" 2. Run Zadig → Options → List All Devices")
|
|
112
|
+
print(" 3. Select your Thermalright device from the dropdown")
|
|
113
|
+
print(" 4. Set target driver to WinUSB")
|
|
114
|
+
print(" 5. Click 'Replace Driver' (or 'Install Driver')")
|
|
115
|
+
print(" 6. Replug the USB device\n")
|
|
116
|
+
print(" Devices that need WinUSB:")
|
|
117
|
+
for vid, pid in sorted(winusb_vids):
|
|
118
|
+
for registry in (BULK_DEVICES, HID_LCD_DEVICES, LED_DEVICES, LY_DEVICES):
|
|
119
|
+
if (vid, pid) in registry:
|
|
120
|
+
entry = registry[(vid, pid)]
|
|
121
|
+
print(f" {vid:04X}:{pid:04X} {entry.product}")
|
|
122
|
+
break
|
|
123
|
+
print()
|
|
124
|
+
return 0
|
|
125
|
+
|
|
96
126
|
def configure_stdout(self) -> None:
|
|
97
127
|
"""Force UTF-8 on Windows console stdout/stderr."""
|
|
98
128
|
import io
|
|
@@ -121,9 +121,14 @@ def select_device(device_id: int) -> dict:
|
|
|
121
121
|
return {"selected": dev.name, "resolution": dev.resolution}
|
|
122
122
|
w_res, h_res = dev.resolution or (320, 320)
|
|
123
123
|
|
|
124
|
-
# Download/extract theme data for this resolution
|
|
125
|
-
|
|
126
|
-
|
|
124
|
+
# Download/extract theme data for this resolution via command bus
|
|
125
|
+
# (lcd_bus may not be wired yet in edge-case fallback paths — skip gracefully)
|
|
126
|
+
from trcc.core.app import TrccApp
|
|
127
|
+
from trcc.core.commands.lcd import EnsureDataCommand
|
|
128
|
+
try:
|
|
129
|
+
TrccApp.get().lcd_bus.dispatch(EnsureDataCommand(width=w_res, height=h_res))
|
|
130
|
+
except RuntimeError:
|
|
131
|
+
pass
|
|
127
132
|
|
|
128
133
|
api.set_current_image(ImageService.solid_color(0, 0, 0, w_res, h_res))
|
|
129
134
|
|
|
@@ -33,13 +33,14 @@ def set_language(code: str) -> dict:
|
|
|
33
33
|
"""Set the application language by ISO 639-1 code."""
|
|
34
34
|
from fastapi import HTTPException
|
|
35
35
|
|
|
36
|
-
from trcc.
|
|
36
|
+
from trcc.core.app import TrccApp
|
|
37
|
+
from trcc.core.commands.initialize import SetLanguageCommand
|
|
37
38
|
from trcc.core.i18n import LANGUAGE_NAMES
|
|
38
39
|
|
|
39
|
-
|
|
40
|
+
result = TrccApp.get().os_bus.dispatch(SetLanguageCommand(code=code))
|
|
41
|
+
if not result.success:
|
|
40
42
|
raise HTTPException(
|
|
41
43
|
status_code=400,
|
|
42
44
|
detail=f"Unknown language code '{code}'. Use GET /i18n/languages for valid codes.",
|
|
43
45
|
)
|
|
44
|
-
|
|
45
|
-
return {"code": code, "name": LANGUAGE_NAMES[code]}
|
|
46
|
+
return {"code": code, "name": LANGUAGE_NAMES.get(code, code)}
|
|
@@ -51,10 +51,12 @@ def init_theme_data(resolution: str = "320x320") -> dict:
|
|
|
51
51
|
|
|
52
52
|
Safe to call repeatedly — no-op if data is already cached.
|
|
53
53
|
Designed for remote apps to call on startup before listing themes.
|
|
54
|
+
Works regardless of whether a device is connected.
|
|
54
55
|
"""
|
|
56
|
+
from trcc.adapters.infra.data_repository import DataManager
|
|
57
|
+
|
|
55
58
|
w, h = _parse_resolution(resolution)
|
|
56
59
|
|
|
57
|
-
from trcc.adapters.infra.data_repository import DataManager
|
|
58
60
|
DataManager.ensure_all(w, h)
|
|
59
61
|
|
|
60
62
|
# Remount static dirs now that data exists on disk
|
|
@@ -71,8 +73,7 @@ def list_themes(resolution: str = "320x320") -> list[ThemeResponse]:
|
|
|
71
73
|
|
|
72
74
|
from pathlib import Path
|
|
73
75
|
|
|
74
|
-
from trcc.adapters.infra.data_repository import
|
|
75
|
-
DataManager.ensure_themes(w, h)
|
|
76
|
+
from trcc.adapters.infra.data_repository import ThemeDir
|
|
76
77
|
td = ThemeDir.for_resolution(w, h)
|
|
77
78
|
theme_dir = Path(str(td))
|
|
78
79
|
themes = ThemeService.discover_local(theme_dir, (w, h))
|
|
@@ -94,7 +95,6 @@ def list_web_themes(resolution: str = "320x320") -> list[WebThemeResponse]:
|
|
|
94
95
|
w, h = _parse_resolution(resolution)
|
|
95
96
|
|
|
96
97
|
from trcc.adapters.infra.data_repository import DataManager
|
|
97
|
-
DataManager.ensure_web(w, h)
|
|
98
98
|
web_dir = DataManager.get_web_dir(w, h)
|
|
99
99
|
|
|
100
100
|
results: list[WebThemeResponse] = []
|
|
@@ -185,7 +185,6 @@ def list_masks(resolution: str = "320x320") -> list[MaskResponse]:
|
|
|
185
185
|
w, h = _parse_resolution(resolution)
|
|
186
186
|
|
|
187
187
|
from trcc.adapters.infra.data_repository import DataManager
|
|
188
|
-
DataManager.ensure_web_masks(w, h)
|
|
189
188
|
masks_dir = DataManager.get_web_masks_dir(w, h)
|
|
190
189
|
|
|
191
190
|
results: list[MaskResponse] = []
|
|
@@ -305,8 +304,7 @@ def export_theme(theme_name: str, resolution: str = "320x320") -> Response:
|
|
|
305
304
|
|
|
306
305
|
w, h = _parse_resolution(resolution)
|
|
307
306
|
|
|
308
|
-
from trcc.adapters.infra.data_repository import
|
|
309
|
-
DataManager.ensure_themes(w, h)
|
|
307
|
+
from trcc.adapters.infra.data_repository import ThemeDir
|
|
310
308
|
td = ThemeDir.for_resolution(w, h)
|
|
311
309
|
theme_dir = Path(str(td))
|
|
312
310
|
|
|
@@ -1175,7 +1175,6 @@ select_device = _device.select
|
|
|
1175
1175
|
# Backward-compat for tests and external consumers
|
|
1176
1176
|
_probe_device = _device._probe
|
|
1177
1177
|
_format_device = _device._format
|
|
1178
|
-
_ensure_extracted = _device._ensure_extracted
|
|
1179
1178
|
_get_service = _device._get_service
|
|
1180
1179
|
discover_resolution = _device.discover_resolution
|
|
1181
1180
|
send_image = _display.send_image
|
|
@@ -40,15 +40,6 @@ def discover_resolution(dev) -> None:
|
|
|
40
40
|
svc._discover_resolution(dev)
|
|
41
41
|
|
|
42
42
|
|
|
43
|
-
def _ensure_extracted(driver):
|
|
44
|
-
"""Extract theme/mask archives for the driver's detected resolution (one-time)."""
|
|
45
|
-
try:
|
|
46
|
-
if driver.implementation:
|
|
47
|
-
w, h = driver.implementation.resolution
|
|
48
|
-
from trcc.adapters.infra.data_repository import DataManager
|
|
49
|
-
DataManager.ensure_all(w, h)
|
|
50
|
-
except Exception:
|
|
51
|
-
pass # Non-fatal — themes are optional for CLI commands
|
|
52
43
|
|
|
53
44
|
|
|
54
45
|
|
|
@@ -30,13 +30,14 @@ def get_language():
|
|
|
30
30
|
@_cli_handler
|
|
31
31
|
def set_language(code: str):
|
|
32
32
|
"""Set the application language by ISO 639-1 code."""
|
|
33
|
-
from trcc.
|
|
33
|
+
from trcc.core.app import TrccApp
|
|
34
|
+
from trcc.core.commands.initialize import SetLanguageCommand
|
|
34
35
|
from trcc.core.i18n import LANGUAGE_NAMES
|
|
35
36
|
|
|
36
|
-
|
|
37
|
+
result = TrccApp.get().os_bus.dispatch(SetLanguageCommand(code=code))
|
|
38
|
+
if not result.success:
|
|
37
39
|
print(f"Unknown language code '{code}'.")
|
|
38
40
|
print("Use 'trcc lang-list' to see valid codes.")
|
|
39
41
|
return 1
|
|
40
|
-
|
|
41
|
-
print(f"Language set to {code} ({LANGUAGE_NAMES[code]})")
|
|
42
|
+
print(f"Language set to {code} ({LANGUAGE_NAMES.get(code, code)})")
|
|
42
43
|
return 0
|
|
@@ -44,15 +44,14 @@ def _print_result(result: dict, *, preview: bool = False) -> int:
|
|
|
44
44
|
return 0
|
|
45
45
|
|
|
46
46
|
|
|
47
|
-
def
|
|
48
|
-
"""
|
|
47
|
+
def _led_dispatch(cmd_cls, preview: bool = False, **fields) -> int:
|
|
48
|
+
"""Connect LED, dispatch a command through the bus, print result."""
|
|
49
49
|
rc = _connect_or_fail()
|
|
50
50
|
if rc:
|
|
51
51
|
return rc
|
|
52
52
|
from trcc.core.app import TrccApp
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
return _print_result(getattr(led, method)(*args, **kwargs), preview=preview)
|
|
53
|
+
result = TrccApp.get().led_bus.dispatch(cmd_cls(**fields))
|
|
54
|
+
return _print_result(result.payload, preview=preview)
|
|
56
55
|
|
|
57
56
|
|
|
58
57
|
# =========================================================================
|
|
@@ -96,10 +95,8 @@ def set_mode(builder, mode_name, *, preview=False):
|
|
|
96
95
|
if rc:
|
|
97
96
|
return rc
|
|
98
97
|
from trcc.core.app import TrccApp
|
|
99
|
-
led
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
result = led.set_mode(mode_name)
|
|
98
|
+
from trcc.core.commands.led import SetLEDModeCommand
|
|
99
|
+
result = TrccApp.get().led_bus.dispatch(SetLEDModeCommand(mode=mode_name)).payload
|
|
103
100
|
if not result["success"]:
|
|
104
101
|
print(f"Error: {result['error']}")
|
|
105
102
|
if result.get("available"):
|
|
@@ -108,19 +105,23 @@ def set_mode(builder, mode_name, *, preview=False):
|
|
|
108
105
|
|
|
109
106
|
if result["animated"]:
|
|
110
107
|
from trcc.cli import _ensure_system
|
|
108
|
+
from trcc.core.commands.led import UpdateMetricsLEDCommand
|
|
111
109
|
from trcc.services import LEDService
|
|
112
110
|
from trcc.services.system import get_all_metrics
|
|
113
111
|
|
|
114
112
|
_ensure_system(builder)
|
|
113
|
+
led_bus = TrccApp.get().led_bus
|
|
114
|
+
led_device = TrccApp.get().led_device
|
|
115
|
+
assert led_device is not None
|
|
115
116
|
print(f"LED mode: {mode_name} (running, Ctrl+C to stop)")
|
|
116
117
|
_metric_ticks = 0
|
|
117
118
|
try:
|
|
118
119
|
while True:
|
|
119
120
|
# Refresh sensor metrics every 20 ticks (~1 s)
|
|
120
121
|
if _metric_ticks % 20 == 0:
|
|
121
|
-
|
|
122
|
+
led_bus.dispatch(UpdateMetricsLEDCommand(metrics=get_all_metrics()))
|
|
122
123
|
_metric_ticks += 1
|
|
123
|
-
tick =
|
|
124
|
+
tick = led_device.tick_with_result()
|
|
124
125
|
if preview and tick.get("colors"):
|
|
125
126
|
print(LEDService.zones_to_ansi(tick["colors"]),
|
|
126
127
|
end='\r', flush=True)
|
|
@@ -152,7 +153,8 @@ def set_led_brightness(builder, level, *, preview=False):
|
|
|
152
153
|
@_cli_handler
|
|
153
154
|
def led_off(builder):
|
|
154
155
|
"""Turn LEDs off."""
|
|
155
|
-
|
|
156
|
+
from trcc.core.commands.led import ToggleLEDCommand
|
|
157
|
+
return _led_dispatch(ToggleLEDCommand, on=False)
|
|
156
158
|
|
|
157
159
|
|
|
158
160
|
@_cli_handler
|
|
@@ -187,43 +189,50 @@ def set_zone_color(builder, zone: int, hex_color: str, *, preview: bool = False)
|
|
|
187
189
|
@_cli_handler
|
|
188
190
|
def set_zone_mode(builder, zone: int, mode_name: str, *, preview: bool = False):
|
|
189
191
|
"""Set effect mode for a specific LED zone."""
|
|
190
|
-
|
|
192
|
+
from trcc.core.commands.led import SetZoneModeCommand
|
|
193
|
+
return _led_dispatch(SetZoneModeCommand, preview=preview, zone=zone, mode=mode_name)
|
|
191
194
|
|
|
192
195
|
|
|
193
196
|
@_cli_handler
|
|
194
197
|
def set_zone_brightness(builder, zone: int, level: int, *, preview: bool = False):
|
|
195
198
|
"""Set brightness for a specific LED zone (0-100)."""
|
|
196
|
-
|
|
199
|
+
from trcc.core.commands.led import SetZoneBrightnessCommand
|
|
200
|
+
return _led_dispatch(SetZoneBrightnessCommand, preview=preview, zone=zone, level=level)
|
|
197
201
|
|
|
198
202
|
|
|
199
203
|
@_cli_handler
|
|
200
204
|
def toggle_zone(builder, zone: int, on: bool):
|
|
201
205
|
"""Toggle a specific LED zone on/off."""
|
|
202
|
-
|
|
206
|
+
from trcc.core.commands.led import ToggleZoneCommand
|
|
207
|
+
return _led_dispatch(ToggleZoneCommand, zone=zone, on=on)
|
|
203
208
|
|
|
204
209
|
|
|
205
210
|
@_cli_handler
|
|
206
211
|
def set_zone_sync(builder, enabled: bool, *, interval: int | None = None):
|
|
207
212
|
"""Enable/disable zone sync (circulate or select-all depending on style)."""
|
|
208
|
-
|
|
213
|
+
from trcc.core.commands.led import SetZoneSyncCommand
|
|
214
|
+
return _led_dispatch(SetZoneSyncCommand, enabled=enabled, interval=interval)
|
|
209
215
|
|
|
210
216
|
|
|
211
217
|
@_cli_handler
|
|
212
218
|
def toggle_segment(builder, index: int, on: bool):
|
|
213
219
|
"""Toggle a specific LED segment on/off."""
|
|
214
|
-
|
|
220
|
+
from trcc.core.commands.led import ToggleSegmentCommand
|
|
221
|
+
return _led_dispatch(ToggleSegmentCommand, index=index, on=on)
|
|
215
222
|
|
|
216
223
|
|
|
217
224
|
@_cli_handler
|
|
218
225
|
def set_clock_format(builder, is_24h: bool):
|
|
219
226
|
"""Set LED segment display clock format (12h/24h)."""
|
|
220
|
-
|
|
227
|
+
from trcc.core.commands.led import SetClockFormatCommand
|
|
228
|
+
return _led_dispatch(SetClockFormatCommand, is_24h=is_24h)
|
|
221
229
|
|
|
222
230
|
|
|
223
231
|
@_cli_handler
|
|
224
232
|
def set_temp_unit(builder, unit: str):
|
|
225
233
|
"""Set LED segment display temperature unit (C/F)."""
|
|
226
|
-
|
|
234
|
+
from trcc.core.commands.led import SetTempUnitLEDCommand
|
|
235
|
+
return _led_dispatch(SetTempUnitLEDCommand, unit=unit)
|
|
227
236
|
|
|
228
237
|
|
|
229
238
|
# =========================================================================
|
|
@@ -33,8 +33,10 @@ def setup_udev(dry_run: bool = False) -> int:
|
|
|
33
33
|
err = _require_linux("setup-udev")
|
|
34
34
|
if err is not None:
|
|
35
35
|
return err
|
|
36
|
-
from trcc.
|
|
37
|
-
|
|
36
|
+
from trcc.core.app import TrccApp
|
|
37
|
+
from trcc.core.commands.initialize import SetupUdevCommand
|
|
38
|
+
result = TrccApp.get().os_bus.dispatch(SetupUdevCommand(dry_run=dry_run))
|
|
39
|
+
return 0 if result.success else 1
|
|
38
40
|
|
|
39
41
|
|
|
40
42
|
def setup_selinux() -> int:
|
|
@@ -42,8 +44,10 @@ def setup_selinux() -> int:
|
|
|
42
44
|
err = _require_linux("setup-selinux")
|
|
43
45
|
if err is not None:
|
|
44
46
|
return err
|
|
45
|
-
from trcc.
|
|
46
|
-
|
|
47
|
+
from trcc.core.app import TrccApp
|
|
48
|
+
from trcc.core.commands.initialize import SetupSelinuxCommand
|
|
49
|
+
result = TrccApp.get().os_bus.dispatch(SetupSelinuxCommand())
|
|
50
|
+
return 0 if result.success else 1
|
|
47
51
|
|
|
48
52
|
|
|
49
53
|
def setup_polkit() -> int:
|
|
@@ -51,8 +55,10 @@ def setup_polkit() -> int:
|
|
|
51
55
|
err = _require_linux("setup-polkit")
|
|
52
56
|
if err is not None:
|
|
53
57
|
return err
|
|
54
|
-
from trcc.
|
|
55
|
-
|
|
58
|
+
from trcc.core.app import TrccApp
|
|
59
|
+
from trcc.core.commands.initialize import SetupPolkitCommand
|
|
60
|
+
result = TrccApp.get().os_bus.dispatch(SetupPolkitCommand())
|
|
61
|
+
return 0 if result.success else 1
|
|
56
62
|
|
|
57
63
|
|
|
58
64
|
def install_desktop() -> int:
|
|
@@ -60,8 +66,10 @@ def install_desktop() -> int:
|
|
|
60
66
|
err = _require_linux("install-desktop")
|
|
61
67
|
if err is not None:
|
|
62
68
|
return err
|
|
63
|
-
from trcc.
|
|
64
|
-
|
|
69
|
+
from trcc.core.app import TrccApp
|
|
70
|
+
from trcc.core.commands.initialize import InstallDesktopCommand
|
|
71
|
+
result = TrccApp.get().os_bus.dispatch(InstallDesktopCommand())
|
|
72
|
+
return 0 if result.success else 1
|
|
65
73
|
|
|
66
74
|
|
|
67
75
|
def _sudo_run(cmd):
|
|
@@ -133,7 +141,7 @@ def show_info(builder=None, *, preview: bool = False, metric: str | None = None)
|
|
|
133
141
|
# (see import block above). CLI entry points in __init__.py call them directly.
|
|
134
142
|
|
|
135
143
|
|
|
136
|
-
def setup_winusb():
|
|
144
|
+
def setup_winusb() -> int:
|
|
137
145
|
"""Guide WinUSB driver installation for Thermalright USB devices (Windows only).
|
|
138
146
|
|
|
139
147
|
SCSI devices (Frozen Warframe, Elite Vision, etc.) use the default
|
|
@@ -146,35 +154,10 @@ def setup_winusb():
|
|
|
146
154
|
print("This command is for Windows only.")
|
|
147
155
|
print("On Linux, use: trcc setup-udev")
|
|
148
156
|
return 1
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
for registry in (BULK_DEVICES, HID_LCD_DEVICES, LED_DEVICES, LY_DEVICES):
|
|
154
|
-
for vid, pid in registry:
|
|
155
|
-
winusb_vids.add((vid, pid))
|
|
156
|
-
|
|
157
|
-
print("\n TRCC WinUSB Driver Setup\n")
|
|
158
|
-
print(" SCSI devices (Frozen Warframe, Elite Vision, CZTV, etc.)")
|
|
159
|
-
print(" use the default USB Mass Storage driver — no setup needed.\n")
|
|
160
|
-
print(" HID, Bulk, and LY devices need the WinUSB driver.")
|
|
161
|
-
print(" Install it using Zadig (free, open-source):\n")
|
|
162
|
-
print(" 1. Download Zadig: https://zadig.akeo.ie/")
|
|
163
|
-
print(" 2. Run Zadig → Options → List All Devices")
|
|
164
|
-
print(" 3. Select your Thermalright device from the dropdown")
|
|
165
|
-
print(" 4. Set target driver to WinUSB")
|
|
166
|
-
print(" 5. Click 'Replace Driver' (or 'Install Driver')")
|
|
167
|
-
print(" 6. Replug the USB device\n")
|
|
168
|
-
print(" Devices that need WinUSB:")
|
|
169
|
-
for vid, pid in sorted(winusb_vids):
|
|
170
|
-
# Look up friendly name
|
|
171
|
-
for registry in (BULK_DEVICES, HID_LCD_DEVICES, LED_DEVICES, LY_DEVICES):
|
|
172
|
-
if (vid, pid) in registry:
|
|
173
|
-
entry = registry[(vid, pid)]
|
|
174
|
-
print(f" {vid:04X}:{pid:04X} {entry.product}")
|
|
175
|
-
break
|
|
176
|
-
print()
|
|
177
|
-
return 0
|
|
157
|
+
from trcc.core.app import TrccApp
|
|
158
|
+
from trcc.core.commands.initialize import SetupWinUsbCommand
|
|
159
|
+
result = TrccApp.get().os_bus.dispatch(SetupWinUsbCommand())
|
|
160
|
+
return 0 if result.success else 1
|
|
178
161
|
|
|
179
162
|
|
|
180
163
|
# _detect_install_method moved to core/platform.py as detect_install_method()
|
|
@@ -228,6 +211,14 @@ def uninstall(*, yes: bool = False):
|
|
|
228
211
|
os.remove(path_str)
|
|
229
212
|
removed.append(path_str)
|
|
230
213
|
|
|
214
|
+
# Disable autostart before shutting down logging — autostart only touches
|
|
215
|
+
# ~/.config/autostart/, not ~/.trcc/, so order is safe here.
|
|
216
|
+
from trcc.core.builder import ControllerBuilder
|
|
217
|
+
autostart = ControllerBuilder.for_current_os().build_autostart()
|
|
218
|
+
if autostart.is_enabled():
|
|
219
|
+
autostart.disable()
|
|
220
|
+
removed.append("autostart entry")
|
|
221
|
+
|
|
231
222
|
# Shut down logging before deleting ~/.trcc — on Windows the log file
|
|
232
223
|
# handle stays open and blocks rmtree with WinError 32.
|
|
233
224
|
import logging as _logging
|
|
@@ -242,13 +233,6 @@ def uninstall(*, yes: bool = False):
|
|
|
242
233
|
path.unlink()
|
|
243
234
|
removed.append(str(path))
|
|
244
235
|
|
|
245
|
-
# Disable autostart via platform manager
|
|
246
|
-
from trcc.core.builder import ControllerBuilder
|
|
247
|
-
autostart = ControllerBuilder.for_current_os().build_autostart()
|
|
248
|
-
if autostart.is_enabled():
|
|
249
|
-
autostart.disable()
|
|
250
|
-
removed.append("autostart entry")
|
|
251
|
-
|
|
252
236
|
if removed:
|
|
253
237
|
print("Removed:")
|
|
254
238
|
for item in removed:
|
|
@@ -313,14 +297,8 @@ def report(detect_fn=None):
|
|
|
313
297
|
def download_themes(pack=None, show_list=False, force=False, show_info=False):
|
|
314
298
|
"""Download theme packs (like spacy download)."""
|
|
315
299
|
try:
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
if show_list or pack is None:
|
|
320
|
-
list_available()
|
|
321
|
-
return 0
|
|
322
|
-
|
|
323
|
-
if show_info:
|
|
300
|
+
if show_info and pack:
|
|
301
|
+
from trcc.adapters.infra.theme_downloader import show_info as pack_info
|
|
324
302
|
pack_info(pack)
|
|
325
303
|
return 0
|
|
326
304
|
|
|
@@ -328,7 +306,12 @@ def download_themes(pack=None, show_list=False, force=False, show_info=False):
|
|
|
328
306
|
from trcc.conf import Settings
|
|
329
307
|
Settings.clear_installed_resolutions()
|
|
330
308
|
|
|
331
|
-
|
|
309
|
+
from trcc.core.app import TrccApp
|
|
310
|
+
from trcc.core.commands.initialize import DownloadThemesCommand
|
|
311
|
+
dispatch_pack = "" if show_list else (pack or "")
|
|
312
|
+
result = TrccApp.get().os_bus.dispatch(
|
|
313
|
+
DownloadThemesCommand(pack=dispatch_pack, force=force))
|
|
314
|
+
return 0 if result.success else 1
|
|
332
315
|
|
|
333
316
|
except Exception as e:
|
|
334
317
|
print(f"Error: {e}")
|
|
@@ -352,5 +335,7 @@ def _confirm(prompt: str, auto_yes: bool) -> bool:
|
|
|
352
335
|
|
|
353
336
|
def run_setup(auto_yes: bool = False) -> int:
|
|
354
337
|
"""Interactive setup wizard — dispatches to platform-specific adapter."""
|
|
355
|
-
from trcc.core.
|
|
356
|
-
|
|
338
|
+
from trcc.core.app import TrccApp
|
|
339
|
+
from trcc.core.commands.initialize import SetupPlatformCommand
|
|
340
|
+
result = TrccApp.get().os_bus.dispatch(SetupPlatformCommand(auto_yes=auto_yes))
|
|
341
|
+
return 0 if result.success else 1
|
|
@@ -7,7 +7,6 @@ from trcc.cli import _cli_handler, _device
|
|
|
7
7
|
@_cli_handler
|
|
8
8
|
def list_themes(cloud=False, category=None):
|
|
9
9
|
"""List available themes for the current device resolution."""
|
|
10
|
-
from trcc.adapters.infra.data_repository import DataManager
|
|
11
10
|
from trcc.conf import settings
|
|
12
11
|
from trcc.services import ThemeService
|
|
13
12
|
|
|
@@ -15,7 +14,6 @@ def list_themes(cloud=False, category=None):
|
|
|
15
14
|
if not w or not h:
|
|
16
15
|
w, h = 320, 320
|
|
17
16
|
|
|
18
|
-
DataManager.ensure_all(w, h)
|
|
19
17
|
settings._resolve_paths()
|
|
20
18
|
|
|
21
19
|
if cloud:
|
|
@@ -46,8 +44,8 @@ def list_themes(cloud=False, category=None):
|
|
|
46
44
|
@_cli_handler
|
|
47
45
|
def load_theme(builder, name, *, device=None, preview=False):
|
|
48
46
|
"""Load a theme by name and send to LCD."""
|
|
49
|
-
from trcc.adapters.infra.data_repository import DataManager
|
|
50
47
|
from trcc.conf import Settings, settings
|
|
48
|
+
from trcc.core.commands.lcd import SelectThemeCommand
|
|
51
49
|
from trcc.services import ImageService, ThemeService
|
|
52
50
|
|
|
53
51
|
svc = _device._get_service(device)
|
|
@@ -58,7 +56,6 @@ def load_theme(builder, name, *, device=None, preview=False):
|
|
|
58
56
|
dev = svc.selected
|
|
59
57
|
w, h = dev.resolution
|
|
60
58
|
|
|
61
|
-
DataManager.ensure_all(w, h)
|
|
62
59
|
settings._resolve_paths()
|
|
63
60
|
|
|
64
61
|
td = settings.theme_dir
|
|
@@ -77,11 +74,14 @@ def load_theme(builder, name, *, device=None, preview=False):
|
|
|
77
74
|
return 1
|
|
78
75
|
|
|
79
76
|
# Build LCD with full service stack (DisplayService, OverlayService, etc.)
|
|
77
|
+
from trcc.core.app import TrccApp
|
|
80
78
|
lcd = builder.lcd_from_service(svc)
|
|
81
79
|
lcd.restore_device_settings()
|
|
82
80
|
|
|
83
|
-
#
|
|
84
|
-
|
|
81
|
+
# Dispatch SelectThemeCommand through the bus — same path as GUI/API
|
|
82
|
+
lcd_bus = TrccApp.get().build_lcd_bus(lcd)
|
|
83
|
+
cmd_result = lcd_bus.dispatch(SelectThemeCommand(theme=match))
|
|
84
|
+
result = cmd_result.payload
|
|
85
85
|
|
|
86
86
|
# Save as last-used theme
|
|
87
87
|
key = Settings.device_config_key(dev.device_index, dev.vid, dev.pid)
|
|
@@ -226,7 +226,6 @@ def export_theme(theme_name, output_path):
|
|
|
226
226
|
"""Export a theme as .tr file."""
|
|
227
227
|
from pathlib import Path
|
|
228
228
|
|
|
229
|
-
from trcc.adapters.infra.data_repository import DataManager
|
|
230
229
|
from trcc.conf import settings
|
|
231
230
|
from trcc.services import ThemeService
|
|
232
231
|
|
|
@@ -234,7 +233,6 @@ def export_theme(theme_name, output_path):
|
|
|
234
233
|
if not w or not h:
|
|
235
234
|
w, h = 320, 320
|
|
236
235
|
|
|
237
|
-
DataManager.ensure_all(w, h)
|
|
238
236
|
settings._resolve_paths()
|
|
239
237
|
|
|
240
238
|
td = settings.theme_dir
|