trcc-linux 8.3.1__tar.gz → 8.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/PKG-INFO +2 -2
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/README.md +1 -1
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/pyproject.toml +1 -1
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/__version__.py +1 -1
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/api/devices.py +9 -9
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/api/themes.py +53 -6
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/cli/__init__.py +2 -2
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/cli/_display.py +11 -7
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/cli/_led.py +12 -7
- trcc_linux-8.3.2/src/trcc/core/instance.py +78 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/core/lcd_device.py +70 -11
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/core/led_device.py +59 -1
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/core/ports.py +10 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/ipc.py +184 -6
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/services/perf.py +6 -4
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/api/test_api.py +8 -4
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/cli/test_display.py +2 -2
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/cli/test_led.py +4 -4
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/conftest.py +6 -4
- trcc_linux-8.3.2/tests/core/test_instance.py +40 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/core/test_lcd_device.py +208 -1
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/core/test_led_device.py +88 -0
- trcc_linux-8.3.2/tests/core/test_proxy_factory.py +35 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/.gitignore +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/LICENSE +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/__main__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/device/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/device/_usb_helpers.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/device/bulk.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/device/detector.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/device/factory.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/device/frame.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/device/hid.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/device/lcd.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/device/led.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/device/led_kvm.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/device/led_segment.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/device/ly.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/device/scsi.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/infra/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/infra/binary_reader.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/infra/data_repository.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/infra/dc_config.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/infra/dc_parser.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/infra/dc_writer.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/infra/debug_report.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/infra/doctor.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/infra/font_resolver.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/infra/media_player.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/infra/network.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/infra/theme_cloud.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/infra/theme_downloader.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/render/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/render/pil.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/render/qt.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/system/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/system/config.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/system/hardware.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/adapters/system/sensors.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/api/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/api/display.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/api/led.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/api/models.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/api/system.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/com.github.lexonight1.trcc.policy +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/fonts/MSYH.TTC +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/fonts/MSYHBD.TTC +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/fonts/README.md +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/240240.gif +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/240320.gif +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/320240.gif +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/320320.gif +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216d.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216e.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216en.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216f.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216h.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216p.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216r.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216tc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A0/345/205/263/344/272/216x.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A0/345/220/257/345/212/250/347/225/214/351/235/242.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A0/346/225/260/346/215/256/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207en.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A0/346/227/240/350/256/276/345/244/207tc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A0/347/241/254/344/273/266/345/210/227/350/241/250.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1AK120 Digital.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1AK120 Digitala.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1AK120_Digital.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1AK120_Digitala.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1AS120 VISION.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1AS120 VISIONa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1AS120_VISION.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1AS120_VISIONa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1AX120 DIGITAL.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1AX120 DIGITALa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1AX120_DIGITAL.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1AX120_DIGITALa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1BA120 VISION.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1BA120 VISIONa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1BA120_VISION.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1BA120_VISIONa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1CORE VISION.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1CORE VISIONa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1CORE_VISION.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1CORE_VISIONa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1CZ1.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1CZ1a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1CZ2.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1CZ2a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1CZTV.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1CZTVa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1ELITE VISION.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1ELITE VISIONa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1ELITE_VISION.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1ELITE_VISIONa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN HORIZON PRO.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN HORIZON PROa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN MAGIC PRO.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN MAGIC PROa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN VISION V2.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN VISION V2a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN WARFRAME PRO.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN WARFRAME PROa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN WARFRAME SE.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN WARFRAME SEa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN WARFRAME.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN WARFRAMEa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN_HORIZON_PROa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN_MAGIC_PROa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN_VISION_V2.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN_VISION_V2a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN_WARFRAME.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PRO.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN_WARFRAME_PROa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SE.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN_WARFRAME_SEa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1FROZEN_WARFRAMEa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1GRAND VISION.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1GRAND VISIONa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1GRAND_VISION.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1GRAND_VISIONa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITAL.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1HR10 2280 PRO DIGITALa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1HYPER VISION.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1HYPER VISIONa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1HYPER_VISION.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1HYPER_VISIONa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1KVMALEDC6.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1KVMALEDC6a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LC1.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LC1a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LC2.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LC2JD.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LC2JDa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LC2a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LC3.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LC3a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LC5.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LC5a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LC7.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LC7a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LC8.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LC8a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LC9.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LC9a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LD10.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LD10a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LD6.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LD6a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LD7.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LD7a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LD8.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LD8a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LD9.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LD9a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF10.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF10V.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF10Va.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF10a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF11.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF11a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF12.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF12a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF13.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF13a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF14.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF14a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF15.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF15a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF16.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF167.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF16a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF17a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF18.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF18a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF19.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF19a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF20.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF20a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF21.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF21a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF22.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF22a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF25.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF25a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF8.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LF8a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LM16SE.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LM16SEa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LM19SE.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LM19SEa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LM22.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LM22a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LM24.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LM24a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LM26.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LM26a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LM27.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LM27a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LM30.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1LM30a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1Mjolnir VISION PRO.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1Mjolnir VISION PROa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1Mjolnir VISION.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1Mjolnir VISIONa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1Mjolnir_VISION.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1Mjolnir_VISION_PRO.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1Mjolnir_VISION_PROa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1Mjolnir_VISIONa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1PA120 DIGITAL.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1PA120 DIGITALa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1PA120_DIGITAL.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1PA120_DIGITALa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1PC1.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1PC1a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1RK120 DIGITAL.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1RK120 DIGITALa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1RK120_DIGITAL.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1RK120_DIGITALa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1RP130 VISION.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1RP130 VISIONa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1RP130_VISION.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1RP130_VISIONa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1Stream Vision.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1Stream Visiona.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1Stream_Vision.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1Stream_Visiona.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1/344/274/240/346/204/237/345/231/250a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1/345/205/263/344/272/216.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A1/345/205/263/344/272/216a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A2_update_overlay.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A2/344/270/213/346/213/211/346/241/206/345/272/225/345/233/276.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A2/344/270/213/346/213/211/346/241/206/351/200/211/346/213/251/346/235/241.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A2/344/270/213/346/213/211/351/200/211/346/213/251/346/241/206.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A2/347/253/213/345/215/263/346/233/264/346/226/260.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/Acpu.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/Adram.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/Afan.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/Agpu.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/Ahdd.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/Alogout/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/Alogout/351/273/230/350/256/244.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/Anet.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A/344/270/212/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A/344/270/213/344/270/200/351/241/265a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A/345/242/236/345/212/240/346/225/260/347/273/204.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A/346/225/260/346/215/256/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A/346/273/232/345/212/250/346/235/241.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/A/350/207/252/345/256/232/344/271/211.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0CZ1.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0CZ1d.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0CZ1e.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0CZ1en.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0CZ1f.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0CZ1h.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0CZ1p.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0CZ1r.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0CZ1tc.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0CZ1x.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0KVMA/347/201/257/346/216/247.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LC1.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LC1d.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LC1e.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LC1en.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LC1f.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LC1h.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LC1p.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LC1r.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LC1tc.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LC1x.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LC2.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LC2d.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LC2e.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LC2en.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LC2f.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LC2h.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LC2p.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LC2r.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LC2tc.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LC2x.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF10.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF10d.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF10e.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF10en.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF10f.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF10h.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF10p.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF10r.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF10tc.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF10x.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF11.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF11d.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF11e.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF11en.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF11f.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF11h.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF11p.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF11r.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF11tc.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF11x.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF12.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF12d.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF12e.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF12en.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF12f.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF12h.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF12p.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF12r.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF12tc.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF12x.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF13.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF13d.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF13e.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF13en.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF13f.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF13h.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF13p.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF13r.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF13tc.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF13x.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF15.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF15d.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF15e.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF15en.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF15f.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF15h.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF15p.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF15r.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF15tc.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF15x.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF8.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF8d.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF8e.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF8en.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF8f.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF8h.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF8p.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF8r.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF8tc.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0LF8x.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0rgblf13.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237d.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237e.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237en.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237f.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237h.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237p.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237r.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237tc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237x.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217d.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217e.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217en.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217f.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217h.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217p.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217r.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217tc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D0/346/225/260/347/240/201/345/261/217x.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D1/345/244/226/351/203/250/350/276/223/345/207/272a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D1/345/244/264/347/233/2241.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D1/345/244/264/347/233/2242.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D1/345/244/264/347/233/2243.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D1/345/244/264/347/233/2244.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D1/345/244/264/347/233/2245.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D1/347/201/257/345/205/211/350/201/232/345/220/210a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2111.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21110.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21110a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21111.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21111a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21112.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/21112a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2111a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2112.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2112a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2113.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2113a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2114.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2114a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2115.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2115a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2116.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2116a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2117.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2117a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2118.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2118a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2119.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D2/347/201/257/345/205/2119a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D3/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D3/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D3/345/274/200/345/205/263b.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D3/346/227/213/351/222/256.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D3/346/227/213/351/222/2560.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D3/346/251/231.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D3/346/271/226.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D3/346/273/221/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2001a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2002a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D3/347/201/257/345/205/211/347/247/2003a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D3/347/231/275.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D3/347/264/253.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D3/347/272/242.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D3/347/273/277.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D3/350/223/235.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D3/351/273/204.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/345/274/200/346/234/272.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/345/274/200/346/234/272a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2561.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2561a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2562a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2563.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2563a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2564.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/346/214/211/351/222/2564a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2171.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2171a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2172.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2172a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2173.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2173a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2174.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2174a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2175.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2175a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2176.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D4/346/250/241/345/274/2176a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/DAK120_DIGITAL.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/DAX120_DIGITAL.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/DCZ1.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/DFROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/DFROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/DLC1.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/DLC2.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/DLF10.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/DLF11.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/DLF12.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/DLF13.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/DLF15.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/DLF8.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/DPA120 DIGITAL.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/DPA120_DIGITAL.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/Dch1.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/Dch2.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/Dch3.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/Dch4.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/Dchcz1.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/346/241/2062.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/225.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/350/217/234/345/215/2252.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/256.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/D/344/270/213/346/213/211/351/253/230/344/272/2562.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217d.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217e.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217en.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217f.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217h.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217p.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217r.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217tc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/F0/345/211/257/345/261/217x.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultra.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/FROZEN_WARFRAME_Ultraa.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/344/272/256/345/272/246/350/260/203/346/225/264.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/206/205/345/256/271d.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/206/205/345/256/271e.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/206/205/345/256/271en.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/206/205/345/256/271f.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/206/205/345/256/271h.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/206/205/345/256/271p.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/206/205/345/256/271r.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/206/205/345/256/271tc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/206/205/345/256/271x.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/212/250/347/224/273/350/201/224/345/212/250.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277d.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277e.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277en.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277f.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277h.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277p.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277r.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277tc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/217/202/346/225/260/351/235/242/346/235/277x.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/242/236/345/212/240/345/206/205/345/256/271/351/201/256/347/275/251.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277d.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277e.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277en.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277f.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277h.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277p.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277r.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277tc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/270/203/345/261/200/350/222/231/346/235/277x.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217d.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217e.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217en.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217f.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217p.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217r.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217tc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/345/277/253/346/215/267/346/226/271/345/274/217x.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xy.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyd.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xye.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyen.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyf.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyh.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyp.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyr.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xytc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272xyx.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yx.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxd.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxe.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxen.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxf.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxh.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxp.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxr.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxtc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/212/225/345/261/217/346/230/276/347/244/272yxx.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250d.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250e.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250en.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250f.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250h.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250p.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250r.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250tc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/222/255/346/224/276/345/231/250x.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/227/266/351/227/264/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/346/250/241/345/235/227/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272d.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272e.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272en.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272f.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272h.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272p.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272r.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272tc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/350/203/214/346/231/257/346/230/276/347/244/272x.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227en.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/350/207/252/345/256/232/346/226/207/345/255/227tc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2501.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2502.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P01/351/224/256/347/233/230/350/201/224/345/212/2503.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0CZTV.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0CZTVd.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0CZTVe.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0CZTVen.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0CZTVf.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0CZTVh.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0CZTVp.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0CZTVr.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0CZTVtc.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0CZTVx.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0M1.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0M2.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0M3.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0M4.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0M5.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0M5a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0M6.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230d.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230e.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230en.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230f.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230h.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230p.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230r.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230tc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/344/270/273/351/242/230x.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217110480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217160480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/21732086.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480110.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480160.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/345/233/276/347/211/207/350/243/201/345/207/21786320.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/346/222/255/346/224/276.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/346/222/255/346/224/276/345/231/250/346/216/247/345/210/266.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/346/232/202/345/201/234.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230d.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230e.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230en.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230f.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230h.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230p.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230r.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230tc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/346/234/254/345/234/260/344/270/273/351/242/230x.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257d.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257e.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257f.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257h.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257p.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257r.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/347/263/273/347/273/237/344/277/241/346/201/257x.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217110480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217116480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217160480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217180400.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217180480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217240240.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217240320.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217240400.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217240427.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217270480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217320240.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217320320.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/21732086.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217360360.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217400180.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217400240.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217427240.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480110.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480116.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480160.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480180.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480270.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/217480480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/350/243/201/345/207/21786320.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271280X480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X440.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X462.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227320X960.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227360X800.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227440X1920.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227462X1920.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X1280.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X800.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227480X854.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227540X960.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X360.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227800X480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227854X480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227960X320.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P0/351/242/204/350/247/210/345/274/271/347/252/227960X540.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P12H.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P1/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P240240.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P240320.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P24H.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P320240.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P320320.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/PDM.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/PDMY.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/PL0.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/PL1.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/PL2.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/PL3.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/PM1.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/PM1a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/PM2.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/PM2a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/PM3.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/PM3a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/PM4.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/PM4a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/PM5.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/PM5a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/PM6.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/PM6a.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/PMD.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/PYMD.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206/345/272/225/345/233/2762X.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206/345/272/225/345/233/2764X.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/344/270/213/346/213/211/346/241/206/351/253/230/344/272/256.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/344/270/273/351/242/230/345/210/206/347/261/273/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/344/270/273/351/242/230/345/210/206/347/261/273/351/200/211/346/213/2510.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/256/276/347/275/256a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/344/270/273/351/242/230/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/344/272/221/347/253/257/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/344/272/221/347/253/257/350/203/214/346/231/257a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/344/272/256/345/272/246/346/235/241.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/344/277/235/345/255/230/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/205/263/351/227/255/346/214/211/351/222/2562.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/207/217.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/211/252/350/276/221/345/235/227b.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/212/237/350/203/275/351/200/211/346/213/251a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/212/240.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/215/225/344/275/215/345/274/200/345/205/263a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/217/226/350/211/262.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/220/270/347/256/241.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/233/276/346/240/207.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/233/276/347/211/207.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/234/206/345/275/242/345/205/263/351/227/255.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/234/206/345/275/242/347/241/256/345/256/232.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/345/233/276/346/240/207.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/226/207/346/234/2541.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/245/346/234/2371.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/227/266/351/227/2641.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/242/236/345/212/240/346/230/237/346/234/2371.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/244/232/351/200/211.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/244/232/351/200/211a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/256/275/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/257/274/345/205/245.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/257/274/345/207/272.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/257/274/345/207/272/346/211/200/346/234/211/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/270/256/345/212/251.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/345/277/253/346/215/267/346/226/271/345/274/217/345/244/247/345/260/217/346/273/221/345/212/250/346/235/241.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/346/225/260/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/346/225/260/346/215/256.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/346/226/207/345/255/227/345/255/227/344/275/223.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/346/226/207/346/234/254.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/346/227/213/350/275/254.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/346/227/245/346/234/237.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/346/227/266/351/227/264.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/346/230/237/346/234/237.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/346/230/276/347/244/272/350/276/271/346/241/206A.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/346/234/254/345/234/260/344/270/273/351/242/230a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/346/267/273/345/212/240/351/223/276/346/216/2451.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/205/263.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/346/273/221/345/212/250/345/274/200.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/346/273/221/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/346/273/232/345/212/250/346/235/241/345/272/225/345/233/276.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/346/273/232/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233180.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233270.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/23390.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a180.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a270.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233a90.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b180.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b270.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/201/265/345/212/250/345/262/233b90.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/202/271/351/200/211/346/241/206A.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/216/257H1.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/216/257H2.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/216/257H3.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/216/257H4.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/216/257H5.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/216/257H6.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/233/264/346/222/255/350/247/206/351/242/221/350/275/275/345/205/245.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/272/277/347/250/213/345/215/225.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/272/277/347/250/213/345/244/232.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/275/221/347/273/234.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/347/275/221/347/273/234/346/214/211/351/222/256.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/350/222/231/346/235/277.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/350/243/201/345/207/217.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/350/247/206/351/242/221.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/350/275/256/346/222/255.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/350/275/256/346/222/2551.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/350/275/256/346/222/2552.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/350/275/256/346/222/2553.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/350/275/256/346/222/2554.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/350/275/256/346/222/2555.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/350/275/256/346/222/2556.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/350/275/256/346/222/255a.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/350/275/256/346/222/255/351/200/211/346/241/206.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/350/275/275/345/205/245/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/350/277/233/345/272/246/346/235/241.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/200/211/344/270/255.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206M.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/200/211/346/213/251/346/241/206Ma.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210110X480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210116X480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210160X480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210180X400.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210180X480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210240X240.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210240X320.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210240X400.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210240X427.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210270X480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210320X240.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210320X320/345/234/206.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210320X86.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210360360/345/234/206.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210400X180.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210400X240.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210427X240.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X110.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X116.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X160.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X180.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X270.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210480X480/345/234/206.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/21086X320.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/212/250/347/224/273.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251320320/345/234/206.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251360360/345/234/206.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251480480/345/234/206.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/234/350/211/262/346/273/221/345/212/250/345/235/227.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/242/234/350/211/262/351/200/211/346/213/251/345/234/210.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/P/351/253/230/345/272/246/351/200/202/345/272/224.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257h.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/p0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/p/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/ucBoFangQiKongZhi1.BackgroundImage.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/ucBoFangQiKongZhi1_BackgroundImage.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/ucVideoCut1.BackgroundImage.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/ucVideoCut1_BackgroundImage.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/ucXiTongXianShi1.BackgroundImage.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/ucXiTongXianShiAdd1.BackgroundImage.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/ucXiTongXianShiColor1.BackgroundImage.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/gui/ucXiTongXianShiTable1.BackgroundImage.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/icons/app.ico +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/icons/trcc.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/icons/trcc_128x128.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/icons/trcc_16x16.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/icons/trcc_24x24.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/icons/trcc_256x256.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/icons/trcc_32x32.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/icons/trcc_48x48.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/icons/trcc_64x64.png +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/trcc-linux.desktop +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/assets/trcc-quirk-fix.service +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/cli/__main__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/cli/_device.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/cli/_diag.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/cli/_system.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/cli/_theme.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/conf.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/core/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/core/builder.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/core/color.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/core/encoding.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/core/led_segment.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/core/models.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/core/paths.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/core/perf.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/data/trcc_usb.te +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/install/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/install/gui.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/assets.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/base.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/color_and_add_panels.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/constants.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/display_mode_panels.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/eyedropper.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/lcd_handler.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/metrics_mediator.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/overlay_element.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/overlay_grid.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/pipewire_capture.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/screen_capture.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/trcc_app.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/uc_about.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/uc_activity_sidebar.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/uc_color_wheel.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/uc_device.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/uc_image_cut.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/uc_info_module.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/uc_led_control.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/uc_preview.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/uc_screen_led.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/uc_sensor_picker.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/uc_system_info.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/uc_theme_local.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/uc_theme_mask.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/uc_theme_setting.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/uc_theme_web.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/qt_components/uc_video_cut.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/services/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/services/device.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/services/display.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/services/image.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/services/led.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/services/led_config.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/services/led_effects.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/services/media.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/services/overlay.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/services/renderer.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/services/system.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/services/theme.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/services/theme_loader.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/services/theme_persistence.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/src/trcc/services/video_cache.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/README.md +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/device/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/device/conftest.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/device/test_bulk.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/device/test_detector.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/device/test_factory.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/device/test_frame.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/device/test_hid.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/device/test_implementations.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/device/test_lcd.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/device/test_led.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/device/test_led_kvm.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/device/test_ly.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/device/test_scsi.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/infra/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/infra/test_data_repository.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/infra/test_dc_config.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/infra/test_dc_parser.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/infra/test_dc_writer.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/infra/test_debug_report.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/infra/test_doctor.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/infra/test_media_player.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/infra/test_theme_cloud.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/infra/test_theme_downloader.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/system/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/system/test_config.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/system/test_hardware.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/adapters/system/test_sensors.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/api/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/api/test_api_security.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/cli/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/cli/test_cli.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/cli/test_device.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/cli/test_serve.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/cli/test_system.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/cli/test_theme.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/core/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/core/test_builder.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/core/test_color.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/core/test_encoding.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/core/test_led_segment.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/core/test_led_segment_ax120.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/core/test_models.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/core/test_paths.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/core/test_perf.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/qt_components/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/qt_components/test_base.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/qt_components/test_base_panel.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/qt_components/test_constants.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/qt_components/test_lcd_handler.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/qt_components/test_lcd_visual.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/qt_components/test_led_control.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/qt_components/test_led_visual.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/qt_components/test_misc.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/qt_components/test_preview.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/qt_components/test_screen_capture.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/qt_components/test_theme_setting.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/qt_components/test_trcc_app.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/qt_components/test_widgets.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/services/__init__.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/services/conftest.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/services/test_device.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/services/test_display_integration.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/services/test_image_ansi.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/services/test_led.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/services/test_led_config.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/services/test_led_effects.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/services/test_media.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/services/test_overlay.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/services/test_perf.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/services/test_services.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/services/test_system.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/services/test_theme.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/services/test_theme_loader.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/services/test_theme_persistence.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/services/test_video_cache.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/test_architecture.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/test_conf.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/test_cpu.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/test_integration.py +0 -0
- {trcc_linux-8.3.1 → trcc_linux-8.3.2}/tests/test_memory.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: trcc-linux
|
|
3
|
-
Version: 8.3.
|
|
3
|
+
Version: 8.3.2
|
|
4
4
|
Summary: Linux implementation of Thermalright LCD Control Center
|
|
5
5
|
Project-URL: Homepage, https://github.com/Lexonight1/thermalright-trcc-linux
|
|
6
6
|
Project-URL: Documentation, https://github.com/Lexonight1/thermalright-trcc-linux#readme
|
|
@@ -74,7 +74,7 @@ Description-Content-Type: text/markdown
|
|
|
74
74
|
[](https://github.com/Lexonight1/thermalright-trcc-linux)
|
|
75
75
|
|
|
76
76
|
[](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
|
|
77
|
-
[](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
|
|
78
78
|
[](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
|
|
79
79
|
[](https://python.org)
|
|
80
80
|
[](https://docs.astral.sh/ruff/)
|
|
@@ -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/)
|
|
@@ -83,22 +83,22 @@ def select_device(device_id: int) -> dict:
|
|
|
83
83
|
api.stop_video_playback()
|
|
84
84
|
api.stop_overlay_loop()
|
|
85
85
|
|
|
86
|
-
# Check if
|
|
87
|
-
from trcc.
|
|
86
|
+
# Check if another instance (GUI) already owns the device
|
|
87
|
+
from trcc.core.instance import find_active
|
|
88
|
+
from trcc.ipc import create_lcd_proxy, create_led_proxy
|
|
88
89
|
|
|
89
|
-
|
|
90
|
-
from trcc.ipc import IPCDisplayProxy, IPCLEDProxy
|
|
90
|
+
active = find_active()
|
|
91
91
|
|
|
92
|
-
|
|
93
|
-
api.
|
|
92
|
+
if active is not None:
|
|
93
|
+
api._display_dispatcher = create_lcd_proxy(active)
|
|
94
|
+
api._led_dispatcher = create_led_proxy(active)
|
|
94
95
|
|
|
95
|
-
#
|
|
96
|
-
# so static dirs mount correctly and response has real resolution
|
|
96
|
+
# Active instance already discovered resolution — sync to DeviceInfo
|
|
97
97
|
proxy_res = api._display_dispatcher.resolution
|
|
98
98
|
if proxy_res != (0, 0):
|
|
99
99
|
dev.resolution = proxy_res
|
|
100
100
|
|
|
101
|
-
log.info("Using
|
|
101
|
+
log.info("Using %s instance for device %s", active.value, dev.name)
|
|
102
102
|
else:
|
|
103
103
|
# Standalone mode — API manages device directly
|
|
104
104
|
_device_svc.on_frame_sent = api.set_current_image
|
|
@@ -188,23 +188,70 @@ def list_masks(resolution: str = "320x320") -> list[MaskResponse]:
|
|
|
188
188
|
def load_theme(body: ThemeLoadRequest) -> dict:
|
|
189
189
|
"""Load a theme by name and send to device.
|
|
190
190
|
|
|
191
|
-
|
|
191
|
+
Full pipeline matching GUI/CLI behavior:
|
|
192
|
+
1. Stop any running video/overlay
|
|
193
|
+
2. load_theme_by_name() → select + send + persist
|
|
194
|
+
3. Start video playback for animated themes
|
|
195
|
+
4. Start overlay loop for themes with config1.dc
|
|
196
|
+
5. Update preview image for WebSocket stream
|
|
197
|
+
|
|
192
198
|
Works in both standalone and IPC (GUI daemon) modes.
|
|
199
|
+
In IPC mode, the GUI daemon handles the full pipeline.
|
|
193
200
|
"""
|
|
194
|
-
|
|
201
|
+
import trcc.api as api
|
|
195
202
|
from trcc.api.models import dispatch_result
|
|
196
203
|
|
|
197
|
-
if not _display_dispatcher or not _display_dispatcher.connected:
|
|
204
|
+
if not api._display_dispatcher or not api._display_dispatcher.connected:
|
|
198
205
|
raise HTTPException(status_code=409, detail="No LCD device selected. POST /devices/{id}/select first.")
|
|
199
206
|
|
|
200
|
-
stop_video_playback()
|
|
201
|
-
stop_overlay_loop()
|
|
207
|
+
api.stop_video_playback()
|
|
208
|
+
api.stop_overlay_loop()
|
|
202
209
|
|
|
203
210
|
w, h = 0, 0
|
|
204
211
|
if body.resolution:
|
|
205
212
|
w, h = _parse_resolution(body.resolution)
|
|
206
213
|
|
|
207
|
-
result = _display_dispatcher.load_theme_by_name(body.name, w, h)
|
|
214
|
+
result = api._display_dispatcher.load_theme_by_name(body.name, w, h)
|
|
215
|
+
if not result.get("success"):
|
|
216
|
+
return dispatch_result(result)
|
|
217
|
+
|
|
218
|
+
# Update preview image for WebSocket stream
|
|
219
|
+
image = result.get("image")
|
|
220
|
+
if image:
|
|
221
|
+
api.set_current_image(image)
|
|
222
|
+
|
|
223
|
+
# Standalone mode — start video/overlay loops (GUI handles its own)
|
|
224
|
+
is_animated = result.get("is_animated", False)
|
|
225
|
+
theme_path = result.get("theme_path")
|
|
226
|
+
config_path = result.get("config_path")
|
|
227
|
+
|
|
228
|
+
if not w or not h:
|
|
229
|
+
res = getattr(api._display_dispatcher, 'resolution', None)
|
|
230
|
+
if res:
|
|
231
|
+
w, h = res
|
|
232
|
+
else:
|
|
233
|
+
w, h = getattr(api._display_dispatcher, 'lcd_size', (320, 320))
|
|
234
|
+
|
|
235
|
+
if is_animated and theme_path:
|
|
236
|
+
# Find video file (Theme.zt or .mp4)
|
|
237
|
+
from pathlib import Path
|
|
238
|
+
theme_dir = Path(str(theme_path))
|
|
239
|
+
video_path = None
|
|
240
|
+
for ext in ('.zt', '.mp4'):
|
|
241
|
+
for name in ('Theme', 'theme'):
|
|
242
|
+
candidate = theme_dir / f"{name}{ext}"
|
|
243
|
+
if candidate.exists():
|
|
244
|
+
video_path = str(candidate)
|
|
245
|
+
break
|
|
246
|
+
if video_path:
|
|
247
|
+
break
|
|
248
|
+
if video_path:
|
|
249
|
+
api.start_video_playback(video_path, w, h, loop=True)
|
|
250
|
+
|
|
251
|
+
elif config_path and os.path.isfile(config_path) and image:
|
|
252
|
+
# Static theme with overlay config — start metrics loop
|
|
253
|
+
api.start_overlay_loop(image, str(config_path), w, h)
|
|
254
|
+
|
|
208
255
|
return dispatch_result(result)
|
|
209
256
|
|
|
210
257
|
|
|
@@ -728,10 +728,10 @@ def _cmd_perf(
|
|
|
728
728
|
_ensure_renderer()
|
|
729
729
|
|
|
730
730
|
if device:
|
|
731
|
-
from trcc.
|
|
731
|
+
from trcc.core.instance import InstanceKind, find_active
|
|
732
732
|
from trcc.services.perf import run_device_benchmarks
|
|
733
733
|
|
|
734
|
-
gui_running =
|
|
734
|
+
gui_running = find_active() == InstanceKind.GUI
|
|
735
735
|
if gui_running:
|
|
736
736
|
print("GUI daemon detected — pausing display refresh...")
|
|
737
737
|
print("Running device I/O benchmarks (this takes ~10s)...")
|
|
@@ -21,18 +21,22 @@ from trcc.core.models import parse_hex_color as _parse_hex
|
|
|
21
21
|
def _connect_or_fail(device: str | None = None) -> tuple[LCDDevice, int]:
|
|
22
22
|
"""Create device, connect. Returns (device, exit_code).
|
|
23
23
|
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
Composition root: injects instance detection (find_active) and proxy
|
|
25
|
+
factory so core routes through GUI/API if one is already running.
|
|
26
26
|
"""
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
27
|
+
from trcc.core.instance import find_active
|
|
28
|
+
from trcc.ipc import create_lcd_proxy
|
|
29
|
+
|
|
30
|
+
lcd = LCDDevice(
|
|
31
|
+
find_active_fn=find_active,
|
|
32
|
+
proxy_factory_fn=create_lcd_proxy,
|
|
33
|
+
)
|
|
32
34
|
result = lcd.connect(device)
|
|
33
35
|
if not result["success"]:
|
|
34
36
|
print(result["error"])
|
|
35
37
|
return lcd, 1
|
|
38
|
+
if result.get("proxy"):
|
|
39
|
+
print(f"Routing through {result['proxy'].value} instance")
|
|
36
40
|
return lcd, 0
|
|
37
41
|
|
|
38
42
|
|
|
@@ -16,18 +16,23 @@ from trcc.core.models import parse_hex_color as _parse_hex
|
|
|
16
16
|
def _connect_or_fail() -> tuple[LEDDevice, int]:
|
|
17
17
|
"""Create device, connect. Returns (device, exit_code).
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
Composition root: injects instance detection (find_active) and proxy
|
|
20
|
+
factory so core routes through GUI/API if one is already running.
|
|
21
21
|
"""
|
|
22
|
-
from trcc.
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
led = LEDDevice(
|
|
22
|
+
from trcc.core.instance import find_active
|
|
23
|
+
from trcc.ipc import create_led_proxy
|
|
24
|
+
|
|
25
|
+
led = LEDDevice(
|
|
26
|
+
find_active_fn=find_active,
|
|
27
|
+
proxy_factory_fn=create_led_proxy,
|
|
28
|
+
)
|
|
26
29
|
result = led.connect()
|
|
27
30
|
if not result["success"]:
|
|
28
31
|
print("No LED device found.")
|
|
29
32
|
return led, 1
|
|
30
|
-
if result.get("
|
|
33
|
+
if result.get("proxy"):
|
|
34
|
+
print(f"Routing through {result['proxy'].value} instance")
|
|
35
|
+
elif result.get("status"):
|
|
31
36
|
print(result["status"])
|
|
32
37
|
return led, 0
|
|
33
38
|
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
"""Unified instance detection — which trcc process owns the device?
|
|
2
|
+
|
|
3
|
+
Pure core module: no adapter imports, no framework deps.
|
|
4
|
+
Any adapter (GUI, CLI, API) calls find_active() before touching USB.
|
|
5
|
+
|
|
6
|
+
Priority: GUI > API > direct.
|
|
7
|
+
"""
|
|
8
|
+
from __future__ import annotations
|
|
9
|
+
|
|
10
|
+
import enum
|
|
11
|
+
import logging
|
|
12
|
+
import os
|
|
13
|
+
import socket
|
|
14
|
+
from pathlib import Path
|
|
15
|
+
|
|
16
|
+
log = logging.getLogger(__name__)
|
|
17
|
+
|
|
18
|
+
# Default API port — single source of truth (used by CLI serve and detection)
|
|
19
|
+
DEFAULT_API_PORT = 9876
|
|
20
|
+
|
|
21
|
+
# IPC socket name — matches ipc.py
|
|
22
|
+
_SOCK_NAME = "trcc-linux.sock"
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class InstanceKind(enum.Enum):
|
|
26
|
+
"""Which type of trcc instance is running."""
|
|
27
|
+
GUI = "gui"
|
|
28
|
+
API = "api"
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
def _socket_path() -> Path:
|
|
32
|
+
return Path(os.environ.get("XDG_RUNTIME_DIR", "/tmp")) / _SOCK_NAME
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
def _gui_running() -> bool:
|
|
36
|
+
"""Check if GUI daemon is listening on IPC socket."""
|
|
37
|
+
path = _socket_path()
|
|
38
|
+
if not path.exists():
|
|
39
|
+
return False
|
|
40
|
+
try:
|
|
41
|
+
s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
|
|
42
|
+
s.settimeout(1.0)
|
|
43
|
+
s.connect(str(path))
|
|
44
|
+
s.close()
|
|
45
|
+
return True
|
|
46
|
+
except OSError:
|
|
47
|
+
return False
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
def _api_running(port: int = DEFAULT_API_PORT) -> bool:
|
|
51
|
+
"""Check if API server responds on localhost."""
|
|
52
|
+
try:
|
|
53
|
+
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
54
|
+
s.settimeout(1.0)
|
|
55
|
+
s.connect(("127.0.0.1", port))
|
|
56
|
+
# Send minimal HTTP GET /health
|
|
57
|
+
s.sendall(b"GET /health HTTP/1.0\r\nHost: 127.0.0.1\r\n\r\n")
|
|
58
|
+
data = s.recv(512)
|
|
59
|
+
s.close()
|
|
60
|
+
return b"200" in data and b"trcc" in data.lower()
|
|
61
|
+
except OSError:
|
|
62
|
+
return False
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
def find_active(port: int = DEFAULT_API_PORT) -> InstanceKind | None:
|
|
66
|
+
"""Detect which trcc instance (if any) currently owns the device.
|
|
67
|
+
|
|
68
|
+
Check order: GUI (IPC socket) > API (HTTP health) > None.
|
|
69
|
+
Returns None when no other instance is running — caller should
|
|
70
|
+
take device ownership directly.
|
|
71
|
+
"""
|
|
72
|
+
if _gui_running():
|
|
73
|
+
log.info("Detected running GUI daemon (IPC socket)")
|
|
74
|
+
return InstanceKind.GUI
|
|
75
|
+
if _api_running(port):
|
|
76
|
+
log.info("Detected running API server (port %d)", port)
|
|
77
|
+
return InstanceKind.API
|
|
78
|
+
return None
|
|
@@ -43,6 +43,8 @@ class LCDDevice(Device):
|
|
|
43
43
|
renderer: Any = None,
|
|
44
44
|
dc_config_cls: Any = None,
|
|
45
45
|
load_config_json_fn: Any = None,
|
|
46
|
+
find_active_fn: Any = None,
|
|
47
|
+
proxy_factory_fn: Any = None,
|
|
46
48
|
) -> None:
|
|
47
49
|
self._device_svc = device_svc
|
|
48
50
|
self._display_svc = display_svc
|
|
@@ -50,6 +52,9 @@ class LCDDevice(Device):
|
|
|
50
52
|
self._renderer = renderer
|
|
51
53
|
self._dc_config_cls = dc_config_cls
|
|
52
54
|
self._load_config_json_fn = load_config_json_fn
|
|
55
|
+
self._find_active_fn = find_active_fn
|
|
56
|
+
self._proxy_factory_fn = proxy_factory_fn
|
|
57
|
+
self._proxy: Any = None # Set when routing through another instance
|
|
53
58
|
|
|
54
59
|
# All capability accessors point to self — methods are on LCDDevice
|
|
55
60
|
self.theme: LCDDevice = self # type: ignore[assignment]
|
|
@@ -114,14 +119,33 @@ class LCDDevice(Device):
|
|
|
114
119
|
# ── Device ABC ─────────────────────────────────────────────────
|
|
115
120
|
|
|
116
121
|
def connect(self, detected: Any = None) -> dict:
|
|
117
|
-
"""Connect to LCD device
|
|
122
|
+
"""Connect to LCD device — or route through active instance.
|
|
123
|
+
|
|
124
|
+
If find_active_fn and proxy_factory_fn are injected and another
|
|
125
|
+
trcc instance owns the device, delegates all future method calls
|
|
126
|
+
to the proxy. Otherwise connects to USB directly.
|
|
118
127
|
|
|
119
128
|
Args:
|
|
120
129
|
detected: DetectedDevice, device_path str, or None for auto-detect.
|
|
121
130
|
|
|
122
131
|
Returns:
|
|
123
|
-
{"success": bool, "resolution": (w, h), "device_path": str
|
|
132
|
+
{"success": bool, "resolution": (w, h), "device_path": str,
|
|
133
|
+
"proxy": InstanceKind | None}
|
|
124
134
|
"""
|
|
135
|
+
# Check if another instance already owns the device
|
|
136
|
+
if detected is None and self._find_active_fn and self._proxy_factory_fn:
|
|
137
|
+
active = self._find_active_fn()
|
|
138
|
+
if active is not None:
|
|
139
|
+
proxy = self._proxy_factory_fn(active)
|
|
140
|
+
self._set_proxy(proxy)
|
|
141
|
+
log.info("Routing through %s instance", active.value)
|
|
142
|
+
return {
|
|
143
|
+
"success": True,
|
|
144
|
+
"proxy": active,
|
|
145
|
+
"resolution": getattr(self._proxy, 'resolution', (0, 0)),
|
|
146
|
+
"device_path": getattr(self._proxy, 'device_path', ''),
|
|
147
|
+
}
|
|
148
|
+
|
|
125
149
|
from ..adapters.device.detector import DeviceDetector
|
|
126
150
|
from ..adapters.device.factory import DeviceProtocolFactory
|
|
127
151
|
from ..adapters.device.led import probe_led_model
|
|
@@ -154,6 +178,8 @@ class LCDDevice(Device):
|
|
|
154
178
|
|
|
155
179
|
@property
|
|
156
180
|
def connected(self) -> bool:
|
|
181
|
+
if self._proxy is not None:
|
|
182
|
+
return getattr(self._proxy, 'connected', True)
|
|
157
183
|
return (self._device_svc is not None
|
|
158
184
|
and self._device_svc.selected is not None)
|
|
159
185
|
|
|
@@ -161,6 +187,15 @@ class LCDDevice(Device):
|
|
|
161
187
|
def device_info(self) -> Any:
|
|
162
188
|
return self._device_svc.selected if self._device_svc else None
|
|
163
189
|
|
|
190
|
+
def _set_proxy(self, proxy: Any) -> None:
|
|
191
|
+
"""Route all capability accessors through proxy."""
|
|
192
|
+
self._proxy = proxy
|
|
193
|
+
self.theme = proxy # type: ignore[assignment]
|
|
194
|
+
self.frame = proxy # type: ignore[assignment]
|
|
195
|
+
self.video = proxy # type: ignore[assignment]
|
|
196
|
+
self.overlay = proxy # type: ignore[assignment]
|
|
197
|
+
self.settings = proxy # type: ignore[assignment]
|
|
198
|
+
|
|
164
199
|
def cleanup(self) -> None:
|
|
165
200
|
if self._display_svc:
|
|
166
201
|
self._display_svc.cleanup()
|
|
@@ -559,17 +594,18 @@ class LCDDevice(Device):
|
|
|
559
594
|
}
|
|
560
595
|
|
|
561
596
|
def load_theme_by_name(self, name: str, width: int = 0, height: int = 0) -> dict:
|
|
562
|
-
"""Load a theme by name
|
|
597
|
+
"""Load a theme by name, send to device, persist as last-used.
|
|
563
598
|
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
(brightness, rotation
|
|
599
|
+
Full pipeline matching GUI/CLI behavior:
|
|
600
|
+
1. Discover themes for resolution → find by name
|
|
601
|
+
2. select() → DisplayService processes (brightness, rotation)
|
|
602
|
+
3. Send static image to device (video themes return for caller to loop)
|
|
603
|
+
4. Persist theme_path to per-device config
|
|
567
604
|
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
width: Resolution width (0 = use device resolution).
|
|
571
|
-
height: Resolution height (0 = use device resolution).
|
|
605
|
+
Returns dict with: success, image, is_animated, interval,
|
|
606
|
+
theme_path (Path), config_path (Path|None for overlay dc).
|
|
572
607
|
"""
|
|
608
|
+
from ..conf import Settings
|
|
573
609
|
from ..services import ThemeService
|
|
574
610
|
from .models import ThemeDir as CoreThemeDir
|
|
575
611
|
|
|
@@ -579,7 +615,30 @@ class LCDDevice(Device):
|
|
|
579
615
|
match = next((t for t in themes if t.name == name), None)
|
|
580
616
|
if not match:
|
|
581
617
|
return {"success": False, "error": f"Theme '{name}' not found"}
|
|
582
|
-
|
|
618
|
+
|
|
619
|
+
result = self.select(match)
|
|
620
|
+
if not result.get("success"):
|
|
621
|
+
return result
|
|
622
|
+
|
|
623
|
+
image = result.get("image")
|
|
624
|
+
is_animated = result.get("is_animated", False)
|
|
625
|
+
|
|
626
|
+
# Send static image to device (matches GUI/CLI behavior)
|
|
627
|
+
if image and not is_animated:
|
|
628
|
+
self.send(image)
|
|
629
|
+
|
|
630
|
+
# Include theme paths for caller to handle overlay/persist
|
|
631
|
+
result["theme_path"] = match.path
|
|
632
|
+
result["config_path"] = match.config_path
|
|
633
|
+
|
|
634
|
+
# Persist as last-used theme
|
|
635
|
+
dev = self._device_svc.selected if self._device_svc else None
|
|
636
|
+
if dev and match.path:
|
|
637
|
+
key = Settings.device_config_key(dev.device_index, dev.vid, dev.pid)
|
|
638
|
+
Settings.save_device_setting(key, 'theme_path', str(match.path))
|
|
639
|
+
Settings.save_device_setting(key, 'mask_path', '')
|
|
640
|
+
|
|
641
|
+
return result
|
|
583
642
|
|
|
584
643
|
def load_local(self, resolution: tuple[int, int]) -> dict:
|
|
585
644
|
themes = self._theme_svc.load_local_themes(resolution)
|
|
@@ -8,11 +8,25 @@ CLI, GUI, and API all consume this directly (DIP — core/, not adapter/).
|
|
|
8
8
|
"""
|
|
9
9
|
from __future__ import annotations
|
|
10
10
|
|
|
11
|
+
import functools
|
|
12
|
+
import logging
|
|
11
13
|
from typing import Any
|
|
12
14
|
|
|
13
15
|
from .models import LEDMode
|
|
14
16
|
from .ports import Device
|
|
15
17
|
|
|
18
|
+
log = logging.getLogger(__name__)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def _forward_to_proxy(method):
|
|
22
|
+
"""Forward method call to proxy if one is active."""
|
|
23
|
+
@functools.wraps(method)
|
|
24
|
+
def wrapper(self, *args, **kwargs):
|
|
25
|
+
if self._proxy is not None:
|
|
26
|
+
return getattr(self._proxy, method.__name__)(*args, **kwargs)
|
|
27
|
+
return method(self, *args, **kwargs)
|
|
28
|
+
return wrapper
|
|
29
|
+
|
|
16
30
|
|
|
17
31
|
class LEDDevice(Device):
|
|
18
32
|
"""LED device — extends Device ABC, delegates to LEDService.
|
|
@@ -27,14 +41,23 @@ class LEDDevice(Device):
|
|
|
27
41
|
|
|
28
42
|
led = LEDDevice()
|
|
29
43
|
led.initialize(device_info, style) # GUI: device already detected
|
|
44
|
+
|
|
45
|
+
DI for instance detection:
|
|
46
|
+
led = LEDDevice(find_active_fn=find_active, proxy_factory_fn=factory)
|
|
47
|
+
led.connect() # routes through GUI/API if one is running
|
|
30
48
|
"""
|
|
31
49
|
|
|
32
50
|
def __init__(self, svc: Any = None,
|
|
33
51
|
get_protocol: Any = None,
|
|
34
|
-
device_svc: Any = None
|
|
52
|
+
device_svc: Any = None,
|
|
53
|
+
find_active_fn: Any = None,
|
|
54
|
+
proxy_factory_fn: Any = None) -> None:
|
|
35
55
|
self._svc = svc
|
|
36
56
|
self._get_protocol = get_protocol
|
|
37
57
|
self._device_svc = device_svc
|
|
58
|
+
self._find_active_fn = find_active_fn
|
|
59
|
+
self._proxy_factory_fn = proxy_factory_fn
|
|
60
|
+
self._proxy: Any = None
|
|
38
61
|
self._init_status: str | None = None
|
|
39
62
|
self._device: Any = None # DetectedDevice from detection
|
|
40
63
|
|
|
@@ -43,11 +66,27 @@ class LEDDevice(Device):
|
|
|
43
66
|
def connect(self, detected: Any = None) -> dict:
|
|
44
67
|
"""Detect LED device, probe model, initialize LEDService.
|
|
45
68
|
|
|
69
|
+
If find_active_fn and proxy_factory_fn are injected and another
|
|
70
|
+
trcc instance owns the device, delegates all future method calls
|
|
71
|
+
to the proxy. Otherwise connects to USB directly.
|
|
72
|
+
|
|
46
73
|
Returns: {"success": bool, "status": str}
|
|
47
74
|
"""
|
|
48
75
|
if self._svc:
|
|
49
76
|
return {"success": True, "status": self._init_status or ""}
|
|
50
77
|
|
|
78
|
+
# Check if another instance already owns the device
|
|
79
|
+
if detected is None and self._find_active_fn and self._proxy_factory_fn:
|
|
80
|
+
active = self._find_active_fn()
|
|
81
|
+
if active is not None:
|
|
82
|
+
self._proxy = self._proxy_factory_fn(active)
|
|
83
|
+
log.info("LED routing through %s instance", active.value)
|
|
84
|
+
return {
|
|
85
|
+
"success": True,
|
|
86
|
+
"proxy": active,
|
|
87
|
+
"status": f"Connected (via {active.value})",
|
|
88
|
+
}
|
|
89
|
+
|
|
51
90
|
from ..services import LEDService
|
|
52
91
|
|
|
53
92
|
if self._device_svc is None:
|
|
@@ -78,6 +117,8 @@ class LEDDevice(Device):
|
|
|
78
117
|
|
|
79
118
|
@property
|
|
80
119
|
def connected(self) -> bool:
|
|
120
|
+
if self._proxy is not None:
|
|
121
|
+
return getattr(self._proxy, 'connected', True)
|
|
81
122
|
return self._svc is not None
|
|
82
123
|
|
|
83
124
|
@property
|
|
@@ -249,7 +290,10 @@ class LEDDevice(Device):
|
|
|
249
290
|
self._svc.set_selected_zone(zone)
|
|
250
291
|
|
|
251
292
|
# ── Global operations (CLI/API — immediate tick/send/save) ────
|
|
293
|
+
# @_forward_to_proxy: when another trcc instance owns the device,
|
|
294
|
+
# these calls route through the proxy transparently.
|
|
252
295
|
|
|
296
|
+
@_forward_to_proxy
|
|
253
297
|
def set_color(self, r: int, g: int, b: int) -> dict:
|
|
254
298
|
self._svc.set_mode(LEDMode.STATIC)
|
|
255
299
|
self._svc.set_color(r, g, b)
|
|
@@ -257,6 +301,7 @@ class LEDDevice(Device):
|
|
|
257
301
|
return {"success": True, "colors": colors,
|
|
258
302
|
"message": f"LED color set to #{r:02x}{g:02x}{b:02x}"}
|
|
259
303
|
|
|
304
|
+
@_forward_to_proxy
|
|
260
305
|
def set_mode(self, mode: LEDMode | str | int) -> dict:
|
|
261
306
|
resolved = self._resolve_mode(mode)
|
|
262
307
|
if not resolved:
|
|
@@ -269,6 +314,7 @@ class LEDDevice(Device):
|
|
|
269
314
|
return {"success": True, "colors": colors, "animated": animated,
|
|
270
315
|
"message": f"LED mode: {resolved.name.lower()}"}
|
|
271
316
|
|
|
317
|
+
@_forward_to_proxy
|
|
272
318
|
def set_brightness(self, level: int) -> dict:
|
|
273
319
|
if level < 0 or level > 100:
|
|
274
320
|
return {"success": False, "error": "Brightness must be 0-100"}
|
|
@@ -277,16 +323,19 @@ class LEDDevice(Device):
|
|
|
277
323
|
return {"success": True, "colors": colors,
|
|
278
324
|
"message": f"LED brightness set to {level}%"}
|
|
279
325
|
|
|
326
|
+
@_forward_to_proxy
|
|
280
327
|
def toggle_global(self, on: bool) -> dict:
|
|
281
328
|
self._svc.toggle_global(on)
|
|
282
329
|
self._send_and_save()
|
|
283
330
|
return {"success": True, "message": f"LEDs {'on' if on else 'off'}"}
|
|
284
331
|
|
|
332
|
+
@_forward_to_proxy
|
|
285
333
|
def off(self) -> dict:
|
|
286
334
|
self._svc.toggle_global(False)
|
|
287
335
|
self._send_and_save()
|
|
288
336
|
return {"success": True, "message": "LEDs turned off"}
|
|
289
337
|
|
|
338
|
+
@_forward_to_proxy
|
|
290
339
|
def set_sensor_source(self, source: str) -> dict:
|
|
291
340
|
source = source.lower()
|
|
292
341
|
if source not in ('cpu', 'gpu'):
|
|
@@ -299,6 +348,7 @@ class LEDDevice(Device):
|
|
|
299
348
|
|
|
300
349
|
# ── Zone operations ────────────────────────────────────────────
|
|
301
350
|
|
|
351
|
+
@_forward_to_proxy
|
|
302
352
|
def set_zone_color(self, zone: int, r: int, g: int, b: int) -> dict:
|
|
303
353
|
if err := self._validate_zone(zone):
|
|
304
354
|
return err
|
|
@@ -307,6 +357,7 @@ class LEDDevice(Device):
|
|
|
307
357
|
return {"success": True, "colors": colors,
|
|
308
358
|
"message": f"Zone {zone} color set to #{r:02x}{g:02x}{b:02x}"}
|
|
309
359
|
|
|
360
|
+
@_forward_to_proxy
|
|
310
361
|
def set_zone_mode(self, zone: int, mode: LEDMode | str | int) -> dict:
|
|
311
362
|
if err := self._validate_zone(zone):
|
|
312
363
|
return err
|
|
@@ -318,6 +369,7 @@ class LEDDevice(Device):
|
|
|
318
369
|
return {"success": True, "colors": colors,
|
|
319
370
|
"message": f"Zone {zone} mode set to {resolved.name.lower()}"}
|
|
320
371
|
|
|
372
|
+
@_forward_to_proxy
|
|
321
373
|
def set_zone_brightness(self, zone: int, level: int) -> dict:
|
|
322
374
|
if err := self._validate_zone(zone):
|
|
323
375
|
return err
|
|
@@ -328,6 +380,7 @@ class LEDDevice(Device):
|
|
|
328
380
|
return {"success": True, "colors": colors,
|
|
329
381
|
"message": f"Zone {zone} brightness set to {level}%"}
|
|
330
382
|
|
|
383
|
+
@_forward_to_proxy
|
|
331
384
|
def toggle_zone(self, zone: int, on: bool) -> dict:
|
|
332
385
|
if err := self._validate_zone(zone):
|
|
333
386
|
return err
|
|
@@ -336,6 +389,7 @@ class LEDDevice(Device):
|
|
|
336
389
|
return {"success": True,
|
|
337
390
|
"message": f"Zone {zone} {'ON' if on else 'OFF'}"}
|
|
338
391
|
|
|
392
|
+
@_forward_to_proxy
|
|
339
393
|
def set_zone_sync(self, enabled: bool,
|
|
340
394
|
interval: int | None = None) -> dict:
|
|
341
395
|
if interval is not None:
|
|
@@ -359,6 +413,7 @@ class LEDDevice(Device):
|
|
|
359
413
|
|
|
360
414
|
# ── Segment operations ─────────────────────────────────────────
|
|
361
415
|
|
|
416
|
+
@_forward_to_proxy
|
|
362
417
|
def toggle_segment(self, index: int, on: bool) -> dict:
|
|
363
418
|
if err := self._validate_segment(index):
|
|
364
419
|
return err
|
|
@@ -367,17 +422,20 @@ class LEDDevice(Device):
|
|
|
367
422
|
return {"success": True,
|
|
368
423
|
"message": f"Segment {index} {'ON' if on else 'OFF'}"}
|
|
369
424
|
|
|
425
|
+
@_forward_to_proxy
|
|
370
426
|
def set_clock_format(self, is_24h: bool) -> dict:
|
|
371
427
|
self._svc.set_clock_format(is_24h)
|
|
372
428
|
self._send_and_save()
|
|
373
429
|
return {"success": True,
|
|
374
430
|
"message": f"Clock format set to {'24h' if is_24h else '12h'}"}
|
|
375
431
|
|
|
432
|
+
@_forward_to_proxy
|
|
376
433
|
def set_week_start(self, is_sunday: bool) -> dict:
|
|
377
434
|
self._svc.set_week_start(is_sunday)
|
|
378
435
|
self._send_and_save()
|
|
379
436
|
return {"success": True}
|
|
380
437
|
|
|
438
|
+
@_forward_to_proxy
|
|
381
439
|
def set_temp_unit(self, unit: str) -> dict:
|
|
382
440
|
unit = unit.upper()
|
|
383
441
|
if unit not in ('C', 'F'):
|
|
@@ -196,6 +196,16 @@ DcConfigFactory = Callable[..., Any]
|
|
|
196
196
|
# Concrete: dc_parser.load_config_json
|
|
197
197
|
LoadConfigJsonFn = Callable[[str], Any]
|
|
198
198
|
|
|
199
|
+
# Type alias for instance detection callable.
|
|
200
|
+
# Concrete: core.instance.find_active
|
|
201
|
+
# Returns InstanceKind | None — who currently owns the device.
|
|
202
|
+
FindActiveFn = Callable[[], Any]
|
|
203
|
+
|
|
204
|
+
# Type alias for proxy factory callable.
|
|
205
|
+
# Concrete: ipc.create_lcd_proxy / ipc.create_led_proxy
|
|
206
|
+
# Takes InstanceKind, returns a proxy object (IPCDisplayProxy, APIDisplayProxy, etc.)
|
|
207
|
+
ProxyFactoryFn = Callable[[Any], Any]
|
|
208
|
+
|
|
199
209
|
# Type alias for theme export callable.
|
|
200
210
|
# Concrete: dc_writer.export_theme
|
|
201
211
|
ExportThemeFn = Callable[[str, str], None]
|