trcc-linux 8.2.6__tar.gz → 8.2.9__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/.gitignore +0 -1
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/PKG-INFO +11 -21
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/README.md +10 -20
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/pyproject.toml +1 -1
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/__init__.py +2 -1
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/__version__.py +1 -1
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/api/__init__.py +7 -4
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/api/devices.py +8 -43
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/api/display.py +4 -1
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/api/system.py +1 -7
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/cli/__init__.py +9 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/cli/_display.py +18 -35
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/cli/_led.py +8 -8
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/cli/_system.py +2 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/cli/_theme.py +9 -13
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/conf.py +47 -5
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/core/builder.py +8 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/core/lcd_device.py +71 -7
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/core/models.py +57 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/lcd_handler.py +3 -2
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/metrics_mediator.py +8 -3
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/overlay_element.py +1 -1
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/trcc_app.py +9 -4
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/uc_activity_sidebar.py +4 -23
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/uc_info_module.py +4 -22
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/services/display.py +1 -1
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/services/system.py +28 -53
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/infra/test_data_repository.py +56 -30
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/api/test_api.py +24 -23
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/cli/test_display.py +38 -116
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/cli/test_theme.py +26 -18
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/conftest.py +5 -2
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/core/test_lcd_device.py +104 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/qt_components/test_lcd_handler.py +1 -1
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/qt_components/test_misc.py +6 -23
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/test_conf.py +14 -8
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/test_integration.py +10 -9
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/LICENSE +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/__main__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/__init__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/device/__init__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/device/_usb_helpers.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/device/bulk.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/device/detector.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/device/factory.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/device/frame.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/device/hid.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/device/lcd.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/device/led.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/device/led_kvm.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/device/led_segment.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/device/ly.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/device/scsi.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/infra/__init__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/infra/binary_reader.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/infra/data_repository.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/infra/dc_config.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/infra/dc_parser.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/infra/dc_writer.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/infra/debug_report.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/infra/doctor.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/infra/font_resolver.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/infra/media_player.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/infra/theme_cloud.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/infra/theme_downloader.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/render/__init__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/render/pil.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/render/qt.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/system/__init__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/system/config.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/system/hardware.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/adapters/system/sensors.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/api/led.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/api/models.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/api/themes.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/com.github.lexonight1.trcc.policy +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/fonts/MSYH.TTC +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/fonts/MSYHBD.TTC +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/fonts/README.md +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/240240.gif +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/240320.gif +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/320240.gif +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/320320.gif +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A0/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A0/345/205/263/344/272/216d.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A0/345/205/263/344/272/216e.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A0/345/205/263/344/272/216en.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A0/345/205/263/344/272/216f.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A0/345/205/263/344/272/216h.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A0/345/205/263/344/272/216p.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A0/345/205/263/344/272/216r.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A0/345/205/263/344/272/216tc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A0/345/205/263/344/272/216x.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A0/345/220/257/345/212/250/347/225/214/351/235/242.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A0/346/225/260/346/215/256/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207en.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207tc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A0/347/241/254/344/273/266/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1AK120 Digital.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1AK120 Digitala.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1AK120_Digital.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1AK120_Digitala.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1AS120 VISION.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1AS120 VISIONa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1AS120_VISION.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1AS120_VISIONa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1AX120 DIGITAL.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1AX120 DIGITALa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1AX120_DIGITAL.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1AX120_DIGITALa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1BA120 VISION.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1BA120 VISIONa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1BA120_VISION.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1BA120_VISIONa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1CORE VISION.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1CORE VISIONa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1CORE_VISION.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1CORE_VISIONa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1CZ1.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1CZ1a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1CZ2.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1CZ2a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1CZTV.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1CZTVa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1ELITE VISION.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1ELITE VISIONa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1ELITE_VISION.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1ELITE_VISIONa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN HORIZON PRO.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN HORIZON PROa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN MAGIC PRO.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN MAGIC PROa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN VISION V2.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN VISION V2a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN WARFRAME PRO.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN WARFRAME PROa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN WARFRAME SE.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN WARFRAME SEa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN WARFRAME.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN WARFRAMEa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN_HORIZON_PROa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN_MAGIC_PROa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN_VISION_V2.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN_VISION_V2a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN_WARFRAME.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PRO.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PROa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SE.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SEa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1FROZEN_WARFRAMEa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1GRAND VISION.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1GRAND VISIONa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1GRAND_VISION.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1GRAND_VISIONa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITAL.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITALa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1HYPER VISION.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1HYPER VISIONa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1HYPER_VISION.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1HYPER_VISIONa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1KVMALEDC6.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1KVMALEDC6a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LC1.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LC1a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LC2.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LC2JD.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LC2JDa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LC2a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LC3.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LC3a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LC5.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LC5a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LC7.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LC7a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LC8.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LC8a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LC9.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LC9a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LD10.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LD10a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LD6.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LD6a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LD7.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LD7a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LD8.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LD8a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LD9.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LD9a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF10.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF10V.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF10Va.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF10a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF11.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF11a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF12.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF12a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF13.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF13a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF14.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF14a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF15.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF15a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF16.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF167.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF16a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF17a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF18.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF18a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF19.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF19a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF20.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF20a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF21.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF21a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF22.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF22a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF25.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF25a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF8.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LF8a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LM16SE.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LM16SEa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LM19SE.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LM19SEa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LM22.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LM22a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LM24.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LM24a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LM26.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LM26a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LM27.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LM27a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LM30.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1LM30a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1Mjolnir VISION PRO.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1Mjolnir VISION PROa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1Mjolnir VISION.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1Mjolnir VISIONa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1Mjolnir_VISION.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1Mjolnir_VISION_PRO.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1Mjolnir_VISION_PROa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1Mjolnir_VISIONa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1PA120 DIGITAL.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1PA120 DIGITALa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1PA120_DIGITAL.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1PA120_DIGITALa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1PC1.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1PC1a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1RK120 DIGITAL.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1RK120 DIGITALa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1RK120_DIGITAL.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1RK120_DIGITALa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1RP130 VISION.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1RP130 VISIONa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1RP130_VISION.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1RP130_VISIONa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1Stream Vision.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1Stream Visiona.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1Stream_Vision.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1Stream_Visiona.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A1/345/205/263/344/272/216a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A2_update_overlay.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A2/344/270/213/346/213/211/346/241/206/345/272/225/345/233/276.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A2/344/270/213/346/213/211/346/241/206/351/200/211/346/213/251/346/235/241.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A2/344/270/213/346/213/211/351/200/211/346/213/251/346/241/206.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A2/347/253/213/345/215/263/346/233/264/346/226/260.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/Acpu.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/Adram.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/Afan.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/Agpu.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/Ahdd.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/Alogout/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/Alogout/351/273/230/350/256/244.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/Anet.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A/344/270/212/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A/344/270/213/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A/345/242/236/345/212/240/346/225/260/347/273/204.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A/346/225/260/346/215/256/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A/346/273/232/345/212/250/346/235/241.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/A/350/207/252/345/256/232/344/271/211.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0CZ1.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0CZ1d.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0CZ1e.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0CZ1en.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0CZ1f.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0CZ1h.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0CZ1p.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0CZ1r.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0CZ1tc.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0CZ1x.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0KVMA/347/201/257/346/216/247.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LC1.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LC1d.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LC1e.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LC1en.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LC1f.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LC1h.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LC1p.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LC1r.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LC1tc.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LC1x.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LC2.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LC2d.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LC2e.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LC2en.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LC2f.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LC2h.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LC2p.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LC2r.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LC2tc.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LC2x.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF10.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF10d.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF10e.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF10en.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF10f.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF10h.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF10p.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF10r.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF10tc.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF10x.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF11.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF11d.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF11e.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF11en.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF11f.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF11h.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF11p.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF11r.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF11tc.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF11x.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF12.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF12d.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF12e.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF12en.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF12f.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF12h.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF12p.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF12r.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF12tc.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF12x.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF13.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF13d.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF13e.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF13en.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF13f.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF13h.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF13p.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF13r.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF13tc.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF13x.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF15.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF15d.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF15e.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF15en.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF15f.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF15h.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF15p.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF15r.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF15tc.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF15x.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF8.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF8d.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF8e.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF8en.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF8f.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF8h.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF8p.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF8r.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF8tc.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0LF8x.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0rgblf13.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237d.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237e.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237en.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237f.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237h.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237p.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237r.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237tc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237x.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217d.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217e.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217en.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217f.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217h.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217p.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217r.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217tc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217x.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D1/345/244/264/347/233/2241.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D1/345/244/264/347/233/2242.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D1/345/244/264/347/233/2243.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D1/345/244/264/347/233/2244.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D1/345/244/264/347/233/2245.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/2111.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/21110.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/21110a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/21111.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/21111a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/21112.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/21112a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/2111a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/2112.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/2112a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/2113.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/2113a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/2114.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/2114a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/2115.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/2115a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/2116.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/2116a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/2117.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/2117a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/2118.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/2118a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/2119.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D2/347/201/257/345/205/2119a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D3/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D3/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D3/345/274/200/345/205/263b.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D3/346/227/213/351/222/256.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D3/346/227/213/351/222/2560.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D3/346/251/231.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D3/346/271/226.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D3/346/273/221/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D3/347/231/275.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D3/347/264/253.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D3/347/272/242.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D3/347/273/277.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D3/350/223/235.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D3/351/273/204.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/345/274/200/346/234/272.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/345/274/200/346/234/272a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/346/214/211/351/222/2561.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/346/214/211/351/222/2561a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/346/214/211/351/222/2562a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/346/214/211/351/222/2563.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/346/214/211/351/222/2563a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/346/214/211/351/222/2564.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/346/214/211/351/222/2564a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/346/250/241/345/274/2171.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/346/250/241/345/274/2171a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/346/250/241/345/274/2172.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/346/250/241/345/274/2172a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/346/250/241/345/274/2173.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/346/250/241/345/274/2173a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/346/250/241/345/274/2174.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/346/250/241/345/274/2174a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/346/250/241/345/274/2175.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/346/250/241/345/274/2175a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/346/250/241/345/274/2176.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D4/346/250/241/345/274/2176a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/DAK120_DIGITAL.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/DAX120_DIGITAL.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/DCZ1.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/DFROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/DFROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/DLC1.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/DLC2.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/DLF10.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/DLF11.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/DLF12.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/DLF13.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/DLF15.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/DLF8.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/DPA120 DIGITAL.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/DPA120_DIGITAL.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/Dch1.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/Dch2.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/Dch3.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/Dch4.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/Dchcz1.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/2062.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/225.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/2252.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/256.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/2562.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/F0/345/211/257/345/261/217.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/F0/345/211/257/345/261/217d.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/F0/345/211/257/345/261/217e.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/F0/345/211/257/345/261/217en.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/F0/345/211/257/345/261/217f.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/F0/345/211/257/345/261/217h.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/F0/345/211/257/345/261/217p.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/F0/345/211/257/345/261/217r.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/F0/345/211/257/345/261/217tc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/F0/345/211/257/345/261/217x.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultra.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultraa.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/344/272/256/345/272/246/350/260/203/346/225/264.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/206/205/345/256/271d.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/206/205/345/256/271e.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/206/205/345/256/271en.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/206/205/345/256/271f.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/206/205/345/256/271h.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/206/205/345/256/271p.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/206/205/345/256/271r.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/206/205/345/256/271tc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/206/205/345/256/271x.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/212/250/347/224/273/350/201/224/345/212/250.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277d.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277e.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277en.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277f.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277h.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277p.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277r.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277tc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277x.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/242/236/345/212/240/345/206/205/345/256/271/351/201/256/347/275/251.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277d.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277e.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277en.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277f.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277h.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277p.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277r.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277tc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277x.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217d.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217e.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217en.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217f.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217p.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217r.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217tc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217x.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xy.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyd.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xye.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyen.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyf.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyh.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyp.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyr.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xytc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyx.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yx.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxd.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxe.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxen.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxf.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxh.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxp.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxr.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxtc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxx.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250d.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250e.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250en.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250f.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250h.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250p.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250r.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250tc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250x.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/346/250/241/345/235/227/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272d.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272e.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272f.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272h.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272p.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272r.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272x.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227en.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227tc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2501.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2502.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2503.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0CZTV.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0CZTVd.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0CZTVe.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0CZTVen.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0CZTVf.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0CZTVh.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0CZTVp.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0CZTVr.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0CZTVtc.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0CZTVx.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0M1.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0M2.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0M3.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0M4.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0M5.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0M5a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0M6.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230d.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230e.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230en.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230f.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230h.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230p.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230r.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230tc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230x.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217110480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217160480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/21732086.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480110.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480160.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/21786320.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/346/222/255/346/224/276.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/346/222/255/346/224/276/345/231/250/346/216/247/345/210/266.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/346/232/202/345/201/234.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230d.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230e.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230en.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230f.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230h.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230p.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230r.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230tc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230x.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257d.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257e.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257f.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257h.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257p.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257r.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257x.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217110480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217160480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/21732086.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217480110.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217480160.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/350/243/201/345/207/21786320.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/351/242/204/350/247/210.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/351/242/204/350/247/210a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271280X480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X440.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X462.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227320X960.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227360X800.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227440X1920.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227462X1920.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X1280.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X800.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X854.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227540X960.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X360.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227854X480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227960X320.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227960X540.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P12H.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P240240.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P240320.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P24H.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P320240.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P320320.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/PDM.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/PDMY.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/PL0.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/PL1.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/PL2.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/PL3.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/PM1.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/PM1a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/PM2.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/PM2a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/PM3.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/PM3a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/PM4.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/PM4a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/PM5.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/PM5a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/PM6.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/PM6a.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/PMD.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/PYMD.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206/345/272/225/345/233/2762X.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206/345/272/225/345/233/2764X.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206/351/253/230/344/272/256.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/344/270/273/351/242/230/345/210/206/347/261/273/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/344/270/273/351/242/230/345/210/206/347/261/273/351/200/211/346/213/2510.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/344/272/256/345/272/246/346/235/241.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/344/277/235/345/255/230/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/207/217.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227b.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/212/240.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/217/226/350/211/262.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/220/270/347/256/241.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/233/276/346/240/207.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/233/276/347/211/207.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/234/206/345/275/242/345/205/263/351/227/255.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/234/206/345/275/242/347/241/256/345/256/232.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/242/236/345/212/240/345/233/276/346/240/207.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/226/207/346/234/2541.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/245/346/234/2371.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/266/351/227/2641.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/230/237/346/234/2371.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/244/232/351/200/211.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/244/232/351/200/211a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/256/275/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/257/274/345/205/245.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/257/274/345/207/272.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/257/274/345/207/272/346/211/200/346/234/211/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/270/256/345/212/251.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/345/277/253/346/215/267/346/226/271/345/274/217/345/244/247/345/260/217/346/273/221/345/212/250/346/235/241.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/346/225/260/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/346/225/260/346/215/256.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/346/226/207/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/346/227/213/350/275/254.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206A.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/346/267/273/345/212/240/351/223/276/346/216/2451.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/205/263.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/274/200.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/346/273/221/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/346/273/232/345/212/250/346/235/241/345/272/225/345/233/276.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/346/273/232/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233180.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233270.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/23390.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a180.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a270.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a90.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b180.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b270.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b90.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206A.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/216/257H1.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/216/257H2.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/216/257H3.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/216/257H4.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/216/257H5.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/216/257H6.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/233/264/346/222/255/350/247/206/351/242/221/350/275/275/345/205/245.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/272/277/347/250/213/345/215/225.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/272/277/347/250/213/345/244/232.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/275/221/347/273/234.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/347/275/221/347/273/234/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/350/243/201/345/207/217.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/350/247/206/351/242/221.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/350/275/256/346/222/2551.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/350/275/256/346/222/2552.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/350/275/256/346/222/2553.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/350/275/256/346/222/2554.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/350/275/256/346/222/2555.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/350/275/256/346/222/2556.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/350/275/256/346/222/255/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/350/275/275/345/205/245/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/350/277/233/345/272/246/346/235/241.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206M.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206Ma.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210110X480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210116X480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210160X480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210180X400.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210180X480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210240X240.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210240X320.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210240X400.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210240X427.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210270X480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210320X240.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320/345/234/206.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210320X86.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210360360/345/234/206.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210400X180.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210400X240.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210427X240.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210480X110.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210480X116.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210480X160.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210480X180.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210480X270.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480/345/234/206.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/21086X320.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251320320/345/234/206.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251360360/345/234/206.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251480480/345/234/206.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/234/350/211/262/346/273/221/345/212/250/345/235/227.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/242/234/350/211/262/351/200/211/346/213/251/345/234/210.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/P/351/253/230/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/p0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257h.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/p/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/ucBoFangQiKongZhi1.BackgroundImage.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/ucBoFangQiKongZhi1_BackgroundImage.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/ucVideoCut1.BackgroundImage.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/ucVideoCut1_BackgroundImage.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/ucXiTongXianShi1.BackgroundImage.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/ucXiTongXianShiAdd1.BackgroundImage.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/ucXiTongXianShiColor1.BackgroundImage.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/gui/ucXiTongXianShiTable1.BackgroundImage.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/icons/app.ico +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/icons/trcc.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/icons/trcc_128x128.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/icons/trcc_16x16.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/icons/trcc_24x24.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/icons/trcc_256x256.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/icons/trcc_32x32.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/icons/trcc_48x48.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/icons/trcc_64x64.png +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/trcc-linux.desktop +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/assets/trcc-quirk-fix.service +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/cli/__main__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/cli/_device.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/cli/_diag.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/core/__init__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/core/color.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/core/encoding.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/core/led_device.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/core/led_segment.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/core/paths.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/core/ports.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/data/trcc_usb.te +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/install/__init__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/install/gui.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/ipc.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/__init__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/assets.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/base.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/color_and_add_panels.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/constants.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/display_mode_panels.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/eyedropper.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/overlay_grid.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/pipewire_capture.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/screen_capture.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/uc_about.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/uc_color_wheel.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/uc_device.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/uc_image_cut.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/uc_led_control.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/uc_preview.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/uc_screen_led.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/uc_sensor_picker.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/uc_system_info.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/uc_theme_local.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/uc_theme_mask.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/uc_theme_setting.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/uc_theme_web.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/qt_components/uc_video_cut.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/services/__init__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/services/device.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/services/image.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/services/led.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/services/led_config.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/services/led_effects.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/services/media.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/services/overlay.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/services/renderer.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/services/theme.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/services/theme_loader.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/services/theme_persistence.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/src/trcc/services/video_cache.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/README.md +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/__init__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/__init__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/device/__init__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/device/conftest.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/device/test_bulk.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/device/test_detector.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/device/test_factory.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/device/test_frame.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/device/test_hid.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/device/test_implementations.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/device/test_lcd.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/device/test_led.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/device/test_led_kvm.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/device/test_ly.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/device/test_scsi.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/infra/__init__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/infra/test_dc_config.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/infra/test_dc_parser.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/infra/test_dc_writer.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/infra/test_debug_report.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/infra/test_doctor.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/infra/test_media_player.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/infra/test_theme_cloud.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/infra/test_theme_downloader.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/system/__init__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/system/test_config.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/system/test_hardware.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/adapters/system/test_sensors.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/api/__init__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/api/test_api_security.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/cli/__init__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/cli/test_cli.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/cli/test_device.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/cli/test_led.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/cli/test_system.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/core/__init__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/core/test_builder.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/core/test_color.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/core/test_encoding.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/core/test_led_device.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/core/test_led_segment.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/core/test_led_segment_ax120.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/core/test_models.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/core/test_paths.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/qt_components/__init__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/qt_components/test_base.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/qt_components/test_base_panel.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/qt_components/test_constants.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/qt_components/test_lcd_visual.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/qt_components/test_led_control.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/qt_components/test_led_visual.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/qt_components/test_preview.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/qt_components/test_screen_capture.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/qt_components/test_theme_setting.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/qt_components/test_trcc_app.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/qt_components/test_widgets.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/services/__init__.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/services/conftest.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/services/test_device.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/services/test_display_integration.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/services/test_image_ansi.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/services/test_led.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/services/test_led_config.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/services/test_led_effects.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/services/test_media.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/services/test_overlay.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/services/test_services.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/services/test_system.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/services/test_theme.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/services/test_theme_loader.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/services/test_theme_persistence.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/services/test_video_cache.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/test_architecture.py +0 -0
- {trcc_linux-8.2.6 → trcc_linux-8.2.9}/tests/test_memory.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: trcc-linux
|
|
3
|
-
Version: 8.2.
|
|
3
|
+
Version: 8.2.9
|
|
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
|
|
@@ -69,7 +69,7 @@ Description-Content-Type: text/markdown
|
|
|
69
69
|
[](https://github.com/Lexonight1/thermalright-trcc-linux)
|
|
70
70
|
|
|
71
71
|
[](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
|
|
72
|
-
[](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
|
|
73
73
|
[](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
|
|
74
74
|
[](https://python.org)
|
|
75
75
|
[](https://docs.astral.sh/ruff/)
|
|
@@ -111,6 +111,10 @@ Native Linux port of the Thermalright LCD Control Center (Windows TRCC 2.1.2). C
|
|
|
111
111
|
|
|
112
112
|
Run `trcc report` and [paste the output in an issue](https://github.com/Lexonight1/thermalright-trcc-linux/issues/new) — takes 30 seconds. See the **[full list of devices that need testers](doc/TESTERS_WANTED.md)**.
|
|
113
113
|
|
|
114
|
+
### Something not working?
|
|
115
|
+
|
|
116
|
+
**[Open a GitHub issue](https://github.com/Lexonight1/thermalright-trcc-linux/issues/new)** — that's the only place I see bug reports. I don't monitor Reddit, forums, or Discussions. Run `trcc report`, paste the output, and I'll get back to you.
|
|
117
|
+
|
|
114
118
|

|
|
115
119
|
|
|
116
120
|
## Features
|
|
@@ -173,29 +177,23 @@ Run `lsusb` to find your USB ID (`xxxx:xxxx` after `ID`), then match it below.
|
|
|
173
177
|
|
|
174
178
|
Pre-built packages are available for every major distro. No pip, no venv, no PEP 668 headaches — just download and install like any other app. Every release is built automatically from source using [GitHub Actions](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/release.yml) — the build logs are public so anyone can verify what went in.
|
|
175
179
|
|
|
176
|
-
**Step 1:** Go to the [latest release](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest) and download the package for your distro.
|
|
177
|
-
|
|
178
180
|
> Not sure which distro you're running? Open a terminal and type `cat /etc/os-release` — the `ID` line tells you.
|
|
179
181
|
|
|
180
|
-
**Step 2:** Open a terminal in your Downloads folder and install:
|
|
181
|
-
|
|
182
182
|
**Fedora / openSUSE / Nobara:**
|
|
183
183
|
```bash
|
|
184
|
-
|
|
185
|
-
sudo dnf install ./trcc-linux-*.noarch.rpm
|
|
184
|
+
sudo dnf install https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest/download/trcc-linux-8.2.9-1.fc43.noarch.rpm
|
|
186
185
|
```
|
|
187
186
|
|
|
188
187
|
**Ubuntu / Debian / Mint / Pop!_OS / Zorin:**
|
|
189
188
|
```bash
|
|
190
|
-
|
|
191
|
-
sudo dpkg -i trcc-
|
|
189
|
+
curl -LO https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest/download/trcc-linux_8.2.9-1_all.deb
|
|
190
|
+
sudo dpkg -i trcc-linux_8.2.9-1_all.deb
|
|
192
191
|
sudo apt-get install -f # pulls in any missing dependencies
|
|
193
192
|
```
|
|
194
193
|
|
|
195
194
|
**Arch / CachyOS / Manjaro / EndeavourOS / Garuda:**
|
|
196
195
|
```bash
|
|
197
|
-
|
|
198
|
-
sudo pacman -U trcc-linux-*-any.pkg.tar.zst
|
|
196
|
+
sudo pacman -U https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest/download/trcc-linux-8.2.9-1-any.pkg.tar.zst
|
|
199
197
|
```
|
|
200
198
|
|
|
201
199
|
**NixOS** — add to your `flake.nix` inputs:
|
|
@@ -240,14 +238,6 @@ Then **unplug and replug the USB cable** and run `trcc gui`.
|
|
|
240
238
|
|
|
241
239
|
> `pipx` not installed? `sudo apt install pipx` (Debian/Ubuntu), `sudo dnf install pipx` (Fedora), `sudo pacman -S python-pipx` (Arch). See the **[Install Guide](doc/INSTALL_GUIDE.md)** for your distro.
|
|
242
240
|
|
|
243
|
-
### One-line bootstrap
|
|
244
|
-
|
|
245
|
-
```bash
|
|
246
|
-
bash <(curl -sSL https://raw.githubusercontent.com/Lexonight1/thermalright-trcc-linux/main/setup.sh)
|
|
247
|
-
```
|
|
248
|
-
|
|
249
|
-
Downloads and installs trcc-linux, then launches the setup wizard.
|
|
250
|
-
|
|
251
241
|
### Automatic (git clone)
|
|
252
242
|
|
|
253
243
|
```bash
|
|
@@ -414,7 +404,7 @@ A big thanks to everyone who has contributed invaluable reports to this project:
|
|
|
414
404
|
|
|
415
405
|
Thanks to everyone who took a moment to star this project — it means the world.
|
|
416
406
|
|
|
417
|
-
**[alessa-lara](https://github.com/alessa-lara)** · **[ArcaneCoder404](https://github.com/ArcaneCoder404)** · **[betolink](https://github.com/betolink)** · **[bive242](https://github.com/bive242)** · **[BrunoLeguizamon05](https://github.com/BrunoLeguizamon05)** · **[cancos1](https://github.com/cancos1)** · **[codeflitting](https://github.com/codeflitting)** · **[dabombUSA](https://github.com/dabombUSA)** · **[damachine](https://github.com/damachine)** · **[emaspa](https://github.com/emaspa)** · **[honjow](https://github.com/honjow)** · **[jezzaw007](https://github.com/jezzaw007)** · **[jhlasnik](https://github.com/jhlasnik)** · **[jmo808](https://github.com/jmo808)** · **[knappstar](https://github.com/knappstar)** · **[mgaruccio](https://github.com/mgaruccio)** · **[michael-spinelli](https://github.com/michael-spinelli)** · **[mkogut](https://github.com/mkogut)** · **[nathanielhernandez](https://github.com/nathanielhernandez)** · **[oddajpierscien](https://github.com/oddajpierscien)** · **[Pewful2021](https://github.com/Pewful2021)** · **[Pikarz](https://github.com/Pikarz)** · **[Rehaell](https://github.com/Rehaell)** · **[rslater](https://github.com/rslater)** · **[Smokemic](https://github.com/Smokemic)** · **[spiritofjon](https://github.com/spiritofjon)** · **[Vydon](https://github.com/Vydon)** · **[Xentrino](https://github.com/Xentrino)** · **[Ziusz](https://github.com/Ziusz)**
|
|
407
|
+
**[alessa-lara](https://github.com/alessa-lara)** · **[ArcaneCoder404](https://github.com/ArcaneCoder404)** · **[betolink](https://github.com/betolink)** · **[bive242](https://github.com/bive242)** · **[BrunoLeguizamon05](https://github.com/BrunoLeguizamon05)** · **[cancos1](https://github.com/cancos1)** · **[codeflitting](https://github.com/codeflitting)** · **[dabombUSA](https://github.com/dabombUSA)** · **[damachine](https://github.com/damachine)** · **[DasFlogetier](https://github.com/DasFlogetier)** · **[emaspa](https://github.com/emaspa)** · **[honjow](https://github.com/honjow)** · **[jezzaw007](https://github.com/jezzaw007)** · **[jhlasnik](https://github.com/jhlasnik)** · **[jmo808](https://github.com/jmo808)** · **[knappstar](https://github.com/knappstar)** · **[mgaruccio](https://github.com/mgaruccio)** · **[michael-spinelli](https://github.com/michael-spinelli)** · **[mkogut](https://github.com/mkogut)** · **[nathanielhernandez](https://github.com/nathanielhernandez)** · **[oddajpierscien](https://github.com/oddajpierscien)** · **[Pewful2021](https://github.com/Pewful2021)** · **[Pikarz](https://github.com/Pikarz)** · **[Rehaell](https://github.com/Rehaell)** · **[rslater](https://github.com/rslater)** · **[Smokemic](https://github.com/Smokemic)** · **[spiritofjon](https://github.com/spiritofjon)** · **[Vydon](https://github.com/Vydon)** · **[Xentrino](https://github.com/Xentrino)** · **[Ziusz](https://github.com/Ziusz)**
|
|
418
408
|
|
|
419
409
|
## Faulkers
|
|
420
410
|
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
[](https://github.com/Lexonight1/thermalright-trcc-linux)
|
|
11
11
|
|
|
12
12
|
[](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
|
|
13
|
-
[](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
|
|
14
14
|
[](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
|
|
15
15
|
[](https://python.org)
|
|
16
16
|
[](https://docs.astral.sh/ruff/)
|
|
@@ -52,6 +52,10 @@ Native Linux port of the Thermalright LCD Control Center (Windows TRCC 2.1.2). C
|
|
|
52
52
|
|
|
53
53
|
Run `trcc report` and [paste the output in an issue](https://github.com/Lexonight1/thermalright-trcc-linux/issues/new) — takes 30 seconds. See the **[full list of devices that need testers](doc/TESTERS_WANTED.md)**.
|
|
54
54
|
|
|
55
|
+
### Something not working?
|
|
56
|
+
|
|
57
|
+
**[Open a GitHub issue](https://github.com/Lexonight1/thermalright-trcc-linux/issues/new)** — that's the only place I see bug reports. I don't monitor Reddit, forums, or Discussions. Run `trcc report`, paste the output, and I'll get back to you.
|
|
58
|
+
|
|
55
59
|

|
|
56
60
|
|
|
57
61
|
## Features
|
|
@@ -114,29 +118,23 @@ Run `lsusb` to find your USB ID (`xxxx:xxxx` after `ID`), then match it below.
|
|
|
114
118
|
|
|
115
119
|
Pre-built packages are available for every major distro. No pip, no venv, no PEP 668 headaches — just download and install like any other app. Every release is built automatically from source using [GitHub Actions](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/release.yml) — the build logs are public so anyone can verify what went in.
|
|
116
120
|
|
|
117
|
-
**Step 1:** Go to the [latest release](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest) and download the package for your distro.
|
|
118
|
-
|
|
119
121
|
> Not sure which distro you're running? Open a terminal and type `cat /etc/os-release` — the `ID` line tells you.
|
|
120
122
|
|
|
121
|
-
**Step 2:** Open a terminal in your Downloads folder and install:
|
|
122
|
-
|
|
123
123
|
**Fedora / openSUSE / Nobara:**
|
|
124
124
|
```bash
|
|
125
|
-
|
|
126
|
-
sudo dnf install ./trcc-linux-*.noarch.rpm
|
|
125
|
+
sudo dnf install https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest/download/trcc-linux-8.2.9-1.fc43.noarch.rpm
|
|
127
126
|
```
|
|
128
127
|
|
|
129
128
|
**Ubuntu / Debian / Mint / Pop!_OS / Zorin:**
|
|
130
129
|
```bash
|
|
131
|
-
|
|
132
|
-
sudo dpkg -i trcc-
|
|
130
|
+
curl -LO https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest/download/trcc-linux_8.2.9-1_all.deb
|
|
131
|
+
sudo dpkg -i trcc-linux_8.2.9-1_all.deb
|
|
133
132
|
sudo apt-get install -f # pulls in any missing dependencies
|
|
134
133
|
```
|
|
135
134
|
|
|
136
135
|
**Arch / CachyOS / Manjaro / EndeavourOS / Garuda:**
|
|
137
136
|
```bash
|
|
138
|
-
|
|
139
|
-
sudo pacman -U trcc-linux-*-any.pkg.tar.zst
|
|
137
|
+
sudo pacman -U https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest/download/trcc-linux-8.2.9-1-any.pkg.tar.zst
|
|
140
138
|
```
|
|
141
139
|
|
|
142
140
|
**NixOS** — add to your `flake.nix` inputs:
|
|
@@ -181,14 +179,6 @@ Then **unplug and replug the USB cable** and run `trcc gui`.
|
|
|
181
179
|
|
|
182
180
|
> `pipx` not installed? `sudo apt install pipx` (Debian/Ubuntu), `sudo dnf install pipx` (Fedora), `sudo pacman -S python-pipx` (Arch). See the **[Install Guide](doc/INSTALL_GUIDE.md)** for your distro.
|
|
183
181
|
|
|
184
|
-
### One-line bootstrap
|
|
185
|
-
|
|
186
|
-
```bash
|
|
187
|
-
bash <(curl -sSL https://raw.githubusercontent.com/Lexonight1/thermalright-trcc-linux/main/setup.sh)
|
|
188
|
-
```
|
|
189
|
-
|
|
190
|
-
Downloads and installs trcc-linux, then launches the setup wizard.
|
|
191
|
-
|
|
192
182
|
### Automatic (git clone)
|
|
193
183
|
|
|
194
184
|
```bash
|
|
@@ -355,7 +345,7 @@ A big thanks to everyone who has contributed invaluable reports to this project:
|
|
|
355
345
|
|
|
356
346
|
Thanks to everyone who took a moment to star this project — it means the world.
|
|
357
347
|
|
|
358
|
-
**[alessa-lara](https://github.com/alessa-lara)** · **[ArcaneCoder404](https://github.com/ArcaneCoder404)** · **[betolink](https://github.com/betolink)** · **[bive242](https://github.com/bive242)** · **[BrunoLeguizamon05](https://github.com/BrunoLeguizamon05)** · **[cancos1](https://github.com/cancos1)** · **[codeflitting](https://github.com/codeflitting)** · **[dabombUSA](https://github.com/dabombUSA)** · **[damachine](https://github.com/damachine)** · **[emaspa](https://github.com/emaspa)** · **[honjow](https://github.com/honjow)** · **[jezzaw007](https://github.com/jezzaw007)** · **[jhlasnik](https://github.com/jhlasnik)** · **[jmo808](https://github.com/jmo808)** · **[knappstar](https://github.com/knappstar)** · **[mgaruccio](https://github.com/mgaruccio)** · **[michael-spinelli](https://github.com/michael-spinelli)** · **[mkogut](https://github.com/mkogut)** · **[nathanielhernandez](https://github.com/nathanielhernandez)** · **[oddajpierscien](https://github.com/oddajpierscien)** · **[Pewful2021](https://github.com/Pewful2021)** · **[Pikarz](https://github.com/Pikarz)** · **[Rehaell](https://github.com/Rehaell)** · **[rslater](https://github.com/rslater)** · **[Smokemic](https://github.com/Smokemic)** · **[spiritofjon](https://github.com/spiritofjon)** · **[Vydon](https://github.com/Vydon)** · **[Xentrino](https://github.com/Xentrino)** · **[Ziusz](https://github.com/Ziusz)**
|
|
348
|
+
**[alessa-lara](https://github.com/alessa-lara)** · **[ArcaneCoder404](https://github.com/ArcaneCoder404)** · **[betolink](https://github.com/betolink)** · **[bive242](https://github.com/bive242)** · **[BrunoLeguizamon05](https://github.com/BrunoLeguizamon05)** · **[cancos1](https://github.com/cancos1)** · **[codeflitting](https://github.com/codeflitting)** · **[dabombUSA](https://github.com/dabombUSA)** · **[damachine](https://github.com/damachine)** · **[DasFlogetier](https://github.com/DasFlogetier)** · **[emaspa](https://github.com/emaspa)** · **[honjow](https://github.com/honjow)** · **[jezzaw007](https://github.com/jezzaw007)** · **[jhlasnik](https://github.com/jhlasnik)** · **[jmo808](https://github.com/jmo808)** · **[knappstar](https://github.com/knappstar)** · **[mgaruccio](https://github.com/mgaruccio)** · **[michael-spinelli](https://github.com/michael-spinelli)** · **[mkogut](https://github.com/mkogut)** · **[nathanielhernandez](https://github.com/nathanielhernandez)** · **[oddajpierscien](https://github.com/oddajpierscien)** · **[Pewful2021](https://github.com/Pewful2021)** · **[Pikarz](https://github.com/Pikarz)** · **[Rehaell](https://github.com/Rehaell)** · **[rslater](https://github.com/rslater)** · **[Smokemic](https://github.com/Smokemic)** · **[spiritofjon](https://github.com/spiritofjon)** · **[Vydon](https://github.com/Vydon)** · **[Xentrino](https://github.com/Xentrino)** · **[Ziusz](https://github.com/Ziusz)**
|
|
359
349
|
|
|
360
350
|
## Faulkers
|
|
361
351
|
|
|
@@ -34,7 +34,8 @@ from trcc.adapters.infra.dc_parser import dc_to_overlay_config, parse_dc_file
|
|
|
34
34
|
|
|
35
35
|
# Animation
|
|
36
36
|
from trcc.adapters.infra.media_player import VideoDecoder
|
|
37
|
-
from trcc.
|
|
37
|
+
from trcc.core.models import format_metric
|
|
38
|
+
from trcc.services.system import get_all_metrics
|
|
38
39
|
|
|
39
40
|
__all__ = [
|
|
40
41
|
# Version
|
|
@@ -34,8 +34,10 @@ from trcc.adapters.device.led import probe_led_model
|
|
|
34
34
|
from trcc.adapters.infra.dc_config import DcConfig
|
|
35
35
|
from trcc.adapters.infra.dc_parser import load_config_json
|
|
36
36
|
from trcc.adapters.render.qt import QtRenderer
|
|
37
|
+
from trcc.adapters.system.sensors import SensorEnumerator
|
|
37
38
|
from trcc.services import DeviceService, MediaService, OverlayService
|
|
38
39
|
from trcc.services.image import ImageService
|
|
40
|
+
from trcc.services.system import SystemService, set_instance
|
|
39
41
|
|
|
40
42
|
log = logging.getLogger(__name__)
|
|
41
43
|
|
|
@@ -57,10 +59,13 @@ _device_svc = DeviceService(
|
|
|
57
59
|
get_protocol_info=DeviceProtocolFactory.get_protocol_info,
|
|
58
60
|
)
|
|
59
61
|
|
|
62
|
+
# System service (composition root — adapter wired here)
|
|
63
|
+
_system_svc = SystemService(enumerator=SensorEnumerator())
|
|
64
|
+
set_instance(_system_svc)
|
|
65
|
+
|
|
60
66
|
# Lazy-initialized devices (set when device is selected)
|
|
61
67
|
_display_dispatcher = None # LCDDevice | None
|
|
62
68
|
_led_dispatcher = None # LEDDevice | None
|
|
63
|
-
_system_svc = None # SystemService | None
|
|
64
69
|
|
|
65
70
|
# Last frame sent to LCD — updated by display/theme endpoints for preview
|
|
66
71
|
_current_image = None # QImage | PIL Image | None
|
|
@@ -177,10 +182,8 @@ def start_overlay_loop(
|
|
|
177
182
|
stop_event = _overlay_stop_event
|
|
178
183
|
|
|
179
184
|
def _loop() -> None:
|
|
180
|
-
from trcc.services.system import get_all_metrics
|
|
181
|
-
|
|
182
185
|
while not stop_event.is_set():
|
|
183
|
-
metrics =
|
|
186
|
+
metrics = _system_svc.all_metrics
|
|
184
187
|
if overlay.would_change(metrics):
|
|
185
188
|
overlay.update_metrics(metrics)
|
|
186
189
|
frame = overlay.render(metrics=metrics)
|
|
@@ -117,11 +117,17 @@ def select_device(device_id: int) -> dict:
|
|
|
117
117
|
|
|
118
118
|
from trcc.core.lcd_device import LCDDevice
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
lcd = LCDDevice.from_service(_device_svc)
|
|
121
|
+
api._display_dispatcher = lcd
|
|
121
122
|
|
|
122
123
|
w_res, h_res = dev.resolution or (320, 320)
|
|
123
124
|
api.set_current_image(ImageService.solid_color(0, 0, 0, w_res, h_res))
|
|
124
|
-
|
|
125
|
+
|
|
126
|
+
lcd.restore_device_settings()
|
|
127
|
+
result = lcd.load_last_theme()
|
|
128
|
+
if result.get("image"):
|
|
129
|
+
api.set_current_image(result["image"])
|
|
130
|
+
log.info("Restored last theme for preview")
|
|
125
131
|
|
|
126
132
|
# Mount static file directories for this device's resolution
|
|
127
133
|
w, h = dev.resolution or (0, 0)
|
|
@@ -131,47 +137,6 @@ def select_device(device_id: int) -> dict:
|
|
|
131
137
|
return {"selected": dev.name, "resolution": dev.resolution}
|
|
132
138
|
|
|
133
139
|
|
|
134
|
-
def _restore_last_theme(dev) -> None:
|
|
135
|
-
"""Load saved theme image into _current_image (for preview/stream).
|
|
136
|
-
|
|
137
|
-
Mirrors CLI --last-one: reads theme_path from device config, opens
|
|
138
|
-
00.png, applies brightness + rotation. Does NOT re-send to device.
|
|
139
|
-
"""
|
|
140
|
-
import os
|
|
141
|
-
|
|
142
|
-
from trcc.api import set_current_image
|
|
143
|
-
from trcc.conf import Settings
|
|
144
|
-
|
|
145
|
-
key = Settings.device_config_key(dev.device_index, dev.vid, dev.pid)
|
|
146
|
-
cfg = Settings.get_device_config(key)
|
|
147
|
-
theme_path = cfg.get("theme_path")
|
|
148
|
-
if not theme_path:
|
|
149
|
-
return
|
|
150
|
-
|
|
151
|
-
image_path = None
|
|
152
|
-
if os.path.isdir(theme_path):
|
|
153
|
-
candidate = os.path.join(theme_path, "00.png")
|
|
154
|
-
if os.path.exists(candidate):
|
|
155
|
-
image_path = candidate
|
|
156
|
-
elif os.path.isfile(theme_path):
|
|
157
|
-
image_path = theme_path
|
|
158
|
-
|
|
159
|
-
if not image_path:
|
|
160
|
-
return
|
|
161
|
-
|
|
162
|
-
try:
|
|
163
|
-
w, h = dev.resolution
|
|
164
|
-
img = ImageService.open_and_resize(image_path, w, h)
|
|
165
|
-
|
|
166
|
-
brightness_pct = {1: 25, 2: 50, 3: 100}.get(cfg.get("brightness_level", 3), 100)
|
|
167
|
-
img = ImageService.apply_brightness(img, brightness_pct)
|
|
168
|
-
img = ImageService.apply_rotation(img, cfg.get("rotation", 0))
|
|
169
|
-
|
|
170
|
-
set_current_image(img)
|
|
171
|
-
log.info("Restored last theme for preview: %s", os.path.basename(theme_path))
|
|
172
|
-
except Exception as e:
|
|
173
|
-
log.debug("Could not restore last theme: %s", e)
|
|
174
|
-
|
|
175
140
|
|
|
176
141
|
@router.get("/devices/{device_id}")
|
|
177
142
|
def get_device(device_id: int) -> DeviceResponse:
|
|
@@ -122,8 +122,11 @@ async def render_overlay(dc_path: str, send: bool = True) -> dict:
|
|
|
122
122
|
if not safe_path.startswith(allowed_dir + os.sep) and safe_path != allowed_dir:
|
|
123
123
|
raise HTTPException(status_code=400, detail="Invalid overlay path")
|
|
124
124
|
|
|
125
|
+
import trcc.api as api
|
|
126
|
+
|
|
125
127
|
lcd = _get_display()
|
|
126
|
-
result = lcd.render_overlay_from_dc(
|
|
128
|
+
result = lcd.render_overlay_from_dc(
|
|
129
|
+
safe_path, send=send, metrics=api._system_svc.all_metrics)
|
|
127
130
|
return dispatch_result(result)
|
|
128
131
|
|
|
129
132
|
|
|
@@ -12,14 +12,8 @@ router = APIRouter(prefix="/system", tags=["system"])
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
def _get_system_svc():
|
|
15
|
-
"""Get
|
|
15
|
+
"""Get the shared SystemService instance (initialized in api/__init__.py)."""
|
|
16
16
|
import trcc.api as api
|
|
17
|
-
from trcc.services import SystemService
|
|
18
|
-
|
|
19
|
-
if api._system_svc is None:
|
|
20
|
-
from trcc.adapters.system.sensors import SensorEnumerator
|
|
21
|
-
|
|
22
|
-
api._system_svc = SystemService(enumerator=SensorEnumerator())
|
|
23
17
|
return api._system_svc
|
|
24
18
|
|
|
25
19
|
|
|
@@ -33,6 +33,15 @@ def _ensure_renderer() -> None:
|
|
|
33
33
|
ImageService.set_renderer(QtRenderer())
|
|
34
34
|
|
|
35
35
|
|
|
36
|
+
def _ensure_system() -> None:
|
|
37
|
+
"""Initialize SystemService singleton for CLI (once)."""
|
|
38
|
+
from trcc.services.system import _instance
|
|
39
|
+
if _instance is None:
|
|
40
|
+
from trcc.core.builder import ControllerBuilder
|
|
41
|
+
from trcc.services.system import set_instance
|
|
42
|
+
set_instance(ControllerBuilder().build_system())
|
|
43
|
+
|
|
44
|
+
|
|
36
45
|
def _cli_handler(func):
|
|
37
46
|
"""Decorator: catches Exception, prints error, returns 1."""
|
|
38
47
|
@functools.wraps(func)
|
|
@@ -313,10 +313,15 @@ def load_mask(mask_path, *, device=None, preview=False):
|
|
|
313
313
|
def render_overlay(dc_path, *, device=None, send=False, output=None,
|
|
314
314
|
preview=False):
|
|
315
315
|
"""Render overlay from DC config file."""
|
|
316
|
+
from trcc.cli import _ensure_system
|
|
317
|
+
from trcc.services.system import get_all_metrics
|
|
318
|
+
|
|
316
319
|
lcd, rc = _connect_or_fail(device)
|
|
317
320
|
if rc:
|
|
318
321
|
return rc
|
|
319
|
-
|
|
322
|
+
_ensure_system()
|
|
323
|
+
result = lcd.render_overlay_from_dc(
|
|
324
|
+
dc_path, send=send, output=output, metrics=get_all_metrics())
|
|
320
325
|
if not result["success"]:
|
|
321
326
|
print(f"Error: {result['error']}")
|
|
322
327
|
return 1
|
|
@@ -364,8 +369,8 @@ def resume():
|
|
|
364
369
|
from trcc.adapters.device.detector import DeviceDetector
|
|
365
370
|
from trcc.adapters.device.factory import DeviceProtocolFactory
|
|
366
371
|
from trcc.adapters.device.led import probe_led_model
|
|
367
|
-
from trcc.
|
|
368
|
-
from trcc.services import DeviceService
|
|
372
|
+
from trcc.core.lcd_device import LCDDevice
|
|
373
|
+
from trcc.services import DeviceService
|
|
369
374
|
|
|
370
375
|
svc = DeviceService(
|
|
371
376
|
detect_fn=DeviceDetector.detect,
|
|
@@ -396,40 +401,18 @@ def resume():
|
|
|
396
401
|
if dev.resolution == (0, 0):
|
|
397
402
|
continue
|
|
398
403
|
|
|
399
|
-
key = Settings.device_config_key(dev.device_index, dev.vid, dev.pid)
|
|
400
|
-
cfg = Settings.get_device_config(key)
|
|
401
|
-
theme_path = cfg.get("theme_path")
|
|
402
|
-
|
|
403
|
-
if not theme_path:
|
|
404
|
-
print(f" [{dev.product}] No saved theme, skipping")
|
|
405
|
-
continue
|
|
406
|
-
|
|
407
|
-
image_path = None
|
|
408
|
-
if os.path.isdir(theme_path):
|
|
409
|
-
candidate = os.path.join(theme_path, "00.png")
|
|
410
|
-
if os.path.exists(candidate):
|
|
411
|
-
image_path = candidate
|
|
412
|
-
elif os.path.isfile(theme_path):
|
|
413
|
-
image_path = theme_path
|
|
414
|
-
|
|
415
|
-
if not image_path:
|
|
416
|
-
print(f" [{dev.product}] Theme not found: {theme_path}")
|
|
417
|
-
continue
|
|
418
|
-
|
|
419
404
|
try:
|
|
420
|
-
w, h = dev.resolution
|
|
421
|
-
img = ImageService.open_and_resize(image_path, w, h)
|
|
422
|
-
|
|
423
|
-
brightness_level = cfg.get("brightness_level", 3)
|
|
424
|
-
brightness_pct = {1: 25, 2: 50, 3: 100}.get(brightness_level, 100)
|
|
425
|
-
img = ImageService.apply_brightness(img, brightness_pct)
|
|
426
|
-
|
|
427
|
-
rotation = cfg.get("rotation", 0)
|
|
428
|
-
img = ImageService.apply_rotation(img, rotation)
|
|
429
|
-
|
|
430
405
|
svc.select(dev)
|
|
431
|
-
|
|
432
|
-
|
|
406
|
+
lcd = LCDDevice.from_service(svc)
|
|
407
|
+
lcd.restore_device_settings()
|
|
408
|
+
result = lcd.load_last_theme()
|
|
409
|
+
if not result.get("success"):
|
|
410
|
+
msg = result.get("error", "Unknown error")
|
|
411
|
+
print(f" [{dev.product}] {msg}")
|
|
412
|
+
continue
|
|
413
|
+
img = result["image"]
|
|
414
|
+
lcd.send(img)
|
|
415
|
+
print(f" [{dev.product}] Sent")
|
|
433
416
|
sent += 1
|
|
434
417
|
except Exception as e:
|
|
435
418
|
print(f" [{dev.product}] Error: {e}")
|
|
@@ -202,10 +202,10 @@ def test_led(*, mode: str | None = None, segments: int = 64,
|
|
|
202
202
|
"""Test LED ANSI preview with real system metrics. No device needed."""
|
|
203
203
|
import time
|
|
204
204
|
|
|
205
|
-
from trcc.
|
|
205
|
+
from trcc.cli import _ensure_system
|
|
206
206
|
from trcc.core.models import LEDMode, LEDState
|
|
207
207
|
from trcc.services.led import LEDService
|
|
208
|
-
from trcc.services.system import
|
|
208
|
+
from trcc.services.system import get_instance
|
|
209
209
|
|
|
210
210
|
modes = {
|
|
211
211
|
'static': LEDMode.STATIC,
|
|
@@ -223,8 +223,8 @@ def test_led(*, mode: str | None = None, segments: int = 64,
|
|
|
223
223
|
else:
|
|
224
224
|
run_modes = modes
|
|
225
225
|
|
|
226
|
-
|
|
227
|
-
sys_svc
|
|
226
|
+
_ensure_system()
|
|
227
|
+
sys_svc = get_instance()
|
|
228
228
|
metrics = sys_svc.all_metrics
|
|
229
229
|
|
|
230
230
|
print(f"LED ANSI Preview ({segments} segments)")
|
|
@@ -277,12 +277,12 @@ def test_led(*, mode: str | None = None, segments: int = 64,
|
|
|
277
277
|
|
|
278
278
|
def test_lcd(*, cols: int = 60):
|
|
279
279
|
"""Test LCD ANSI preview with real system metrics. No device needed."""
|
|
280
|
-
from trcc.
|
|
280
|
+
from trcc.cli import _ensure_system
|
|
281
281
|
from trcc.services.image import ImageService
|
|
282
|
-
from trcc.services.system import
|
|
282
|
+
from trcc.services.system import get_instance
|
|
283
283
|
|
|
284
|
-
|
|
285
|
-
sys_svc
|
|
284
|
+
_ensure_system()
|
|
285
|
+
sys_svc = get_instance()
|
|
286
286
|
metrics = sys_svc.all_metrics
|
|
287
287
|
|
|
288
288
|
print(f"LCD ANSI Preview ({cols} cols)")
|
|
@@ -69,8 +69,10 @@ def show_info(*, preview: bool = False, metric: str | None = None):
|
|
|
69
69
|
metric: Filter to a group — cpu, gpu, mem, disk, net, fan, time.
|
|
70
70
|
"""
|
|
71
71
|
try:
|
|
72
|
+
from trcc.cli import _ensure_system
|
|
72
73
|
from trcc.services.system import format_metric, get_all_metrics
|
|
73
74
|
|
|
75
|
+
_ensure_system()
|
|
74
76
|
metrics = get_all_metrics()
|
|
75
77
|
|
|
76
78
|
if preview:
|
|
@@ -82,23 +82,19 @@ def load_theme(name, *, device=None, preview=False):
|
|
|
82
82
|
return 0
|
|
83
83
|
|
|
84
84
|
if match.background_path and match.background_path.exists():
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
rotation = cfg.get('rotation', 0)
|
|
93
|
-
img = ImageService.apply_brightness(img, brightness)
|
|
94
|
-
img = ImageService.apply_rotation(img, rotation)
|
|
95
|
-
|
|
96
|
-
svc.send_pil(img, w, h)
|
|
85
|
+
from trcc.core.lcd_device import LCDDevice
|
|
86
|
+
lcd = LCDDevice.from_service(svc)
|
|
87
|
+
lcd.restore_device_settings()
|
|
88
|
+
result = lcd.load_image(match.background_path)
|
|
89
|
+
img = result.get("image")
|
|
90
|
+
if img:
|
|
91
|
+
lcd.send(img)
|
|
97
92
|
|
|
98
93
|
# Save as last-used theme
|
|
94
|
+
key = Settings.device_config_key(dev.device_index, dev.vid, dev.pid)
|
|
99
95
|
Settings.save_device_setting(key, 'theme_path', str(match.path))
|
|
100
96
|
print(f"Loaded '{match.name}' → {dev.path}")
|
|
101
|
-
if preview:
|
|
97
|
+
if preview and img:
|
|
102
98
|
print(ImageService.to_ansi(img))
|
|
103
99
|
else:
|
|
104
100
|
print(f"Theme '{match.name}' has no background image.")
|
|
@@ -16,8 +16,8 @@ Usage:
|
|
|
16
16
|
settings.lang # Language suffix ('en', 'd', 'e', 'f', 'p', 'r', 'x', '', 'tc')
|
|
17
17
|
|
|
18
18
|
# Static settings operations
|
|
19
|
-
Settings.device_config_key(0, 0x87cd, 0x70db)
|
|
20
|
-
Settings.get_device_config(key)
|
|
19
|
+
Settings.device_config_key(0, 0x87cd, 0x70db) # returns "0"
|
|
20
|
+
Settings.get_device_config(key) # {"vid_pid": "87cd_70db", ...}
|
|
21
21
|
Settings.save_device_setting(key, 'theme', 'dark')
|
|
22
22
|
|
|
23
23
|
# Low-level config access (module-level)
|
|
@@ -78,14 +78,44 @@ def _migrate_old_config() -> None:
|
|
|
78
78
|
log.info("Migrated config from %s to %s", old_dir, CONFIG_DIR)
|
|
79
79
|
|
|
80
80
|
|
|
81
|
+
def _migrate_device_keys(config: dict) -> bool:
|
|
82
|
+
"""Migrate device keys from '0:vid_pid' to '0' with vid_pid inside dict.
|
|
83
|
+
|
|
84
|
+
Old format: {"devices": {"0:0402_3922": {"brightness_level": 3}}}
|
|
85
|
+
New format: {"devices": {"0": {"vid_pid": "0402_3922", "brightness_level": 3}}}
|
|
86
|
+
|
|
87
|
+
Returns True if migration was performed.
|
|
88
|
+
"""
|
|
89
|
+
devices = config.get('devices')
|
|
90
|
+
if not devices or not isinstance(devices, dict):
|
|
91
|
+
return False
|
|
92
|
+
migrated = {}
|
|
93
|
+
changed = False
|
|
94
|
+
for key, value in devices.items():
|
|
95
|
+
if ':' in key:
|
|
96
|
+
index, vid_pid = key.split(':', 1)
|
|
97
|
+
if isinstance(value, dict):
|
|
98
|
+
value['vid_pid'] = vid_pid
|
|
99
|
+
migrated[index] = value
|
|
100
|
+
changed = True
|
|
101
|
+
else:
|
|
102
|
+
migrated[key] = value
|
|
103
|
+
if changed:
|
|
104
|
+
config['devices'] = migrated
|
|
105
|
+
return changed
|
|
106
|
+
|
|
107
|
+
|
|
81
108
|
def load_config() -> dict:
|
|
82
109
|
"""Load user config from disk. Returns empty dict on missing/corrupt file."""
|
|
83
110
|
_migrate_old_config()
|
|
84
111
|
try:
|
|
85
112
|
with open(CONFIG_PATH, 'r') as f:
|
|
86
|
-
|
|
113
|
+
config = json.load(f)
|
|
87
114
|
except (FileNotFoundError, json.JSONDecodeError, OSError):
|
|
88
115
|
return {}
|
|
116
|
+
if _migrate_device_keys(config):
|
|
117
|
+
save_config(config)
|
|
118
|
+
return config
|
|
89
119
|
|
|
90
120
|
|
|
91
121
|
def save_config(config: dict):
|
|
@@ -258,10 +288,19 @@ class Settings:
|
|
|
258
288
|
config['selected_device'] = device_path
|
|
259
289
|
save_config(config)
|
|
260
290
|
|
|
291
|
+
# Cache vid_pid per index so save_device_setting can store it automatically
|
|
292
|
+
_vid_pid_cache: dict[str, str] = {}
|
|
293
|
+
|
|
261
294
|
@staticmethod
|
|
262
295
|
def device_config_key(index: int, vid: int, pid: int) -> str:
|
|
263
|
-
"""Build per-device config key
|
|
264
|
-
|
|
296
|
+
"""Build per-device config key (index only).
|
|
297
|
+
|
|
298
|
+
Config format: {"devices": {"0": {"vid_pid": "0402_3922", ...}}}
|
|
299
|
+
The vid_pid is stored inside the device dict, not in the key.
|
|
300
|
+
"""
|
|
301
|
+
key = str(index)
|
|
302
|
+
Settings._vid_pid_cache[key] = f"{vid:04x}_{pid:04x}"
|
|
303
|
+
return key
|
|
265
304
|
|
|
266
305
|
@staticmethod
|
|
267
306
|
def get_device_config(key: str) -> dict:
|
|
@@ -274,6 +313,9 @@ class Settings:
|
|
|
274
313
|
config = load_config()
|
|
275
314
|
devices = config.setdefault('devices', {})
|
|
276
315
|
dev_cfg = devices.setdefault(key, {})
|
|
316
|
+
# Store vid_pid on first write (from device_config_key cache)
|
|
317
|
+
if 'vid_pid' not in dev_cfg and key in Settings._vid_pid_cache:
|
|
318
|
+
dev_cfg['vid_pid'] = Settings._vid_pid_cache[key]
|
|
277
319
|
dev_cfg[setting] = value
|
|
278
320
|
save_config(config)
|
|
279
321
|
|
|
@@ -11,6 +11,7 @@ from typing import TYPE_CHECKING
|
|
|
11
11
|
from .ports import Renderer
|
|
12
12
|
|
|
13
13
|
if TYPE_CHECKING:
|
|
14
|
+
from ..services.system import SystemService
|
|
14
15
|
from .lcd_device import LCDDevice
|
|
15
16
|
from .led_device import LEDDevice
|
|
16
17
|
|
|
@@ -125,6 +126,13 @@ class ControllerBuilder:
|
|
|
125
126
|
|
|
126
127
|
return lcd
|
|
127
128
|
|
|
129
|
+
def build_system(self) -> SystemService:
|
|
130
|
+
"""Build and return a SystemService with injected enumerator."""
|
|
131
|
+
from ..adapters.system.sensors import SensorEnumerator
|
|
132
|
+
from ..services.system import SystemService
|
|
133
|
+
|
|
134
|
+
return SystemService(enumerator=SensorEnumerator())
|
|
135
|
+
|
|
128
136
|
def build_led(self) -> LEDDevice:
|
|
129
137
|
"""Build and return a LEDDevice.
|
|
130
138
|
|