trcc-linux 9.8.3__tar.gz → 9.8.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/.gitignore +7 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/PKG-INFO +32 -21
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/README.md +31 -20
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/pyproject.toml +1 -1
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/__version__.py +1 -1
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/infra/sysinfo_config.py +18 -6
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/sensors/aggregator.py +19 -1
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/app.py +39 -1
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/commands/__init__.py +4 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/commands/_helpers.py +1 -1
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/commands/device.py +79 -5
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/models.py +16 -2
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/protocol.py +32 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/registry.py +5 -2
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/results.py +1 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/_dc.py +22 -3
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/display.py +3 -21
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/led_effects.py +9 -2
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/overlay.py +26 -10
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/settings.py +7 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/api/_shared.py +1 -1
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/api/display.py +15 -1
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/api/schemas.py +3 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/cli/_ctx.py +41 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/cli/display.py +78 -86
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/cli/led.py +31 -105
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/display_mode_panels.py +10 -6
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/lcd_handler.py +11 -2
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/overlay_element.py +13 -9
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/trcc_app.py +8 -15
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/uc_activity_sidebar.py +1 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/uc_theme_setting.py +7 -3
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/presentation/overlay_serialization.py +20 -9
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/overlay_editor.py +11 -1
- trcc_linux-9.8.5/tests/adapters/infra/__init__.py +0 -0
- trcc_linux-9.8.5/tests/adapters/infra/test_sysinfo_config_fan_map.py +85 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_cli_commands.py +15 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_dc_reader.py +65 -2
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_gpu_preference.py +17 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_gui_panels.py +2 -1
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_led_effects.py +23 -3
- trcc_linux-9.8.5/tests/test_manpages.py +73 -0
- trcc_linux-9.8.5/tests/test_overlay_element_id.py +66 -0
- trcc_linux-9.8.5/tests/test_overlay_metric_unit.py +101 -0
- trcc_linux-9.8.5/tests/test_overlay_show_unit.py +71 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_send_color.py +88 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_settings_migration.py +23 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/ui/presentation/test_overlay_model.py +58 -4
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/LICENSE +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/__main__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/_boot.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/_entry.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/device/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/device/_pyusb_find.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/device/bulk_lcd.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/device/hid_lcd.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/device/led.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/device/ly_lcd.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/device/scsi_lcd.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/device/transport.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/device/usb_bot_scsi.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/diagnostics/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/diagnostics/adapter.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/diagnostics/debug_report.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/diagnostics/doctor.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/diagnostics/health.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/infra/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/infra/logging.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/infra/network.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/infra/send_scheduler.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/render/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/render/qt.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/repo/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/repo/data_install.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/repo/github_releases.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/repo/http.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/screencast/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/screencast/qt.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/sensors/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/sensors/_hwinfo.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/sensors/_lhm.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/sensors/_macos_hid.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/sensors/_msacpi.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/sensors/_powermetrics.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/sensors/_smc.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/sensors/_sysctl.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/sensors/_wmi_gpu.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/sensors/bsd.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/sensors/chain.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/sensors/gpu_detect.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/sensors/hwmon.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/sensors/macos.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/sensors/nvml.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/sensors/psutil_sources.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/sensors/windows.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/system/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/system/_autostart.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/system/_devd.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/system/_elevate.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/system/_hotplug.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/system/_imc_timings.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/system/_macos_setup.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/system/_selinux.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/system/_udev.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/system/_windows_wmi.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/system/_winusb.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/system/bsd.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/system/linux.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/system/macos.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/system/spd.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/system/windows.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/theme/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/adapters/theme/cloud.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/assets/LibreHardwareMonitor.config +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/assets/com.github.lexonight1.trcc.policy +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/assets/fonts/MSYH.TTC +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/assets/fonts/MSYHBD.TTC +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/assets/fonts/README.md +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/assets/icons/app.ico +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/assets/icons/trcc.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/assets/icons/trcc_128x128.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/assets/icons/trcc_16x16.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/assets/icons/trcc_24x24.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/assets/icons/trcc_256x256.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/assets/icons/trcc_32x32.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/assets/icons/trcc_48x48.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/assets/icons/trcc_64x64.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/assets/trcc-imc +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/assets/trcc-linux.desktop +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/assets/trcc-quirk-fix.service +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/_colors.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/_safe.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/_version.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/commands/_base.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/commands/led.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/commands/system.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/commands/theme.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/device_recovery.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/diagnostics.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/errors.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/events.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/geometry.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/i18n.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/led_models.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/led_protocol.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/ports.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/core/variants.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/daemon.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/data/trcc_usb.te +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ipc.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/proxy.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/_ansi.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/_clock.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/audio.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/cloud_theme.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/data_install.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/device_sender.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/first_run.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/led_animation_loop.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/led_segment.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/media.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/metrics_loop.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/metrics_personalize.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/migration.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/quickstart.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/slideshow.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/theme.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/video_cache.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/services/video_export.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/_errors.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/api/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/api/config.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/api/devices.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/api/led.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/api/main.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/api/system.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/api/theme.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/api/trcc.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/cli/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/cli/config.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/cli/device.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/cli/main.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/cli/shell.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/cli/system.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/cli/theme.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/_ui_state.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/240240.gif +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/240320.gif +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/320240.gif +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/320320.gif +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1AK120 Digital.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1AK120 Digitala.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1AK120_Digital.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1AK120_Digitala.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1AS120 VISION.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1AS120 VISIONa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1AS120_VISION.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1AS120_VISIONa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1AX120 DIGITAL.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1AX120 DIGITALa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1AX120_DIGITAL.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1AX120_DIGITALa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1BA120 VISION.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1BA120 VISIONa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1BA120_VISION.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1BA120_VISIONa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1CORE VISION.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1CORE VISIONa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1CORE_VISION.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1CORE_VISIONa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1CZ1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1CZ1a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1CZ2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1CZ2a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1CZTV.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1CZTVa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1ELITE VISION.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1ELITE VISIONa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1ELITE_VISION.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1ELITE_VISIONa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN HORIZON PRO.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN HORIZON PROa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN MAGIC PRO.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN MAGIC PROa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN VISION V2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN VISION V2a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN WARFRAME PRO.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN WARFRAME PROa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN WARFRAME SE.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN WARFRAME SEa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN WARFRAME.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN WARFRAMEa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN_HORIZON_PROa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN_MAGIC_PROa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN_VISION_V2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN_VISION_V2a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAME.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAME_PRO.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAME_PROa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAME_SE.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAME_SEa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAMEa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1GRAND VISION.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1GRAND VISIONa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1GRAND_VISION.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1GRAND_VISIONa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1HR10 2280 PRO DIGITAL.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1HR10 2280 PRO DIGITALa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1HYPER VISION.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1HYPER VISIONa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1HYPER_VISION.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1HYPER_VISIONa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1KVMALEDC6.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1KVMALEDC6a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC10.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC10a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC13.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC13a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC15.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC15a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC1a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC2JD.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC2JDa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC2a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC3.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC3a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC5.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC5a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC7.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC7a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC8.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC8a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC9.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LC9a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LD10.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LD10a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LD11.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LD11a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LD6.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LD6a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LD7.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LD7a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LD8.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LD8a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LD9.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LD9a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF014.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF014a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF10.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF10V.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF10Va.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF10a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF11.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF11a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF12.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF12a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF13.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF13a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF14.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF14a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF15.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF15a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF16.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF167.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF16a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF17a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF18.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF18a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF19.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF19a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF20.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF20a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF21.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF21a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF22.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF22a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF25.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF25a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF8.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LF8a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LM16SE.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LM16SEa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LM19SE.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LM19SEa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LM22.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LM22a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LM24.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LM24a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LM26.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LM26a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LM27.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LM27a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LM30.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1LM30a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1Mjolnir VISION PRO.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1Mjolnir VISION PROa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1Mjolnir VISION.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1Mjolnir VISIONa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1Mjolnir_VISION.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1Mjolnir_VISION_PRO.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1Mjolnir_VISION_PROa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1Mjolnir_VISIONa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1PA120 DIGITAL.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1PA120 DIGITALa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1PA120_DIGITAL.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1PA120_DIGITALa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1PC1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1PC1a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1RK120 DIGITAL.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1RK120 DIGITALa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1RK120_DIGITAL.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1RK120_DIGITALa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1RP130 VISION.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1RP130 VISIONa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1RP130_VISION.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1RP130_VISIONa.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1RX1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1RX1a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1Stream Vision.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1Stream Visiona.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1Stream_Vision.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/A1Stream_Visiona.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/about_dropdown.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/about_dropdown_bg.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/about_dropdown_select.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/about_update.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/about_update_overlay.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_about_bg.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_brightness_0.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_brightness_1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_brightness_2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_brightness_3.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_export.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_form_bg.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_help.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_import.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_main_bg.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_power.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_power_hover.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_save.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_sysinfo_bg.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_tab_cloud.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_tab_cloud_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_tab_local.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_tab_local_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_tab_mask.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_tab_mask_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_tab_mask_lower.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_tab_settings.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_tab_settings_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_theme_base_bg.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_theme_gallery_bg.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/app_theme_settings_bg.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/carousel_1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/carousel_2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/carousel_3.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/carousel_4.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/carousel_5.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/carousel_6.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/carousel_btn.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/carousel_btn_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/carousel_select_frame.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/color_panel_eyedropper.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/color_panel_picker.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/color_panel_selector_ring.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/color_panel_slider_thumb.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/color_wheel_knob.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/color_wheel_knob_0.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/color_wheel_toggle_hover.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/color_wheel_toggle_off.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/color_wheel_toggle_on.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_12h.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_24h.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_border.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_border_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_crop.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_date_dm.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_date_dmy.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_date_md.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_date_ymd.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_digit_font.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_fit_height.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_fit_width.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_function.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_function_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_icon.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_icon_gif.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_icon_image.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_icon_livestream.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_icon_mask.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_icon_network.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_icon_video.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_m1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_m1_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_m2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_m2_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_m3.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_m3_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_m4.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_m4_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_m5.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_m5_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_m6.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_m6_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_minus.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_network_btn.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_plus.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_rotate.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_slider_thumb.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_text_font.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_unit_c.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/display_mode_unit_f.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/frozen_warframe_ultra.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/frozen_warframe_ultra_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_110x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_116x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_1280x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_160x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_180x400.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_180x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_240x240.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_240x320.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_240x400.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_240x427.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_270x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_320x240.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_320x320.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_320x86.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_360x360.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_400x180.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_400x240.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_427x240.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_480x110.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_480x116.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_480x160.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_480x180.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_480x270.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_480x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/image_cut_86x320.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_aggregate.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_aggregate_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_bg_cz1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_bg_kvma.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_bg_lc1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_bg_lc2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_bg_lf10.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_bg_lf11.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_bg_lf12.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_bg_lf13.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_bg_lf15.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_bg_lf8.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_bg_rgb_lf13.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_bg_segment.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_bg_segment_4zone.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_dropdown.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_dropdown_2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_dropdown_highlight.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_dropdown_highlight_2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_dropdown_menu.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_dropdown_menu_2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_external.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_external_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_helmet_1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_helmet_2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_helmet_3.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_helmet_4.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_helmet_5.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_meter_bar_1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_meter_bar_2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_meter_bar_3.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_meter_bar_4.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_meter_bar_5.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_meter_bar_6.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_meter_bg_1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_meter_bg_2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_meter_bg_3.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_meter_bg_4.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_meter_bg_5.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_meter_bg_5_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_meter_bg_6.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_10.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_10_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_11.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_11_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_12.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_12_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_1_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_2_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_3.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_3_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_4.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_4_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_5.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_5_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_6.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_6_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_7.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_7_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_8.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_8_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_9.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_mode_9_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_power.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_power_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preset_blue.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preset_cyan.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preset_green.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preset_orange.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preset_purple.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preset_red.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preset_white.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preset_yellow.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preview_ak120.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preview_ax120.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preview_cz1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preview_frozen_horizon_pro.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preview_frozen_magic_pro.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preview_lc1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preview_lc2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preview_lf10.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preview_lf11.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preview_lf12.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preview_lf13.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preview_lf15.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preview_lf8.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preview_pa120.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_preview_pa120_space.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_show_1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_show_1_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_show_2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_show_2_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_show_3.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_show_3_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_slider_thumb.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_zone_btn_1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_zone_btn_1_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_zone_btn_2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_zone_btn_2_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_zone_btn_3.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_zone_btn_3_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_zone_btn_4.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_zone_btn_4_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_zone_mode_1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_zone_mode_1_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_zone_mode_2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_zone_mode_2_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_zone_mode_3.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_zone_mode_3_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_zone_mode_4.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_zone_mode_4_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_zone_mode_5.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_zone_mode_5_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_zone_mode_6.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/led_zone_mode_6_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/overlay_label_sysinfo.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/overlay_label_sysinfo_1_en.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/overlay_label_sysinfo_1_tc.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/overlay_label_sysinfo_en.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/overlay_label_sysinfo_tc.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/overlay_label_text.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/overlay_label_text_en.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/overlay_label_text_tc.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/overlay_label_time.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/overlay_label_time_en.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/overlay_label_time_tc.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/overlay_mode_date.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/overlay_mode_hardware.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/overlay_mode_text.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/overlay_mode_time.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/overlay_mode_weekday.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/overlay_select.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_110x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_116x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_160x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_180x400.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_180x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_240x240.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_240x320.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_240x400.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_240x427.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_270x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_320x240.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_320x320.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_320x320_round.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_320x86.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_360x360_round.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_400x180.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_400x240.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_427x240.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_480x110.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_480x116.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_480x160.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_480x180.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_480x270.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_480x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_480x480_round.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_86x320.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_animation.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_btn.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_btn_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_pause.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_play.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_player_control_bg.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_popup_1280x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_popup_1920x440.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_popup_1920x462.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_popup_320x960.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_popup_360x800.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_popup_440x1920.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_popup_462x1920.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_popup_480x1280.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_popup_480x800.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_popup_480x854.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_popup_540x960.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_popup_800x360.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_popup_800x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_popup_854x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_popup_960x320.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_popup_960x540.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_res_240x240.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_res_240x320.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_res_320x240.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_res_320x320.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_round_mask_320x320.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_round_mask_360x360.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_round_mask_480x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_video_controls_bg.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/preview_video_controls_bg_alt.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/screen_led_deco_1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/screen_led_deco_2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/screen_led_deco_3.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/screen_led_deco_4.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/screen_led_deco_cz1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/secondary_screen_bg.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/secondary_screen_bg_d.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/secondary_screen_bg_e.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/secondary_screen_bg_en.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/secondary_screen_bg_f.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/secondary_screen_bg_h.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/secondary_screen_bg_p.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/secondary_screen_bg_r.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/secondary_screen_bg_tc.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/secondary_screen_bg_x.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_add_content.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_add_content_btn.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_add_content_mask.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_add_date.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_add_date_1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_add_icon.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_add_link_1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_add_text.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_add_text_1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_add_time.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_add_time_1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_add_weekday.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_add_weekday_1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_anim_sync.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_background.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_brightness.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_keyboard_sync_1.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_keyboard_sync_2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_keyboard_sync_3.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_module.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_overlay.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_overlay_add_bg.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_overlay_color_bg.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_overlay_grid_bg.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_overlay_table_bg.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/settings_params.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_brightness_bar.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_checkbox_off.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_checkbox_on.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_clip_a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_clip_b.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_close.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_close_2.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_dropdown.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_dropdown_bg_2x.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_dropdown_bg_4x.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_dropdown_highlight.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_loading_animation.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_progress_bar.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_round_close.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_round_confirm.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_scrollbar_bg.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_scrollbar_thumb.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_shortcut_size_slider.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_thread_multi.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_thread_single.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_toggle_off.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shared_toggle_on.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shortcuts_panel.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shortcuts_panel_d.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shortcuts_panel_e.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shortcuts_panel_en.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shortcuts_panel_f.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shortcuts_panel_p.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shortcuts_panel_r.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shortcuts_panel_tc.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/shortcuts_panel_x.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sidebar_about.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sidebar_about_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sidebar_about_bg.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sidebar_bg.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sidebar_no_device.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sidebar_sensor.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sidebar_sensor_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sidebar_splash.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sidebar_sysinfo_bg.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/split_overlay_a.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/split_overlay_a_180.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/split_overlay_a_270.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/split_overlay_a_90.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/split_overlay_b.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/split_overlay_b_180.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/split_overlay_b_270.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/split_overlay_b_90.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/split_overlay_c.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/split_overlay_c_180.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/split_overlay_c_270.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/split_overlay_c_90.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sysinfo_add_group.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sysinfo_cpu.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sysinfo_custom.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sysinfo_dram.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sysinfo_fan.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sysinfo_gpu.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sysinfo_hdd.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sysinfo_net.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sysinfo_next_page.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sysinfo_prev_page.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sysinfo_scrollbar.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/sysinfo_select.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/theme_browser_filter.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/theme_browser_filter_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/theme_cloud_label.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/theme_cloud_label_d.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/theme_cloud_label_e.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/theme_cloud_label_en.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/theme_cloud_label_f.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/theme_cloud_label_h.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/theme_cloud_label_p.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/theme_cloud_label_r.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/theme_cloud_label_tc.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/theme_cloud_label_x.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/theme_local_carousel.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/theme_local_carousel_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/theme_local_export_all.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/theme_local_multi_select.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/theme_local_multi_select_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/theme_local_select_frame.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/theme_local_select_frame_active.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/theme_mask_label.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_110x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_116x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_1280x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_160x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_180x400.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_180x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_240x240.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_240x320.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_240x400.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_240x427.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_270x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_320x240.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_320x320.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_320x86.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_360x360.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_400x180.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_400x240.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_427x240.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_480x110.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_480x116.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_480x160.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_480x180.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_480x270.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_480x480.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_86x320.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_bg.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets/video_cut_bg_alt.png +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/assets.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/base.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/base_handler.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/bus_bridge.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/color_and_add_panels.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/constants.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/eyedropper.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/led_handler.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/overlay_grid.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/pipewire_capture.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/screen_capture.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/splash.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/uc_about.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/uc_color_wheel.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/uc_device.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/uc_image_cut.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/uc_info_module.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/uc_led_control.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/uc_preview.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/uc_screen_led.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/uc_sensor_picker.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/uc_system_info.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/uc_theme_local.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/uc_theme_mask.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/uc_theme_web.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/gui/uc_video_cut.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/presentation/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/presentation/device_presentation.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/presentation/lcd_panel.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/presentation/lcd_presentation_model.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/presentation/led_display.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/presentation/led_metrics_format.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/presentation/led_panel.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/presentation/led_zone_model.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/presentation/overlay_model.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/presentation/preview_geometry.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/presentation/sensor_display.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/presentation/slideshow_model.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/presentation/theme_directories.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qapp.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/app.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/assets.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/base.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/bus_bridge.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/color_wheel.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/device_picker.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/eyedropper.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/image_crop.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/about_panel.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/cloud_theme_browser.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/configuration_panel.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/device_panel.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/display_panel.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/led/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/led/_base.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/led/advanced_tab.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/led/color_tab.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/led/mode_tab.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/led/segment_tab.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/led/zone_tab.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/led_panel.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/local_theme_browser.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/mask_browser.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/preview_panel.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/screencast_panel.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/sidebar.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/status_panel.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/panels/system_panel.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/region_overlay.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/screen_overlay.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/sensor_picker.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/splash.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/src/trcc/ui/qtgui/video_crop.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/__init__.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/adapters/system/test_elevate.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/adapters/system/test_imc_timings.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/adapters/system/test_linux_imc.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/adapters/system/test_spd.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/adapters/system/test_windows_mem_disk.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/adapters/system/test_windows_permissions.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/adapters/system/test_windows_wmi_seam.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/conftest.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/mock_platform.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_api_routes.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_app_senders.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_architecture_boundaries.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_autostart.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_autostart_macos.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_autostart_windows.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_backend_finish.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_boot_animation_command.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_boot_animation_device.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_bulk_lcd_geometry.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_clock.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_cloud_themes.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_commands.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_connect_failure_hints.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_connection_issues.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_control_center.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_daemon.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_data_install.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_dc_codec.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_device_catalog_smoke.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_device_recovery.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_device_sender.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_device_surface_matrix.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_diagnose_parse_report.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_diagnostics.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_display_rotation.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_display_tweaks.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_first_run_and_migration.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_geometry.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_gpu_extras_install.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_gui_empty_state.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_gui_entry_exit.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_gui_raise_existing.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_hid_lcd_geometry.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_hotplug.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_hotplug_bsd.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_hotplug_polling.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_hotplug_windows.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_i18n.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_integration_pipeline.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_ipc_server.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_ipc_windows_fallback.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_ipc_wire.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_lcd_panel_model.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_led_animation_loop.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_led_assets.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_led_display_model.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_led_handler_requires_app.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_led_panel_model.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_led_pm_registry.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_led_remap.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_led_send.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_led_settings_commands.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_library_migration.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_ly_lcd_geometry.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_mask_commands.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_mask_rendering.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_metrics_personalize.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_mock_reply_override.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_models.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_orientation_cloud_background.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_orientation_reload.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_overlay_clock.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_overlay_grid_adapter.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_overlay_resolve.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_packaging_entrypoints.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_platform_hw_probes.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_pyusb_find_seam.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_quickstart.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_render_led.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_run_setup_order.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_scsi_lcd_geometry.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_selinux_install.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_sensor_chain.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_sensors.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_sensors_bsd.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_sensors_lhm_subprocess.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_sensors_macos.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_sensors_nvml.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_sensors_windows.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_shell.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_system_commands.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_system_resume.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_theme_persistence.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_theme_service.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_transports.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_udev.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_ui_surfaces_smoke.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_variant_presentation_audit.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_video_cache.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_video_playback.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_wire_rotation.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/test_wmi_gpu_fallback.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/ui/presentation/test_device_presentation.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/ui/presentation/test_lcd_presentation_model.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/ui/presentation/test_led_metrics_format.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/ui/presentation/test_led_zone_model.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/ui/presentation/test_overlay_view_binding.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/ui/presentation/test_preview_geometry.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/ui/presentation/test_sensor_display.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/ui/presentation/test_slideshow_model.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/ui/presentation/test_theme_directories.py +0 -0
- {trcc_linux-9.8.3 → trcc_linux-9.8.5}/tests/ui/presentation/test_theme_local_binding.py +0 -0
|
@@ -87,6 +87,13 @@ src/trcc/data/ui_*.json
|
|
|
87
87
|
/dev/.trcc-user/
|
|
88
88
|
/dev/__pycache__/
|
|
89
89
|
/dev/devices.json
|
|
90
|
+
# decompile-miner: track the tool SOURCE, never its inputs/outputs — Windows
|
|
91
|
+
# TRCC binaries are copyrighted (never commit an .exe/.dll), and Ghidra dumps +
|
|
92
|
+
# mined tables are large, derived artifacts.
|
|
93
|
+
/dev/decompiler/**/*.exe
|
|
94
|
+
/dev/decompiler/**/*.dll
|
|
95
|
+
/dev/decompiler/ghidra_projects/
|
|
96
|
+
/dev/decompiler/out/
|
|
90
97
|
/dev_*
|
|
91
98
|
# Dev scripts at root
|
|
92
99
|
/test_*.py
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: trcc-linux
|
|
3
|
-
Version: 9.8.
|
|
3
|
+
Version: 9.8.5
|
|
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
|
|
@@ -120,7 +120,9 @@ Description-Content-Type: text/markdown
|
|
|
120
120
|
[](https://buymeacoffee.com/Lexonight1)
|
|
121
121
|
[](https://ko-fi.com/lexonight1)
|
|
122
122
|
|
|
123
|
-
>
|
|
123
|
+
> 💛 **Monthly backer: [@Reborn627](https://github.com/Reborn627)** — four straight months of recurring support. Steady backing like that is what actually keeps a one-person project alive. Thank you.
|
|
124
|
+
|
|
125
|
+
> Huge thanks to **[@Xentrino](https://github.com/Xentrino)**, **[@javisaman](https://github.com/javisaman)**, **[@loosethoughts19-hash](https://github.com/loosethoughts19-hash)**, **[@Mr-Renegade](https://github.com/Mr-Renegade)**, **[@knappstar](https://github.com/knappstar)**, **[@woebygon](https://github.com/woebygon)**, **[@Smokemic](https://github.com/Smokemic)**, **[@chava-byte](https://github.com/chava-byte)**, **[@nihilistqueen](https://github.com/nihilistqueen)**, **[@rhuggins573-crypto](https://github.com/rhuggins573-crypto)**, **[@unfirthman](https://github.com/unfirthman)**, **[@Milrite](https://github.com/Milrite)**, **[@BAS-HARBERS](https://github.com/BAS-HARBERS)**, **Glyn**, **dugalex**, **Dunvcpi**, **RichardK**, **Ryan**, **Rick**, and an anonymous supporter for the beers — you're all legends. 🍺
|
|
124
126
|
|
|
125
127
|
Native Linux port of the Thermalright LCD Control Center (Windows TRCC 2.1.2). Control and customize the LCD displays and LED segment displays on Thermalright CPU coolers, AIO pump heads, and fan hubs — entirely from Linux.
|
|
126
128
|
|
|
@@ -219,25 +221,25 @@ Full desktop app with theme browser, video player, overlay editor, LED control p
|
|
|
219
221
|
|
|
220
222
|
### CLI
|
|
221
223
|
|
|
224
|
+
Device commands take your device **key** (its `VID:PID`, from `trcc detect`) as the first argument — e.g. `0402:3922`:
|
|
225
|
+
|
|
222
226
|
```bash
|
|
223
|
-
trcc detect
|
|
224
|
-
trcc send image.png
|
|
225
|
-
trcc display color "#ff0000"
|
|
226
|
-
trcc video clip.mp4
|
|
227
|
-
trcc screencast
|
|
228
|
-
trcc brightness
|
|
229
|
-
trcc
|
|
230
|
-
trcc
|
|
231
|
-
trcc
|
|
232
|
-
trcc
|
|
233
|
-
trcc
|
|
234
|
-
trcc
|
|
235
|
-
trcc report # Generate diagnostic report
|
|
236
|
-
trcc doctor # Check system dependencies
|
|
237
|
-
trcc system setup # Interactive setup wizard
|
|
238
|
-
trcc uninstall # Remove TRCC completely
|
|
227
|
+
trcc detect # Show connected devices + their keys
|
|
228
|
+
trcc display send-image 0402:3922 image.png # Send an image to the LCD
|
|
229
|
+
trcc display color 0402:3922 "#ff0000" # Fill the LCD with a solid color
|
|
230
|
+
trcc display load-video 0402:3922 clip.mp4 # Play a video on the LCD
|
|
231
|
+
trcc display screencast 0402:3922 # Live screen capture to the LCD
|
|
232
|
+
trcc display set-brightness 0402:3922 80 # Brightness (0–100%)
|
|
233
|
+
trcc display set-orientation 0402:3922 90 # Rotate display (0/90/180/270)
|
|
234
|
+
trcc led color 0416:8001 "#00ff00" # Set LED color
|
|
235
|
+
trcc led mode 0416:8001 breathing # Set LED effect mode
|
|
236
|
+
trcc report # Generate diagnostic report
|
|
237
|
+
trcc doctor # Check system dependencies
|
|
238
|
+
trcc system setup # Interactive setup wizard
|
|
239
239
|
```
|
|
240
240
|
|
|
241
|
+
> **Command groups:** LCD actions live under `trcc display …`, LED under `trcc led …`, themes under `trcc theme …`; diagnostics (`report`, `detect`, `doctor`, `sensors`) are top-level; OS setup under `trcc system …`. Run `trcc --help` or `trcc display --help` to explore, and see the **[CLI Guide](doc/GUIDE_CLI.md)** for the full walkthrough.
|
|
242
|
+
|
|
241
243
|
See the **[CLI Reference](doc/REFERENCE_CLI.md)** for the full command list.
|
|
242
244
|
|
|
243
245
|
### REST API
|
|
@@ -282,7 +284,7 @@ Set the angle to **90°** (or 270°) in the GUI, then open **Cloud Themes** —
|
|
|
282
284
|
| [Supported Devices](doc/REFERENCE_DEVICES.md) | Full device list with USB IDs and protocols |
|
|
283
285
|
| [Testers Wanted](doc/TESTERS_WANTED.md) | Devices that need hardware validation |
|
|
284
286
|
| [Device Testing Guide](doc/GUIDE_DEVICE_TESTING.md) | How to test and report device compatibility |
|
|
285
|
-
| [Architecture](doc/
|
|
287
|
+
| [Architecture Guide](doc/GUIDE_ARCHITECTURE.md) | Project layout, hexagonal design, and the unified UI presentation layer |
|
|
286
288
|
| [Technical Reference](doc/REFERENCE_TECHNICAL.md) | SCSI protocol and file formats |
|
|
287
289
|
|
|
288
290
|
### Protocol documentation (reverse-engineered from Windows TRCC)
|
|
@@ -409,6 +411,15 @@ If a probe goes `BAD`, that's the bug — fix in `src/`, re-run, see `PASS`. Eve
|
|
|
409
411
|
| LY | pyusb bulk (chunked) | Trofeo Vision 9.16 LCD |
|
|
410
412
|
| LED | pyusb HID | All LED segment display devices (12 styles) |
|
|
411
413
|
|
|
414
|
+
## Code Contributors
|
|
415
|
+
|
|
416
|
+
These folks didn't just report a problem — they opened the editor and sent a fix. On a solo project, a merged pull request is about the most generous thing you can do, and every one of these shipped to every user:
|
|
417
|
+
|
|
418
|
+
- **[@Hythera](https://github.com/Hythera)** — [#209](https://github.com/Lexonight1/thermalright-trcc-linux/pull/209): had the flake read its version straight from `pyproject.toml`, killing an entire place I used to have to bump by hand every release.
|
|
419
|
+
- **[@elsiedotcafe](https://github.com/elsiedotcafe)** — [#123](https://github.com/Lexonight1/thermalright-trcc-linux/pull/123): pinned the PySide6 package to a stable source so the build stops breaking.
|
|
420
|
+
|
|
421
|
+
Thank you both — genuinely. PRs are always welcome, and you'll land right here.
|
|
422
|
+
|
|
412
423
|
## Contributors
|
|
413
424
|
|
|
414
425
|
A huge thank you to every single person who filed an issue, pasted a `trcc report`, or just said "it doesn't work." You are the reason this project supports 6 USB protocols, 16 resolutions, and 12 LED styles from a single developer with one device. Every bug report, every test on hardware I don't own, every "hey this is broken" — that's open source at its best. You're not wasting your time. You're building something together.
|
|
@@ -459,11 +470,11 @@ Every name here took the time to open an issue and say "hey, this isn't working
|
|
|
459
470
|
|
|
460
471
|
## Stars
|
|
461
472
|
|
|
462
|
-
|
|
473
|
+
Every single star is a small vote of confidence that this is worth keeping alive — and on the days the bugs are winning, watching that count tick up genuinely keeps me going. It costs you one click and it means more than you'd think. Thank you to all 120+ of you:
|
|
463
474
|
|
|
464
475
|
**[akasvi](https://github.com/akasvi)** · **[alessa-lara](https://github.com/alessa-lara)** · **[alicepolice](https://github.com/alicepolice)** · **[ArcaneCoder404](https://github.com/ArcaneCoder404)** · **[Arty-x-g](https://github.com/Arty-x-g)** · **[audacieuxnumber1](https://github.com/audacieuxnumber1)** · **[azrael1911](https://github.com/azrael1911)** · **[bbrriiaann97](https://github.com/bbrriiaann97)** · **[behold81](https://github.com/behold81)** · **[betolink](https://github.com/betolink)** · **[bfesfbsbfesfbn](https://github.com/bfesfbsbfesfbn)** · **[bive242](https://github.com/bive242)** · **[brook-cheng](https://github.com/brook-cheng)** · **[BrunoLeguizamon05](https://github.com/BrunoLeguizamon05)** · **[cancos1](https://github.com/cancos1)** · **[capiazmi](https://github.com/capiazmi)** · **[cdh407](https://github.com/cdh407)** · **[cesarnr21](https://github.com/cesarnr21)** · **[chirox](https://github.com/chirox)** · **[codeflitting](https://github.com/codeflitting)** · **[CT-Actual](https://github.com/CT-Actual)** · **[curttheg](https://github.com/curttheg)** · **[dabombUSA](https://github.com/dabombUSA)** · **[damachine](https://github.com/damachine)** · **[DasFlogetier](https://github.com/DasFlogetier)** · **[david43](https://github.com/david43)** · **[DavidKirkitadze](https://github.com/DavidKirkitadze)** · **[Dezinger](https://github.com/Dezinger)** · **[Dezuvo](https://github.com/Dezuvo)** · **[eap5](https://github.com/eap5)** · **[eduu-dudu](https://github.com/eduu-dudu)** · **[emaspa](https://github.com/emaspa)** · **[enricomarchesin](https://github.com/enricomarchesin)** · **[falumamx](https://github.com/falumamx)** · **[Gdetrane](https://github.com/Gdetrane)** · **[greaseyjockey](https://github.com/greaseyjockey)** · **[guowc](https://github.com/guowc)** · **[gupsterg](https://github.com/gupsterg)** · **[huzky-v](https://github.com/huzky-v)** · **[hydrogen2005](https://github.com/hydrogen2005)** · **[immenz](https://github.com/immenz)** · **[israelsz](https://github.com/israelsz)** · **[jamespo](https://github.com/jamespo)** · **[jaminmc](https://github.com/jaminmc)** · **[jezzaw007](https://github.com/jezzaw007)** · **[jhlasnik](https://github.com/jhlasnik)** · **[jmo808](https://github.com/jmo808)** · **[Jorann](https://github.com/Jorann)** · **[JuanVargas](https://github.com/JuanVargas)** · **[JyeroRayguster404](https://github.com/JyeroRayguster404)** · **[k1w3l](https://github.com/k1w3l)** · **[KawalChlopa](https://github.com/KawalChlopa)** · **[kazhala](https://github.com/kazhala)** · **[knappstar](https://github.com/knappstar)** · **[kyle-tracy](https://github.com/kyle-tracy)** · **[Langustensorbet](https://github.com/Langustensorbet)** · **[Legendarycentaur](https://github.com/Legendarycentaur)** · **[Leonnaki](https://github.com/Leonnaki)** · **[Lfatua](https://github.com/Lfatua)** · **[llauer](https://github.com/llauer)** · **[lotte25](https://github.com/lotte25)** · **[m-marcal](https://github.com/m-marcal)** · **[mgaruccio](https://github.com/mgaruccio)** · **[michelle0812](https://github.com/michelle0812)** · **[mkogut](https://github.com/mkogut)** · **[monkky](https://github.com/monkky)** · **[mrsaraiva](https://github.com/mrsaraiva)** · **[N1sona](https://github.com/N1sona)** · **[narfel](https://github.com/narfel)** · **[nathanielhernandez](https://github.com/nathanielhernandez)** · **[nedimlisica](https://github.com/nedimlisica)** · **[nookpp](https://github.com/nookpp)** · **[NostraTiepus](https://github.com/NostraTiepus)** · **[NuiQuant](https://github.com/NuiQuant)** · **[oddajpierscien](https://github.com/oddajpierscien)** · **[okrzanowska](https://github.com/okrzanowska)** · **[PantherX12max](https://github.com/PantherX12max)** · **[Pewful2021](https://github.com/Pewful2021)** · **[Pikarz](https://github.com/Pikarz)** · **[psyrie](https://github.com/psyrie)** · **[qussaif10](https://github.com/qussaif10)** · **[qwerty22121998](https://github.com/qwerty22121998)** · **[Reborn627](https://github.com/Reborn627)** · **[Rehaell](https://github.com/Rehaell)** · **[reinierjh](https://github.com/reinierjh)** · **[rhuggins573-crypto](https://github.com/rhuggins573-crypto)** · **[riodevelop](https://github.com/riodevelop)** · **[RolandTaverner](https://github.com/RolandTaverner)** · **[rslater](https://github.com/rslater)** · **[satoru8](https://github.com/satoru8)** · **[saucymcbeef](https://github.com/saucymcbeef)** · **[shadowepaxeor-glitch](https://github.com/shadowepaxeor-glitch)** · **[ShaunnyBwoy](https://github.com/ShaunnyBwoy)** · **[sigizito](https://github.com/sigizito)** · **[Smokemic](https://github.com/Smokemic)** · **[Spebelgenenst](https://github.com/Spebelgenenst)** · **[spiritofjon](https://github.com/spiritofjon)** · **[stephenvalente](https://github.com/stephenvalente)** · **[sudo-st8less](https://github.com/sudo-st8less)** · **[SunnyZorya23](https://github.com/SunnyZorya23)** · **[the-black-eagle](https://github.com/the-black-eagle)** · **[Thymur](https://github.com/Thymur)** · **[TimG-NL](https://github.com/TimG-NL)** · **[Torotin](https://github.com/Torotin)** · **[trizmark](https://github.com/trizmark)** · **[TuxLux40](https://github.com/TuxLux40)** · **[urbnywrt](https://github.com/urbnywrt)** · **[vindocel](https://github.com/vindocel)** · **[Viwyn](https://github.com/Viwyn)** · **[Vydon](https://github.com/Vydon)** · **[wernerzsolt](https://github.com/wernerzsolt)** · **[Xentrino](https://github.com/Xentrino)** · **[YahusRevus](https://github.com/YahusRevus)** · **[zhanghangt](https://github.com/zhanghangt)** · **[Ziusz](https://github.com/Ziusz)**
|
|
465
476
|
|
|
466
|
-
##
|
|
477
|
+
## Forkers
|
|
467
478
|
|
|
468
479
|
Thanks for carrying the torch — these folks forked the repo to build on it.
|
|
469
480
|
|
|
@@ -47,7 +47,9 @@
|
|
|
47
47
|
[](https://buymeacoffee.com/Lexonight1)
|
|
48
48
|
[](https://ko-fi.com/lexonight1)
|
|
49
49
|
|
|
50
|
-
>
|
|
50
|
+
> 💛 **Monthly backer: [@Reborn627](https://github.com/Reborn627)** — four straight months of recurring support. Steady backing like that is what actually keeps a one-person project alive. Thank you.
|
|
51
|
+
|
|
52
|
+
> Huge thanks to **[@Xentrino](https://github.com/Xentrino)**, **[@javisaman](https://github.com/javisaman)**, **[@loosethoughts19-hash](https://github.com/loosethoughts19-hash)**, **[@Mr-Renegade](https://github.com/Mr-Renegade)**, **[@knappstar](https://github.com/knappstar)**, **[@woebygon](https://github.com/woebygon)**, **[@Smokemic](https://github.com/Smokemic)**, **[@chava-byte](https://github.com/chava-byte)**, **[@nihilistqueen](https://github.com/nihilistqueen)**, **[@rhuggins573-crypto](https://github.com/rhuggins573-crypto)**, **[@unfirthman](https://github.com/unfirthman)**, **[@Milrite](https://github.com/Milrite)**, **[@BAS-HARBERS](https://github.com/BAS-HARBERS)**, **Glyn**, **dugalex**, **Dunvcpi**, **RichardK**, **Ryan**, **Rick**, and an anonymous supporter for the beers — you're all legends. 🍺
|
|
51
53
|
|
|
52
54
|
Native Linux port of the Thermalright LCD Control Center (Windows TRCC 2.1.2). Control and customize the LCD displays and LED segment displays on Thermalright CPU coolers, AIO pump heads, and fan hubs — entirely from Linux.
|
|
53
55
|
|
|
@@ -146,25 +148,25 @@ Full desktop app with theme browser, video player, overlay editor, LED control p
|
|
|
146
148
|
|
|
147
149
|
### CLI
|
|
148
150
|
|
|
151
|
+
Device commands take your device **key** (its `VID:PID`, from `trcc detect`) as the first argument — e.g. `0402:3922`:
|
|
152
|
+
|
|
149
153
|
```bash
|
|
150
|
-
trcc detect
|
|
151
|
-
trcc send image.png
|
|
152
|
-
trcc display color "#ff0000"
|
|
153
|
-
trcc video clip.mp4
|
|
154
|
-
trcc screencast
|
|
155
|
-
trcc brightness
|
|
156
|
-
trcc
|
|
157
|
-
trcc
|
|
158
|
-
trcc
|
|
159
|
-
trcc
|
|
160
|
-
trcc
|
|
161
|
-
trcc
|
|
162
|
-
trcc report # Generate diagnostic report
|
|
163
|
-
trcc doctor # Check system dependencies
|
|
164
|
-
trcc system setup # Interactive setup wizard
|
|
165
|
-
trcc uninstall # Remove TRCC completely
|
|
154
|
+
trcc detect # Show connected devices + their keys
|
|
155
|
+
trcc display send-image 0402:3922 image.png # Send an image to the LCD
|
|
156
|
+
trcc display color 0402:3922 "#ff0000" # Fill the LCD with a solid color
|
|
157
|
+
trcc display load-video 0402:3922 clip.mp4 # Play a video on the LCD
|
|
158
|
+
trcc display screencast 0402:3922 # Live screen capture to the LCD
|
|
159
|
+
trcc display set-brightness 0402:3922 80 # Brightness (0–100%)
|
|
160
|
+
trcc display set-orientation 0402:3922 90 # Rotate display (0/90/180/270)
|
|
161
|
+
trcc led color 0416:8001 "#00ff00" # Set LED color
|
|
162
|
+
trcc led mode 0416:8001 breathing # Set LED effect mode
|
|
163
|
+
trcc report # Generate diagnostic report
|
|
164
|
+
trcc doctor # Check system dependencies
|
|
165
|
+
trcc system setup # Interactive setup wizard
|
|
166
166
|
```
|
|
167
167
|
|
|
168
|
+
> **Command groups:** LCD actions live under `trcc display …`, LED under `trcc led …`, themes under `trcc theme …`; diagnostics (`report`, `detect`, `doctor`, `sensors`) are top-level; OS setup under `trcc system …`. Run `trcc --help` or `trcc display --help` to explore, and see the **[CLI Guide](doc/GUIDE_CLI.md)** for the full walkthrough.
|
|
169
|
+
|
|
168
170
|
See the **[CLI Reference](doc/REFERENCE_CLI.md)** for the full command list.
|
|
169
171
|
|
|
170
172
|
### REST API
|
|
@@ -209,7 +211,7 @@ Set the angle to **90°** (or 270°) in the GUI, then open **Cloud Themes** —
|
|
|
209
211
|
| [Supported Devices](doc/REFERENCE_DEVICES.md) | Full device list with USB IDs and protocols |
|
|
210
212
|
| [Testers Wanted](doc/TESTERS_WANTED.md) | Devices that need hardware validation |
|
|
211
213
|
| [Device Testing Guide](doc/GUIDE_DEVICE_TESTING.md) | How to test and report device compatibility |
|
|
212
|
-
| [Architecture](doc/
|
|
214
|
+
| [Architecture Guide](doc/GUIDE_ARCHITECTURE.md) | Project layout, hexagonal design, and the unified UI presentation layer |
|
|
213
215
|
| [Technical Reference](doc/REFERENCE_TECHNICAL.md) | SCSI protocol and file formats |
|
|
214
216
|
|
|
215
217
|
### Protocol documentation (reverse-engineered from Windows TRCC)
|
|
@@ -336,6 +338,15 @@ If a probe goes `BAD`, that's the bug — fix in `src/`, re-run, see `PASS`. Eve
|
|
|
336
338
|
| LY | pyusb bulk (chunked) | Trofeo Vision 9.16 LCD |
|
|
337
339
|
| LED | pyusb HID | All LED segment display devices (12 styles) |
|
|
338
340
|
|
|
341
|
+
## Code Contributors
|
|
342
|
+
|
|
343
|
+
These folks didn't just report a problem — they opened the editor and sent a fix. On a solo project, a merged pull request is about the most generous thing you can do, and every one of these shipped to every user:
|
|
344
|
+
|
|
345
|
+
- **[@Hythera](https://github.com/Hythera)** — [#209](https://github.com/Lexonight1/thermalright-trcc-linux/pull/209): had the flake read its version straight from `pyproject.toml`, killing an entire place I used to have to bump by hand every release.
|
|
346
|
+
- **[@elsiedotcafe](https://github.com/elsiedotcafe)** — [#123](https://github.com/Lexonight1/thermalright-trcc-linux/pull/123): pinned the PySide6 package to a stable source so the build stops breaking.
|
|
347
|
+
|
|
348
|
+
Thank you both — genuinely. PRs are always welcome, and you'll land right here.
|
|
349
|
+
|
|
339
350
|
## Contributors
|
|
340
351
|
|
|
341
352
|
A huge thank you to every single person who filed an issue, pasted a `trcc report`, or just said "it doesn't work." You are the reason this project supports 6 USB protocols, 16 resolutions, and 12 LED styles from a single developer with one device. Every bug report, every test on hardware I don't own, every "hey this is broken" — that's open source at its best. You're not wasting your time. You're building something together.
|
|
@@ -386,11 +397,11 @@ Every name here took the time to open an issue and say "hey, this isn't working
|
|
|
386
397
|
|
|
387
398
|
## Stars
|
|
388
399
|
|
|
389
|
-
|
|
400
|
+
Every single star is a small vote of confidence that this is worth keeping alive — and on the days the bugs are winning, watching that count tick up genuinely keeps me going. It costs you one click and it means more than you'd think. Thank you to all 120+ of you:
|
|
390
401
|
|
|
391
402
|
**[akasvi](https://github.com/akasvi)** · **[alessa-lara](https://github.com/alessa-lara)** · **[alicepolice](https://github.com/alicepolice)** · **[ArcaneCoder404](https://github.com/ArcaneCoder404)** · **[Arty-x-g](https://github.com/Arty-x-g)** · **[audacieuxnumber1](https://github.com/audacieuxnumber1)** · **[azrael1911](https://github.com/azrael1911)** · **[bbrriiaann97](https://github.com/bbrriiaann97)** · **[behold81](https://github.com/behold81)** · **[betolink](https://github.com/betolink)** · **[bfesfbsbfesfbn](https://github.com/bfesfbsbfesfbn)** · **[bive242](https://github.com/bive242)** · **[brook-cheng](https://github.com/brook-cheng)** · **[BrunoLeguizamon05](https://github.com/BrunoLeguizamon05)** · **[cancos1](https://github.com/cancos1)** · **[capiazmi](https://github.com/capiazmi)** · **[cdh407](https://github.com/cdh407)** · **[cesarnr21](https://github.com/cesarnr21)** · **[chirox](https://github.com/chirox)** · **[codeflitting](https://github.com/codeflitting)** · **[CT-Actual](https://github.com/CT-Actual)** · **[curttheg](https://github.com/curttheg)** · **[dabombUSA](https://github.com/dabombUSA)** · **[damachine](https://github.com/damachine)** · **[DasFlogetier](https://github.com/DasFlogetier)** · **[david43](https://github.com/david43)** · **[DavidKirkitadze](https://github.com/DavidKirkitadze)** · **[Dezinger](https://github.com/Dezinger)** · **[Dezuvo](https://github.com/Dezuvo)** · **[eap5](https://github.com/eap5)** · **[eduu-dudu](https://github.com/eduu-dudu)** · **[emaspa](https://github.com/emaspa)** · **[enricomarchesin](https://github.com/enricomarchesin)** · **[falumamx](https://github.com/falumamx)** · **[Gdetrane](https://github.com/Gdetrane)** · **[greaseyjockey](https://github.com/greaseyjockey)** · **[guowc](https://github.com/guowc)** · **[gupsterg](https://github.com/gupsterg)** · **[huzky-v](https://github.com/huzky-v)** · **[hydrogen2005](https://github.com/hydrogen2005)** · **[immenz](https://github.com/immenz)** · **[israelsz](https://github.com/israelsz)** · **[jamespo](https://github.com/jamespo)** · **[jaminmc](https://github.com/jaminmc)** · **[jezzaw007](https://github.com/jezzaw007)** · **[jhlasnik](https://github.com/jhlasnik)** · **[jmo808](https://github.com/jmo808)** · **[Jorann](https://github.com/Jorann)** · **[JuanVargas](https://github.com/JuanVargas)** · **[JyeroRayguster404](https://github.com/JyeroRayguster404)** · **[k1w3l](https://github.com/k1w3l)** · **[KawalChlopa](https://github.com/KawalChlopa)** · **[kazhala](https://github.com/kazhala)** · **[knappstar](https://github.com/knappstar)** · **[kyle-tracy](https://github.com/kyle-tracy)** · **[Langustensorbet](https://github.com/Langustensorbet)** · **[Legendarycentaur](https://github.com/Legendarycentaur)** · **[Leonnaki](https://github.com/Leonnaki)** · **[Lfatua](https://github.com/Lfatua)** · **[llauer](https://github.com/llauer)** · **[lotte25](https://github.com/lotte25)** · **[m-marcal](https://github.com/m-marcal)** · **[mgaruccio](https://github.com/mgaruccio)** · **[michelle0812](https://github.com/michelle0812)** · **[mkogut](https://github.com/mkogut)** · **[monkky](https://github.com/monkky)** · **[mrsaraiva](https://github.com/mrsaraiva)** · **[N1sona](https://github.com/N1sona)** · **[narfel](https://github.com/narfel)** · **[nathanielhernandez](https://github.com/nathanielhernandez)** · **[nedimlisica](https://github.com/nedimlisica)** · **[nookpp](https://github.com/nookpp)** · **[NostraTiepus](https://github.com/NostraTiepus)** · **[NuiQuant](https://github.com/NuiQuant)** · **[oddajpierscien](https://github.com/oddajpierscien)** · **[okrzanowska](https://github.com/okrzanowska)** · **[PantherX12max](https://github.com/PantherX12max)** · **[Pewful2021](https://github.com/Pewful2021)** · **[Pikarz](https://github.com/Pikarz)** · **[psyrie](https://github.com/psyrie)** · **[qussaif10](https://github.com/qussaif10)** · **[qwerty22121998](https://github.com/qwerty22121998)** · **[Reborn627](https://github.com/Reborn627)** · **[Rehaell](https://github.com/Rehaell)** · **[reinierjh](https://github.com/reinierjh)** · **[rhuggins573-crypto](https://github.com/rhuggins573-crypto)** · **[riodevelop](https://github.com/riodevelop)** · **[RolandTaverner](https://github.com/RolandTaverner)** · **[rslater](https://github.com/rslater)** · **[satoru8](https://github.com/satoru8)** · **[saucymcbeef](https://github.com/saucymcbeef)** · **[shadowepaxeor-glitch](https://github.com/shadowepaxeor-glitch)** · **[ShaunnyBwoy](https://github.com/ShaunnyBwoy)** · **[sigizito](https://github.com/sigizito)** · **[Smokemic](https://github.com/Smokemic)** · **[Spebelgenenst](https://github.com/Spebelgenenst)** · **[spiritofjon](https://github.com/spiritofjon)** · **[stephenvalente](https://github.com/stephenvalente)** · **[sudo-st8less](https://github.com/sudo-st8less)** · **[SunnyZorya23](https://github.com/SunnyZorya23)** · **[the-black-eagle](https://github.com/the-black-eagle)** · **[Thymur](https://github.com/Thymur)** · **[TimG-NL](https://github.com/TimG-NL)** · **[Torotin](https://github.com/Torotin)** · **[trizmark](https://github.com/trizmark)** · **[TuxLux40](https://github.com/TuxLux40)** · **[urbnywrt](https://github.com/urbnywrt)** · **[vindocel](https://github.com/vindocel)** · **[Viwyn](https://github.com/Viwyn)** · **[Vydon](https://github.com/Vydon)** · **[wernerzsolt](https://github.com/wernerzsolt)** · **[Xentrino](https://github.com/Xentrino)** · **[YahusRevus](https://github.com/YahusRevus)** · **[zhanghangt](https://github.com/zhanghangt)** · **[Ziusz](https://github.com/Ziusz)**
|
|
392
403
|
|
|
393
|
-
##
|
|
404
|
+
## Forkers
|
|
394
405
|
|
|
395
406
|
Thanks for carrying the torch — these folks forked the repo to build on it.
|
|
396
407
|
|
|
@@ -291,12 +291,24 @@ class SysInfoConfig:
|
|
|
291
291
|
(i, b) for i, b in enumerate(fan_panel.sensors)
|
|
292
292
|
if not b.sensor_id
|
|
293
293
|
]
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
294
|
+
# Spinning fans first, dead headers last. A super-I/O chip
|
|
295
|
+
# exposes every fan header (fan1..fan6) whether or not a fan is
|
|
296
|
+
# plugged in, and label-less boards (nct6xxx etc.) give no way to
|
|
297
|
+
# tell which is the CPU/pump. Binding in raw id order lands the
|
|
298
|
+
# CPU/GPU slots on disconnected headers reading 0 RPM while the
|
|
299
|
+
# real fans (a water pump + radiator fans sit on arbitrary
|
|
300
|
+
# headers, always spinning) fall off the end — the "fans not
|
|
301
|
+
# reporting" bug (#145). Order by (is-idle, id) so live readings
|
|
302
|
+
# claim the visible slots; idle headers only backfill leftovers.
|
|
303
|
+
leftover_fan_ids = [
|
|
304
|
+
r.sensor_id for r in sorted(
|
|
305
|
+
(r for r in readings
|
|
306
|
+
if r.sensor_id.startswith("fan:")
|
|
307
|
+
and r.sensor_id.endswith(":rpm")
|
|
308
|
+
and r.sensor_id not in bound_fan_ids),
|
|
309
|
+
key=lambda r: ((r.value or 0.0) <= 0.0, r.sensor_id),
|
|
310
|
+
)
|
|
311
|
+
]
|
|
300
312
|
for (slot_idx, binding), fan_id in zip(
|
|
301
313
|
unbound_slots, leftover_fan_ids, strict=False,
|
|
302
314
|
):
|
|
@@ -52,6 +52,21 @@ from .psutil_sources import ComputedIo, PsutilCpu, PsutilMemory
|
|
|
52
52
|
log = logging.getLogger(__name__)
|
|
53
53
|
|
|
54
54
|
|
|
55
|
+
# Vendor priority when GPUs tie on discreteness. An NVML-reported NVIDIA is
|
|
56
|
+
# ALWAYS genuinely discrete (NVIDIA ships no consumer iGPUs), so it must win
|
|
57
|
+
# over an AMD/Intel APU that only *looks* discrete via a large UMA framebuffer
|
|
58
|
+
# — otherwise "amd:0" beats "nvidia:0" on the alphabetical tiebreak and the
|
|
59
|
+
# integrated GPU becomes primary over the real card (#157: an RTX 5090 lost to
|
|
60
|
+
# a Raphael iGPU with a big UMA allocation).
|
|
61
|
+
_GPU_VENDOR_RANK = {"nvidia": 0, "amd": 1, "intel": 2}
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
def _gpu_order(gpu: GpuSource) -> tuple[bool, int, str]:
|
|
65
|
+
"""Sort key: discrete first, then nvidia > amd > intel, then key."""
|
|
66
|
+
vendor = gpu.key.split(":", 1)[0]
|
|
67
|
+
return (not gpu.is_discrete, _GPU_VENDOR_RANK.get(vendor, 9), gpu.key)
|
|
68
|
+
|
|
69
|
+
|
|
55
70
|
# ── Key mapping helpers ──────────────────────────────────────────────
|
|
56
71
|
|
|
57
72
|
|
|
@@ -159,7 +174,10 @@ class BaselineSensors(SensorEnumerator):
|
|
|
159
174
|
# Labels whose read has already raised — warn once, then DEBUG, so a
|
|
160
175
|
# persistently-broken sensor doesn't spam a line every poll interval.
|
|
161
176
|
self._read_failures: set[str] = set()
|
|
162
|
-
self._gpus.sort(key=
|
|
177
|
+
self._gpus.sort(key=_gpu_order)
|
|
178
|
+
if self._gpus:
|
|
179
|
+
log.info("GPU order: %s (primary auto-pick = first discrete)",
|
|
180
|
+
[g.key for g in self._gpus])
|
|
163
181
|
|
|
164
182
|
def _read(
|
|
165
183
|
self, fn: Callable[[], float | None], label: str,
|
|
@@ -54,7 +54,7 @@ from .services.led_effects import LEDEffectEngine
|
|
|
54
54
|
from .services.media import MediaService
|
|
55
55
|
from .services.metrics_loop import MetricsLoop
|
|
56
56
|
from .services.migration import LibraryMigration
|
|
57
|
-
from .services.overlay import OverlayService
|
|
57
|
+
from .services.overlay import OverlayService, resolve_overlay_elements
|
|
58
58
|
from .services.quickstart import QuickstartService
|
|
59
59
|
from .services.settings import Settings
|
|
60
60
|
from .services.slideshow import SlideshowService
|
|
@@ -413,6 +413,34 @@ class App:
|
|
|
413
413
|
)
|
|
414
414
|
return self._renderer
|
|
415
415
|
|
|
416
|
+
def effective_overlay_elements(self, key: str) -> list[dict]:
|
|
417
|
+
"""The ONE overlay layout actually on screen for ``key``.
|
|
418
|
+
|
|
419
|
+
The single source every per-element operation (flash, select, edit)
|
|
420
|
+
must address — resolved by the same precedence the renderer uses
|
|
421
|
+
(user > mask > theme, each REPLACES; see
|
|
422
|
+
``resolve_overlay_elements``). Addressing only the user layer was
|
|
423
|
+
the ``FlashOverlayElement 'N' not found`` bug: when a mask or theme
|
|
424
|
+
supplies the live layout the user layer is empty, so an id/index
|
|
425
|
+
resolved against it matched nothing on screen.
|
|
426
|
+
"""
|
|
427
|
+
s = self.settings.for_device(key)
|
|
428
|
+
theme = self.active_themes.get(key)
|
|
429
|
+
theme_config = theme.config if theme is not None else {}
|
|
430
|
+
elements = resolve_overlay_elements(
|
|
431
|
+
theme_config, s.mask_overlay_elements, s.user_overlay_elements,
|
|
432
|
+
)
|
|
433
|
+
log.debug(
|
|
434
|
+
"effective_overlay_elements: key=%s → %d element(s) "
|
|
435
|
+
"[theme=%d mask=%s user=%d]",
|
|
436
|
+
key, len(elements),
|
|
437
|
+
len(theme_config.get("elements") or []),
|
|
438
|
+
None if s.mask_overlay_elements is None
|
|
439
|
+
else len(s.mask_overlay_elements),
|
|
440
|
+
len(s.user_overlay_elements),
|
|
441
|
+
)
|
|
442
|
+
return elements
|
|
443
|
+
|
|
416
444
|
# ── Device lifecycle ──────────────────────────────────────────────
|
|
417
445
|
|
|
418
446
|
def attach(self, vid: int, pid: int) -> Device:
|
|
@@ -498,6 +526,16 @@ class App:
|
|
|
498
526
|
self.metrics_loop.stop()
|
|
499
527
|
self.led_animation_loop.stop()
|
|
500
528
|
self.stop_hotplug()
|
|
529
|
+
# Blank every panel before releasing it so it goes dark on shutdown
|
|
530
|
+
# instead of holding its last frame lit (#143). Best-effort: the
|
|
531
|
+
# Command swallows a mid-unplug send, and any unexpected error here
|
|
532
|
+
# must not block device release below.
|
|
533
|
+
from .core.commands import SleepDevice
|
|
534
|
+
for key in list(self.devices):
|
|
535
|
+
try:
|
|
536
|
+
self.dispatch(SleepDevice(key=key))
|
|
537
|
+
except Exception:
|
|
538
|
+
log.exception("close: SleepDevice raised for %s", key)
|
|
501
539
|
for key in list(self.devices):
|
|
502
540
|
self.detach(key)
|
|
503
541
|
self._send_scheduler.shutdown()
|
|
@@ -19,6 +19,7 @@ from .device import (
|
|
|
19
19
|
DisconnectDevice,
|
|
20
20
|
DiscoverDevices,
|
|
21
21
|
EnableOverlay,
|
|
22
|
+
EnsureConnected,
|
|
22
23
|
FlashOverlayElement,
|
|
23
24
|
LcdSnapshot,
|
|
24
25
|
LoopVideo,
|
|
@@ -42,6 +43,7 @@ from .device import (
|
|
|
42
43
|
SetOverlayBackground,
|
|
43
44
|
SetOverlayConfig,
|
|
44
45
|
SetSplitMode,
|
|
46
|
+
SleepDevice,
|
|
45
47
|
StartScreencast,
|
|
46
48
|
StopScreencast,
|
|
47
49
|
StopVideo,
|
|
@@ -147,6 +149,7 @@ __all__ = [
|
|
|
147
149
|
"EnableAutostart",
|
|
148
150
|
"EnableLedTestMode",
|
|
149
151
|
"EnableOverlay",
|
|
152
|
+
"EnsureConnected",
|
|
150
153
|
"EnsureDataDownload",
|
|
151
154
|
"ExportConfig",
|
|
152
155
|
"ExportDcTheme",
|
|
@@ -234,6 +237,7 @@ __all__ = [
|
|
|
234
237
|
"SetTempUnit",
|
|
235
238
|
"SetTimeFormat",
|
|
236
239
|
"SetWeekStart",
|
|
240
|
+
"SleepDevice",
|
|
237
241
|
"StartScreencast",
|
|
238
242
|
"StopScreencast",
|
|
239
243
|
"StopVideo",
|
|
@@ -350,7 +350,7 @@ def _element_to_entry(e: OverlayElement) -> OverlayElementEntry:
|
|
|
350
350
|
return OverlayElementEntry(
|
|
351
351
|
id=e.id, type=e.type, x=e.x, y=e.y, color=e.color, size=e.size,
|
|
352
352
|
bold=e.bold, italic=e.italic, text=e.text, metric=e.metric,
|
|
353
|
-
format=e.format, source=e.source,
|
|
353
|
+
format=e.format, show_unit=e.show_unit, source=e.source,
|
|
354
354
|
)
|
|
355
355
|
|
|
356
356
|
|
|
@@ -236,6 +236,34 @@ class ConnectDevice(Command[ConnectResult]):
|
|
|
236
236
|
)
|
|
237
237
|
|
|
238
238
|
|
|
239
|
+
@dataclass(frozen=True, slots=True)
|
|
240
|
+
class EnsureConnected(Command[ConnectResult]):
|
|
241
|
+
"""Bring *key* up for a wire command only if it isn't already connected.
|
|
242
|
+
|
|
243
|
+
The idempotent counterpart to :class:`ConnectDevice`. A stateless CLI
|
|
244
|
+
process holds no attached devices, so a wire command (``color``, ``play``,
|
|
245
|
+
``load-theme`` …) dispatched from a fresh process would fail with "not
|
|
246
|
+
connected". This attaches + handshakes once; when a daemon/GUI already
|
|
247
|
+
holds the device it is a pure no-op — unlike ``ConnectDevice`` it never
|
|
248
|
+
rebuilds the transport or re-handshakes a live device, so it is safe to
|
|
249
|
+
call before every wire command and once before a render/play loop without
|
|
250
|
+
disrupting an active stream. (``ConnectDevice`` keeps its always-handshake
|
|
251
|
+
contract for the reconnect / dev-console inject-reply paths.)
|
|
252
|
+
"""
|
|
253
|
+
key: str
|
|
254
|
+
|
|
255
|
+
def execute(self, app: App) -> ConnectResult:
|
|
256
|
+
existing = app.devices.get(self.key)
|
|
257
|
+
if existing is not None and existing.is_connected:
|
|
258
|
+
log.debug("EnsureConnected %s: already connected — no-op", self.key)
|
|
259
|
+
return ConnectResult(
|
|
260
|
+
ok=True, key=self.key,
|
|
261
|
+
message=f"{self.key} already connected",
|
|
262
|
+
)
|
|
263
|
+
log.info("EnsureConnected %s: not connected — attaching", self.key)
|
|
264
|
+
return app.dispatch(ConnectDevice(key=self.key))
|
|
265
|
+
|
|
266
|
+
|
|
239
267
|
@dataclass(frozen=True, slots=True)
|
|
240
268
|
class DeviceConnectionIssues(Command[ConnectionIssuesResult]):
|
|
241
269
|
"""Query devices that were found but failed to connect (with per-OS hints).
|
|
@@ -357,6 +385,44 @@ class SendColor(Command[SendResult]):
|
|
|
357
385
|
if ok else "Send returned False"),
|
|
358
386
|
)
|
|
359
387
|
|
|
388
|
+
@dataclass(frozen=True, slots=True)
|
|
389
|
+
class SleepDevice(Command[SendResult]):
|
|
390
|
+
"""Blank a connected panel so it goes dark on shutdown / quit (#143).
|
|
391
|
+
|
|
392
|
+
The unified "turn the screen off" action every surface dispatches — the
|
|
393
|
+
GUI/daemon shutdown hook (``App.close``), ``trcc display sleep`` (CLI),
|
|
394
|
+
and the ``/sleep`` API route all send this one Command. Mirrors the C#
|
|
395
|
+
exit path (stop streaming + close the device) but adds an explicit dark
|
|
396
|
+
frame first, so the panel visibly clears instead of holding its last
|
|
397
|
+
image until the firmware idle-sleeps.
|
|
398
|
+
|
|
399
|
+
Composes the existing wire paths rather than duplicating them: LCD →
|
|
400
|
+
:class:`SendColor` (a solid-black frame via
|
|
401
|
+
``DisplayService.build_solid_color_frame``); LED → :class:`SetLedColors`
|
|
402
|
+
with ``global_on=False`` (an all-off payload). Best-effort by design —
|
|
403
|
+
a device mid-unplug returns ``ok=False`` instead of raising, so it can
|
|
404
|
+
never abort ``App.close`` mid-shutdown.
|
|
405
|
+
"""
|
|
406
|
+
key: str
|
|
407
|
+
|
|
408
|
+
def execute(self, app: App) -> SendResult:
|
|
409
|
+
log.info("SleepDevice: key=%s", self.key)
|
|
410
|
+
device = app.devices.get(self.key)
|
|
411
|
+
if device is None or not device.is_connected:
|
|
412
|
+
log.info("SleepDevice %s: not connected — nothing to blank",
|
|
413
|
+
self.key)
|
|
414
|
+
return SendResult(ok=False, key=self.key, bytes_sent=0,
|
|
415
|
+
message=f"{self.key} not connected")
|
|
416
|
+
if device.is_led:
|
|
417
|
+
from .led import SetLedColors
|
|
418
|
+
result = SetLedColors(
|
|
419
|
+
key=self.key, colors=[(0, 0, 0)], global_on=False,
|
|
420
|
+
).execute(app)
|
|
421
|
+
return SendResult(ok=result.ok, key=self.key, bytes_sent=0,
|
|
422
|
+
message=result.message)
|
|
423
|
+
return SendColor(key=self.key, r=0, g=0, b=0).execute(app)
|
|
424
|
+
|
|
425
|
+
|
|
360
426
|
@dataclass(frozen=True, slots=True)
|
|
361
427
|
class SendImage(Command[SendResult]):
|
|
362
428
|
"""Push an image file to the LCD without staging it as a theme.
|
|
@@ -1426,6 +1492,7 @@ class AddOverlayElement(Command[OverlayElementResult]):
|
|
|
1426
1492
|
text: str = ""
|
|
1427
1493
|
metric: str = ""
|
|
1428
1494
|
format: str = "{value}"
|
|
1495
|
+
show_unit: bool = True
|
|
1429
1496
|
source: str = "time"
|
|
1430
1497
|
element_id: str = ""
|
|
1431
1498
|
|
|
@@ -1449,6 +1516,7 @@ class AddOverlayElement(Command[OverlayElementResult]):
|
|
|
1449
1516
|
x=self.x, y=self.y, color=self.color, size=self.size,
|
|
1450
1517
|
bold=self.bold, italic=self.italic, text=self.text,
|
|
1451
1518
|
metric=self.metric, format=self.format,
|
|
1519
|
+
show_unit=self.show_unit,
|
|
1452
1520
|
source=self.source, # type: ignore[arg-type]
|
|
1453
1521
|
)
|
|
1454
1522
|
app.settings.add_user_overlay_element(self.key, element)
|
|
@@ -1473,6 +1541,7 @@ class UpdateOverlayElement(Command[OverlayElementResult]):
|
|
|
1473
1541
|
text: str | None = None
|
|
1474
1542
|
metric: str | None = None
|
|
1475
1543
|
format: str | None = None
|
|
1544
|
+
show_unit: bool | None = None
|
|
1476
1545
|
source: str | None = None
|
|
1477
1546
|
|
|
1478
1547
|
def execute(self, app: App) -> OverlayElementResult:
|
|
@@ -1481,7 +1550,8 @@ class UpdateOverlayElement(Command[OverlayElementResult]):
|
|
|
1481
1550
|
self.key, self.element_id,
|
|
1482
1551
|
x=self.x, y=self.y, color=self.color, size=self.size,
|
|
1483
1552
|
bold=self.bold, italic=self.italic, text=self.text,
|
|
1484
|
-
metric=self.metric, format=self.format,
|
|
1553
|
+
metric=self.metric, format=self.format,
|
|
1554
|
+
show_unit=self.show_unit, source=self.source,
|
|
1485
1555
|
)
|
|
1486
1556
|
except KeyError as e:
|
|
1487
1557
|
return OverlayElementResult(
|
|
@@ -1531,16 +1601,20 @@ class FlashOverlayElement(Command[OverlayElementResult]):
|
|
|
1531
1601
|
duration_ms: int = 1500
|
|
1532
1602
|
|
|
1533
1603
|
def execute(self, app: App) -> OverlayElementResult:
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1604
|
+
# Resolve against the EFFECTIVE layout on screen (user > mask >
|
|
1605
|
+
# theme), not just the user layer — a mask/theme supplies the live
|
|
1606
|
+
# elements while the user layer is empty, so a user-only lookup
|
|
1607
|
+
# never matched them (the "element 'N' not found" flash bug).
|
|
1608
|
+
for e in app.effective_overlay_elements(self.key):
|
|
1609
|
+
if e.get("id") == self.element_id:
|
|
1537
1610
|
app.events.publish(OverlayChanged(
|
|
1538
1611
|
key=self.key, enabled=True,
|
|
1539
1612
|
flash_element_id=self.element_id,
|
|
1540
1613
|
flash_duration_ms=self.duration_ms,
|
|
1541
1614
|
))
|
|
1542
1615
|
return OverlayElementResult(
|
|
1543
|
-
ok=True, key=self.key,
|
|
1616
|
+
ok=True, key=self.key,
|
|
1617
|
+
element=_element_to_entry(OverlayElement.from_dict(e)),
|
|
1544
1618
|
message=f"Flashing overlay element {self.element_id} "
|
|
1545
1619
|
f"for {self.duration_ms}ms",
|
|
1546
1620
|
)
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
from __future__ import annotations
|
|
3
3
|
|
|
4
4
|
import logging
|
|
5
|
+
import uuid
|
|
5
6
|
from dataclasses import dataclass, field
|
|
6
7
|
from enum import Enum
|
|
7
8
|
from pathlib import Path
|
|
@@ -506,6 +507,11 @@ class OverlayElement:
|
|
|
506
507
|
# type == "metric"
|
|
507
508
|
metric: str = ""
|
|
508
509
|
format: str = "{value}"
|
|
510
|
+
# type == "metric" — draw the unit glyph (°C/%/MHz/RPM) after the number,
|
|
511
|
+
# or the bare number when the unit is baked into the theme art. Mirrors
|
|
512
|
+
# the Windows unit-switch (myModeSub == 1); the universal per-element unit
|
|
513
|
+
# toggle flips this in every UI.
|
|
514
|
+
show_unit: bool = True
|
|
509
515
|
# type == "clock"
|
|
510
516
|
source: ClockSource = "time"
|
|
511
517
|
|
|
@@ -523,6 +529,7 @@ class OverlayElement:
|
|
|
523
529
|
elif self.type == "metric":
|
|
524
530
|
out["metric"] = self.metric
|
|
525
531
|
out["format"] = self.format
|
|
532
|
+
out["show_unit"] = self.show_unit
|
|
526
533
|
elif self.type == "clock":
|
|
527
534
|
out["source"] = self.source
|
|
528
535
|
# A date element carries the theme's strftime pattern (e.g.
|
|
@@ -533,9 +540,15 @@ class OverlayElement:
|
|
|
533
540
|
|
|
534
541
|
@classmethod
|
|
535
542
|
def from_dict(cls, data: dict) -> OverlayElement:
|
|
536
|
-
"""Rebuild from JSON-loaded dict; tolerant of missing fields.
|
|
543
|
+
"""Rebuild from JSON-loaded dict; tolerant of missing fields.
|
|
544
|
+
|
|
545
|
+
Elements from a DC parse / an older config carry no ``id``; mint a
|
|
546
|
+
stable unique one so Update/Delete/Flash Commands can address the
|
|
547
|
+
element (a bare positional index never matched the ``el_<uuid>`` /
|
|
548
|
+
``el_N`` schemes — #150/#203 click-to-highlight was fully broken).
|
|
549
|
+
"""
|
|
537
550
|
return cls(
|
|
538
|
-
id=str(data.get("id"
|
|
551
|
+
id=str(data.get("id") or "") or f"el_{uuid.uuid4().hex[:8]}",
|
|
539
552
|
type=data.get("type", "text"),
|
|
540
553
|
x=int(data.get("x", 0)),
|
|
541
554
|
y=int(data.get("y", 0)),
|
|
@@ -546,6 +559,7 @@ class OverlayElement:
|
|
|
546
559
|
text=str(data.get("text", "")),
|
|
547
560
|
metric=str(data.get("metric", "")),
|
|
548
561
|
format=str(data.get("format", "{value}")),
|
|
562
|
+
show_unit=bool(data.get("show_unit", True)),
|
|
549
563
|
source=data.get("source", "time"),
|
|
550
564
|
)
|
|
551
565
|
|