trcc-linux 9.6.4__tar.gz → 9.7.0__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.
Files changed (1316) hide show
  1. trcc_linux-9.7.0/.gitignore +121 -0
  2. trcc_linux-9.7.0/PKG-INFO +470 -0
  3. trcc_linux-9.7.0/pyproject.toml +270 -0
  4. trcc_linux-9.7.0/src/trcc/__init__.py +21 -0
  5. trcc_linux-9.7.0/src/trcc/__main__.py +112 -0
  6. trcc_linux-9.7.0/src/trcc/__version__.py +4 -0
  7. trcc_linux-9.7.0/src/trcc/_boot.py +99 -0
  8. trcc_linux-9.7.0/src/trcc/_entry.py +17 -0
  9. trcc_linux-9.7.0/src/trcc/adapters/device/__init__.py +79 -0
  10. trcc_linux-9.7.0/src/trcc/adapters/device/bulk_lcd.py +223 -0
  11. trcc_linux-9.7.0/src/trcc/adapters/device/hid_lcd.py +360 -0
  12. trcc_linux-9.7.0/src/trcc/adapters/device/led.py +436 -0
  13. trcc_linux-9.7.0/src/trcc/adapters/device/ly_lcd.py +211 -0
  14. trcc_linux-9.7.0/src/trcc/adapters/device/scsi_lcd.py +335 -0
  15. trcc_linux-9.7.0/src/trcc/adapters/device/transport.py +352 -0
  16. trcc_linux-9.7.0/src/trcc/adapters/diagnostics/__init__.py +1 -0
  17. trcc_linux-9.7.0/src/trcc/adapters/diagnostics/debug_report.py +281 -0
  18. trcc_linux-9.7.0/src/trcc/adapters/diagnostics/doctor.py +57 -0
  19. trcc_linux-9.7.0/src/trcc/adapters/diagnostics/health.py +335 -0
  20. trcc_linux-9.7.0/src/trcc/adapters/infra/__init__.py +1 -0
  21. trcc_linux-9.7.0/src/trcc/adapters/infra/logging.py +142 -0
  22. trcc_linux-9.7.0/src/trcc/adapters/infra/network.py +31 -0
  23. trcc_linux-9.7.0/src/trcc/adapters/infra/sysinfo_config.py +363 -0
  24. trcc_linux-9.7.0/src/trcc/adapters/render/qt.py +349 -0
  25. trcc_linux-9.7.0/src/trcc/adapters/repo/__init__.py +1 -0
  26. trcc_linux-9.7.0/src/trcc/adapters/repo/data_install.py +233 -0
  27. trcc_linux-9.7.0/src/trcc/adapters/repo/github_releases.py +74 -0
  28. trcc_linux-9.7.0/src/trcc/adapters/repo/http.py +53 -0
  29. trcc_linux-9.7.0/src/trcc/adapters/screencast/__init__.py +10 -0
  30. trcc_linux-9.7.0/src/trcc/adapters/screencast/qt.py +166 -0
  31. trcc_linux-9.7.0/src/trcc/adapters/sensors/_hwinfo.py +559 -0
  32. trcc_linux-9.7.0/src/trcc/adapters/sensors/_lhm.py +567 -0
  33. trcc_linux-9.7.0/src/trcc/adapters/sensors/_macos_hid.py +524 -0
  34. trcc_linux-9.7.0/src/trcc/adapters/sensors/_msacpi.py +133 -0
  35. trcc_linux-9.7.0/src/trcc/adapters/sensors/_powermetrics.py +411 -0
  36. trcc_linux-9.7.0/src/trcc/adapters/sensors/_smc.py +506 -0
  37. trcc_linux-9.7.0/src/trcc/adapters/sensors/_sysctl.py +274 -0
  38. trcc_linux-9.7.0/src/trcc/adapters/sensors/aggregator.py +368 -0
  39. trcc_linux-9.7.0/src/trcc/adapters/sensors/bsd.py +54 -0
  40. trcc_linux-9.7.0/src/trcc/adapters/sensors/chain.py +163 -0
  41. trcc_linux-9.7.0/src/trcc/adapters/sensors/gpu_detect.py +95 -0
  42. trcc_linux-9.7.0/src/trcc/adapters/sensors/hwmon.py +463 -0
  43. trcc_linux-9.7.0/src/trcc/adapters/sensors/macos.py +384 -0
  44. trcc_linux-9.7.0/src/trcc/adapters/sensors/nvml.py +173 -0
  45. trcc_linux-9.7.0/src/trcc/adapters/sensors/psutil_sources.py +158 -0
  46. trcc_linux-9.7.0/src/trcc/adapters/sensors/windows.py +77 -0
  47. trcc_linux-9.7.0/src/trcc/adapters/system/__init__.py +74 -0
  48. trcc_linux-9.7.0/src/trcc/adapters/system/_autostart.py +338 -0
  49. trcc_linux-9.7.0/src/trcc/adapters/system/_devd.py +158 -0
  50. trcc_linux-9.7.0/src/trcc/adapters/system/_hotplug.py +790 -0
  51. trcc_linux-9.7.0/src/trcc/adapters/system/_macos_setup.py +167 -0
  52. trcc_linux-9.7.0/src/trcc/adapters/system/_udev.py +191 -0
  53. trcc_linux-9.7.0/src/trcc/adapters/system/_winusb.py +136 -0
  54. trcc_linux-9.7.0/src/trcc/adapters/system/bsd.py +331 -0
  55. trcc_linux-9.7.0/src/trcc/adapters/system/linux.py +716 -0
  56. trcc_linux-9.7.0/src/trcc/adapters/system/macos.py +337 -0
  57. trcc_linux-9.7.0/src/trcc/adapters/system/windows.py +585 -0
  58. trcc_linux-9.7.0/src/trcc/adapters/theme/__init__.py +1 -0
  59. trcc_linux-9.7.0/src/trcc/adapters/theme/cloud.py +208 -0
  60. trcc_linux-9.7.0/src/trcc/app.py +426 -0
  61. trcc_linux-9.7.0/src/trcc/core/_colors.py +42 -0
  62. trcc_linux-9.7.0/src/trcc/core/_safe.py +121 -0
  63. trcc_linux-9.7.0/src/trcc/core/_version.py +45 -0
  64. trcc_linux-9.7.0/src/trcc/core/commands/__init__.py +242 -0
  65. trcc_linux-9.7.0/src/trcc/core/commands/_base.py +42 -0
  66. trcc_linux-9.7.0/src/trcc/core/commands/_helpers.py +361 -0
  67. trcc_linux-9.7.0/src/trcc/core/commands/device.py +1658 -0
  68. trcc_linux-9.7.0/src/trcc/core/commands/led.py +788 -0
  69. trcc_linux-9.7.0/src/trcc/core/commands/system.py +993 -0
  70. trcc_linux-9.7.0/src/trcc/core/commands/theme.py +1761 -0
  71. trcc_linux-9.7.0/src/trcc/core/device_recovery.py +205 -0
  72. trcc_linux-9.7.0/src/trcc/core/errors.py +65 -0
  73. trcc_linux-9.7.0/src/trcc/core/events.py +388 -0
  74. trcc_linux-9.7.0/src/trcc/core/i18n.py +2177 -0
  75. trcc_linux-9.7.0/src/trcc/core/led_models.py +356 -0
  76. trcc_linux-9.7.0/src/trcc/core/led_protocol.py +327 -0
  77. trcc_linux-9.7.0/src/trcc/core/models.py +1054 -0
  78. trcc_linux-9.7.0/src/trcc/core/ports.py +834 -0
  79. trcc_linux-9.7.0/src/trcc/core/protocol.py +239 -0
  80. trcc_linux-9.7.0/src/trcc/core/registry.py +171 -0
  81. trcc_linux-9.7.0/src/trcc/core/results.py +706 -0
  82. trcc_linux-9.7.0/src/trcc/core/variants.py +220 -0
  83. trcc_linux-9.7.0/src/trcc/daemon.py +160 -0
  84. trcc_linux-9.7.0/src/trcc/ipc.py +708 -0
  85. trcc_linux-9.7.0/src/trcc/proxy.py +57 -0
  86. trcc_linux-9.7.0/src/trcc/services/_ansi.py +93 -0
  87. trcc_linux-9.7.0/src/trcc/services/_clock.py +114 -0
  88. trcc_linux-9.7.0/src/trcc/services/_dc.py +740 -0
  89. trcc_linux-9.7.0/src/trcc/services/audio.py +142 -0
  90. trcc_linux-9.7.0/src/trcc/services/cloud_theme.py +188 -0
  91. trcc_linux-9.7.0/src/trcc/services/data_install.py +98 -0
  92. trcc_linux-9.7.0/src/trcc/services/display.py +1216 -0
  93. trcc_linux-9.7.0/src/trcc/services/first_run.py +80 -0
  94. trcc_linux-9.7.0/src/trcc/services/keepalive.py +68 -0
  95. trcc_linux-9.7.0/src/trcc/services/led_effects.py +377 -0
  96. trcc_linux-9.7.0/src/trcc/services/led_segment.py +889 -0
  97. trcc_linux-9.7.0/src/trcc/services/media.py +479 -0
  98. trcc_linux-9.7.0/src/trcc/services/metrics_loop.py +232 -0
  99. trcc_linux-9.7.0/src/trcc/services/metrics_personalize.py +80 -0
  100. trcc_linux-9.7.0/src/trcc/services/migration.py +105 -0
  101. trcc_linux-9.7.0/src/trcc/services/overlay.py +314 -0
  102. trcc_linux-9.7.0/src/trcc/services/quickstart.py +160 -0
  103. trcc_linux-9.7.0/src/trcc/services/settings.py +822 -0
  104. trcc_linux-9.7.0/src/trcc/services/slideshow.py +105 -0
  105. trcc_linux-9.7.0/src/trcc/services/theme.py +811 -0
  106. trcc_linux-9.7.0/src/trcc/services/video_cache.py +67 -0
  107. trcc_linux-9.7.0/src/trcc/services/video_export.py +273 -0
  108. trcc_linux-9.7.0/src/trcc/ui/api/_shared.py +782 -0
  109. trcc_linux-9.7.0/src/trcc/ui/api/config.py +102 -0
  110. trcc_linux-9.7.0/src/trcc/ui/api/devices.py +59 -0
  111. trcc_linux-9.7.0/src/trcc/ui/api/display.py +1090 -0
  112. trcc_linux-9.7.0/src/trcc/ui/api/led.py +404 -0
  113. trcc_linux-9.7.0/src/trcc/ui/api/main.py +230 -0
  114. trcc_linux-9.7.0/src/trcc/ui/api/schemas.py +961 -0
  115. trcc_linux-9.7.0/src/trcc/ui/api/system.py +372 -0
  116. trcc_linux-9.7.0/src/trcc/ui/api/theme.py +440 -0
  117. trcc_linux-9.7.0/src/trcc/ui/api/trcc.py +86 -0
  118. trcc_linux-9.7.0/src/trcc/ui/cli/_ctx.py +64 -0
  119. trcc_linux-9.7.0/src/trcc/ui/cli/config.py +101 -0
  120. trcc_linux-9.7.0/src/trcc/ui/cli/device.py +112 -0
  121. trcc_linux-9.7.0/src/trcc/ui/cli/display.py +1105 -0
  122. trcc_linux-9.7.0/src/trcc/ui/cli/led.py +527 -0
  123. trcc_linux-9.7.0/src/trcc/ui/cli/main.py +480 -0
  124. trcc_linux-9.7.0/src/trcc/ui/cli/shell.py +153 -0
  125. trcc_linux-9.7.0/src/trcc/ui/cli/system.py +529 -0
  126. trcc_linux-9.7.0/src/trcc/ui/cli/theme.py +400 -0
  127. trcc_linux-9.7.0/src/trcc/ui/gui/__init__.py +158 -0
  128. trcc_linux-9.7.0/src/trcc/ui/gui/_overlay_grid_adapter.py +146 -0
  129. trcc_linux-9.7.0/src/trcc/ui/gui/_ui_state.py +164 -0
  130. trcc_linux-9.7.0/src/trcc/ui/gui/assets.py +230 -0
  131. trcc_linux-9.7.0/src/trcc/ui/gui/base.py +834 -0
  132. trcc_linux-9.7.0/src/trcc/ui/gui/base_handler.py +100 -0
  133. trcc_linux-9.7.0/src/trcc/ui/gui/bus_bridge.py +112 -0
  134. trcc_linux-9.7.0/src/trcc/ui/gui/color_and_add_panels.py +320 -0
  135. trcc_linux-9.7.0/src/trcc/ui/gui/constants.py +453 -0
  136. trcc_linux-9.7.0/src/trcc/ui/gui/display_mode_panels.py +700 -0
  137. trcc_linux-9.7.0/src/trcc/ui/gui/eyedropper.py +185 -0
  138. trcc_linux-9.7.0/src/trcc/ui/gui/lcd_handler.py +1356 -0
  139. trcc_linux-9.7.0/src/trcc/ui/gui/led_handler.py +337 -0
  140. trcc_linux-9.7.0/src/trcc/ui/gui/overlay_element.py +239 -0
  141. trcc_linux-9.7.0/src/trcc/ui/gui/overlay_grid.py +314 -0
  142. trcc_linux-9.7.0/src/trcc/ui/gui/pipewire_capture.py +403 -0
  143. trcc_linux-9.7.0/src/trcc/ui/gui/screen_capture.py +314 -0
  144. trcc_linux-9.7.0/src/trcc/ui/gui/splash.py +214 -0
  145. trcc_linux-9.7.0/src/trcc/ui/gui/trcc_app.py +2387 -0
  146. trcc_linux-9.7.0/src/trcc/ui/gui/uc_about.py +618 -0
  147. trcc_linux-9.7.0/src/trcc/ui/gui/uc_activity_sidebar.py +225 -0
  148. trcc_linux-9.7.0/src/trcc/ui/gui/uc_color_wheel.py +272 -0
  149. trcc_linux-9.7.0/src/trcc/ui/gui/uc_device.py +432 -0
  150. trcc_linux-9.7.0/src/trcc/ui/gui/uc_image_cut.py +397 -0
  151. trcc_linux-9.7.0/src/trcc/ui/gui/uc_info_module.py +139 -0
  152. trcc_linux-9.7.0/src/trcc/ui/gui/uc_led_control.py +1435 -0
  153. trcc_linux-9.7.0/src/trcc/ui/gui/uc_screen_led.py +680 -0
  154. trcc_linux-9.7.0/src/trcc/ui/gui/uc_sensor_picker.py +320 -0
  155. trcc_linux-9.7.0/src/trcc/ui/gui/uc_system_info.py +700 -0
  156. trcc_linux-9.7.0/src/trcc/ui/gui/uc_theme_local.py +471 -0
  157. trcc_linux-9.7.0/src/trcc/ui/gui/uc_theme_mask.py +303 -0
  158. trcc_linux-9.7.0/src/trcc/ui/gui/uc_theme_setting.py +342 -0
  159. trcc_linux-9.7.0/src/trcc/ui/gui/uc_theme_web.py +311 -0
  160. trcc_linux-9.7.0/src/trcc/ui/gui/uc_video_cut.py +662 -0
  161. trcc_linux-9.7.0/src/trcc/ui/qapp.py +59 -0
  162. trcc_linux-9.7.0/src/trcc/ui/qtgui/__init__.py +12 -0
  163. trcc_linux-9.7.0/src/trcc/ui/qtgui/app.py +222 -0
  164. trcc_linux-9.7.0/src/trcc/ui/qtgui/assets.py +120 -0
  165. trcc_linux-9.7.0/src/trcc/ui/qtgui/base.py +146 -0
  166. trcc_linux-9.7.0/src/trcc/ui/qtgui/bus_bridge.py +78 -0
  167. trcc_linux-9.7.0/src/trcc/ui/qtgui/color_wheel.py +163 -0
  168. trcc_linux-9.7.0/src/trcc/ui/qtgui/device_picker.py +187 -0
  169. trcc_linux-9.7.0/src/trcc/ui/qtgui/eyedropper.py +143 -0
  170. trcc_linux-9.7.0/src/trcc/ui/qtgui/image_crop.py +372 -0
  171. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/__init__.py +33 -0
  172. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/about_panel.py +74 -0
  173. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/cloud_theme_browser.py +177 -0
  174. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/configuration_panel.py +342 -0
  175. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/device_panel.py +90 -0
  176. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/display_panel.py +190 -0
  177. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/led/__init__.py +34 -0
  178. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/led/_base.py +77 -0
  179. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/led/advanced_tab.py +253 -0
  180. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/led/color_tab.py +211 -0
  181. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/led/mode_tab.py +118 -0
  182. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/led/segment_tab.py +125 -0
  183. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/led/zone_tab.py +339 -0
  184. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/led_panel.py +172 -0
  185. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/local_theme_browser.py +397 -0
  186. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/mask_browser.py +310 -0
  187. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/overlay_editor.py +473 -0
  188. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/preview_panel.py +174 -0
  189. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/screencast_panel.py +283 -0
  190. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/sidebar.py +109 -0
  191. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/status_panel.py +150 -0
  192. trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/system_panel.py +272 -0
  193. trcc_linux-9.7.0/src/trcc/ui/qtgui/region_overlay.py +128 -0
  194. trcc_linux-9.7.0/src/trcc/ui/qtgui/screen_overlay.py +161 -0
  195. trcc_linux-9.7.0/src/trcc/ui/qtgui/sensor_picker.py +226 -0
  196. trcc_linux-9.7.0/src/trcc/ui/qtgui/splash.py +110 -0
  197. trcc_linux-9.7.0/src/trcc/ui/qtgui/video_crop.py +512 -0
  198. trcc_linux-9.7.0/tests/conftest.py +376 -0
  199. trcc_linux-9.7.0/tests/test_api_routes.py +1072 -0
  200. trcc_linux-9.7.0/tests/test_autostart.py +85 -0
  201. trcc_linux-9.7.0/tests/test_autostart_macos.py +184 -0
  202. trcc_linux-9.7.0/tests/test_autostart_windows.py +236 -0
  203. trcc_linux-9.7.0/tests/test_backend_finish.py +266 -0
  204. trcc_linux-9.7.0/tests/test_boot_animation_command.py +250 -0
  205. trcc_linux-9.7.0/tests/test_boot_animation_device.py +301 -0
  206. trcc_linux-9.7.0/tests/test_bulk_lcd_geometry.py +225 -0
  207. trcc_linux-9.7.0/tests/test_cli_commands.py +1038 -0
  208. trcc_linux-9.7.0/tests/test_clock.py +129 -0
  209. trcc_linux-9.7.0/tests/test_cloud_themes.py +165 -0
  210. trcc_linux-9.7.0/tests/test_commands.py +58 -0
  211. trcc_linux-9.7.0/tests/test_control_center.py +224 -0
  212. trcc_linux-9.7.0/tests/test_dc_codec.py +253 -0
  213. trcc_linux-9.7.0/tests/test_dc_reader.py +319 -0
  214. trcc_linux-9.7.0/tests/test_diagnostics.py +212 -0
  215. trcc_linux-9.7.0/tests/test_display_rotation.py +375 -0
  216. trcc_linux-9.7.0/tests/test_display_tweaks.py +188 -0
  217. trcc_linux-9.7.0/tests/test_first_run_and_migration.py +61 -0
  218. trcc_linux-9.7.0/tests/test_gui_panels.py +1046 -0
  219. trcc_linux-9.7.0/tests/test_hid_lcd_geometry.py +375 -0
  220. trcc_linux-9.7.0/tests/test_hotplug.py +222 -0
  221. trcc_linux-9.7.0/tests/test_hotplug_bsd.py +166 -0
  222. trcc_linux-9.7.0/tests/test_hotplug_polling.py +210 -0
  223. trcc_linux-9.7.0/tests/test_hotplug_windows.py +146 -0
  224. trcc_linux-9.7.0/tests/test_i18n.py +148 -0
  225. trcc_linux-9.7.0/tests/test_integration_pipeline.py +53 -0
  226. trcc_linux-9.7.0/tests/test_ipc_server.py +243 -0
  227. trcc_linux-9.7.0/tests/test_ipc_wire.py +218 -0
  228. trcc_linux-9.7.0/tests/test_led_effects.py +325 -0
  229. trcc_linux-9.7.0/tests/test_led_pm_registry.py +281 -0
  230. trcc_linux-9.7.0/tests/test_led_remap.py +134 -0
  231. trcc_linux-9.7.0/tests/test_led_send.py +183 -0
  232. trcc_linux-9.7.0/tests/test_led_settings_commands.py +155 -0
  233. trcc_linux-9.7.0/tests/test_library_migration.py +108 -0
  234. trcc_linux-9.7.0/tests/test_ly_lcd_geometry.py +190 -0
  235. trcc_linux-9.7.0/tests/test_mask_commands.py +251 -0
  236. trcc_linux-9.7.0/tests/test_mask_rendering.py +319 -0
  237. trcc_linux-9.7.0/tests/test_metrics_personalize.py +136 -0
  238. trcc_linux-9.7.0/tests/test_models.py +21 -0
  239. trcc_linux-9.7.0/tests/test_overlay_clock.py +161 -0
  240. trcc_linux-9.7.0/tests/test_platform_hw_probes.py +270 -0
  241. trcc_linux-9.7.0/tests/test_quickstart.py +105 -0
  242. trcc_linux-9.7.0/tests/test_render_led.py +226 -0
  243. trcc_linux-9.7.0/tests/test_scsi_lcd_geometry.py +226 -0
  244. trcc_linux-9.7.0/tests/test_send_color.py +419 -0
  245. trcc_linux-9.7.0/tests/test_sensor_chain.py +213 -0
  246. trcc_linux-9.7.0/tests/test_sensors.py +193 -0
  247. trcc_linux-9.7.0/tests/test_sensors_bsd.py +293 -0
  248. trcc_linux-9.7.0/tests/test_sensors_lhm_subprocess.py +227 -0
  249. trcc_linux-9.7.0/tests/test_sensors_macos.py +341 -0
  250. trcc_linux-9.7.0/tests/test_sensors_windows.py +469 -0
  251. trcc_linux-9.7.0/tests/test_settings_migration.py +95 -0
  252. trcc_linux-9.7.0/tests/test_shell.py +143 -0
  253. trcc_linux-9.7.0/tests/test_theme_persistence.py +1259 -0
  254. trcc_linux-9.7.0/tests/test_theme_service.py +268 -0
  255. trcc_linux-9.7.0/tests/test_transports.py +109 -0
  256. trcc_linux-9.7.0/tests/test_udev.py +99 -0
  257. trcc_linux-9.7.0/tests/test_video_cache.py +54 -0
  258. trcc_linux-9.7.0/tests/test_video_playback.py +773 -0
  259. trcc_linux-9.6.4/.gitignore +0 -116
  260. trcc_linux-9.6.4/PKG-INFO +0 -470
  261. trcc_linux-9.6.4/pyproject.toml +0 -271
  262. trcc_linux-9.6.4/src/trcc/__init__.py +0 -63
  263. trcc_linux-9.6.4/src/trcc/__main__.py +0 -108
  264. trcc_linux-9.6.4/src/trcc/__version__.py +0 -4
  265. trcc_linux-9.6.4/src/trcc/_boot.py +0 -261
  266. trcc_linux-9.6.4/src/trcc/_entry.py +0 -27
  267. trcc_linux-9.6.4/src/trcc/adapters/__init__.py +0 -1
  268. trcc_linux-9.6.4/src/trcc/adapters/device/__init__.py +0 -1
  269. trcc_linux-9.6.4/src/trcc/adapters/device/_pyusb_find.py +0 -46
  270. trcc_linux-9.6.4/src/trcc/adapters/device/_usb_bot_scsi.py +0 -199
  271. trcc_linux-9.6.4/src/trcc/adapters/device/_usb_helpers.py +0 -270
  272. trcc_linux-9.6.4/src/trcc/adapters/device/bsd/__init__.py +0 -0
  273. trcc_linux-9.6.4/src/trcc/adapters/device/bsd/detector.py +0 -33
  274. trcc_linux-9.6.4/src/trcc/adapters/device/bsd/scsi.py +0 -19
  275. trcc_linux-9.6.4/src/trcc/adapters/device/bulk.py +0 -205
  276. trcc_linux-9.6.4/src/trcc/adapters/device/bulk_protocol.py +0 -117
  277. trcc_linux-9.6.4/src/trcc/adapters/device/detector.py +0 -185
  278. trcc_linux-9.6.4/src/trcc/adapters/device/factory.py +0 -728
  279. trcc_linux-9.6.4/src/trcc/adapters/device/frame.py +0 -84
  280. trcc_linux-9.6.4/src/trcc/adapters/device/hid.py +0 -904
  281. trcc_linux-9.6.4/src/trcc/adapters/device/hid_protocol.py +0 -100
  282. trcc_linux-9.6.4/src/trcc/adapters/device/led.py +0 -501
  283. trcc_linux-9.6.4/src/trcc/adapters/device/led_kvm.py +0 -233
  284. trcc_linux-9.6.4/src/trcc/adapters/device/led_protocol.py +0 -108
  285. trcc_linux-9.6.4/src/trcc/adapters/device/linux/__init__.py +0 -0
  286. trcc_linux-9.6.4/src/trcc/adapters/device/linux/detector.py +0 -207
  287. trcc_linux-9.6.4/src/trcc/adapters/device/linux/scsi.py +0 -177
  288. trcc_linux-9.6.4/src/trcc/adapters/device/ly.py +0 -248
  289. trcc_linux-9.6.4/src/trcc/adapters/device/ly_protocol.py +0 -43
  290. trcc_linux-9.6.4/src/trcc/adapters/device/macos/__init__.py +0 -1
  291. trcc_linux-9.6.4/src/trcc/adapters/device/macos/detector.py +0 -100
  292. trcc_linux-9.6.4/src/trcc/adapters/device/macos/scsi.py +0 -20
  293. trcc_linux-9.6.4/src/trcc/adapters/device/scsi.py +0 -332
  294. trcc_linux-9.6.4/src/trcc/adapters/device/scsi_protocol.py +0 -98
  295. trcc_linux-9.6.4/src/trcc/adapters/device/windows/__init__.py +0 -1
  296. trcc_linux-9.6.4/src/trcc/adapters/device/windows/detector.py +0 -220
  297. trcc_linux-9.6.4/src/trcc/adapters/device/windows/scsi.py +0 -284
  298. trcc_linux-9.6.4/src/trcc/adapters/infra/__init__.py +0 -1
  299. trcc_linux-9.6.4/src/trcc/adapters/infra/binary_reader.py +0 -97
  300. trcc_linux-9.6.4/src/trcc/adapters/infra/data_repository.py +0 -579
  301. trcc_linux-9.6.4/src/trcc/adapters/infra/dc_config.py +0 -195
  302. trcc_linux-9.6.4/src/trcc/adapters/infra/dc_parser.py +0 -799
  303. trcc_linux-9.6.4/src/trcc/adapters/infra/dc_writer.py +0 -601
  304. trcc_linux-9.6.4/src/trcc/adapters/infra/debug_report.py +0 -4
  305. trcc_linux-9.6.4/src/trcc/adapters/infra/diagnostics.py +0 -1961
  306. trcc_linux-9.6.4/src/trcc/adapters/infra/doctor.py +0 -42
  307. trcc_linux-9.6.4/src/trcc/adapters/infra/logging_setup.py +0 -4
  308. trcc_linux-9.6.4/src/trcc/adapters/infra/media_player.py +0 -277
  309. trcc_linux-9.6.4/src/trcc/adapters/infra/network.py +0 -24
  310. trcc_linux-9.6.4/src/trcc/adapters/infra/theme_cloud.py +0 -468
  311. trcc_linux-9.6.4/src/trcc/adapters/infra/theme_downloader.py +0 -271
  312. trcc_linux-9.6.4/src/trcc/adapters/render/__init__.py +0 -1
  313. trcc_linux-9.6.4/src/trcc/adapters/render/factory_render.py +0 -15
  314. trcc_linux-9.6.4/src/trcc/adapters/render/qt.py +0 -389
  315. trcc_linux-9.6.4/src/trcc/adapters/system/__init__.py +0 -148
  316. trcc_linux-9.6.4/src/trcc/adapters/system/_base.py +0 -568
  317. trcc_linux-9.6.4/src/trcc/adapters/system/_shared.py +0 -141
  318. trcc_linux-9.6.4/src/trcc/adapters/system/_windows_wmi.py +0 -47
  319. trcc_linux-9.6.4/src/trcc/adapters/system/bsd_platform.py +0 -492
  320. trcc_linux-9.6.4/src/trcc/adapters/system/config.py +0 -143
  321. trcc_linux-9.6.4/src/trcc/adapters/system/linux_platform.py +0 -1264
  322. trcc_linux-9.6.4/src/trcc/adapters/system/linux_sensors.py +0 -603
  323. trcc_linux-9.6.4/src/trcc/adapters/system/macos/__init__.py +0 -1
  324. trcc_linux-9.6.4/src/trcc/adapters/system/macos/hardware.py +0 -121
  325. trcc_linux-9.6.4/src/trcc/adapters/system/macos/hid_sensors.py +0 -368
  326. trcc_linux-9.6.4/src/trcc/adapters/system/macos/powermetrics_extra.py +0 -153
  327. trcc_linux-9.6.4/src/trcc/adapters/system/macos/powermetrics_ipc.py +0 -108
  328. trcc_linux-9.6.4/src/trcc/adapters/system/macos/powermetrics_plist.py +0 -118
  329. trcc_linux-9.6.4/src/trcc/adapters/system/macos/sensors.py +0 -654
  330. trcc_linux-9.6.4/src/trcc/adapters/system/macos/smc_client.py +0 -405
  331. trcc_linux-9.6.4/src/trcc/adapters/system/macos/smc_ismc_tables.py +0 -311
  332. trcc_linux-9.6.4/src/trcc/adapters/system/macos_platform.py +0 -590
  333. trcc_linux-9.6.4/src/trcc/adapters/system/windows/__init__.py +0 -20
  334. trcc_linux-9.6.4/src/trcc/adapters/system/windows/enumerator.py +0 -308
  335. trcc_linux-9.6.4/src/trcc/adapters/system/windows/sources/__init__.py +0 -33
  336. trcc_linux-9.6.4/src/trcc/adapters/system/windows/sources/_base.py +0 -142
  337. trcc_linux-9.6.4/src/trcc/adapters/system/windows/sources/hwinfo.py +0 -434
  338. trcc_linux-9.6.4/src/trcc/adapters/system/windows/sources/lhm.py +0 -350
  339. trcc_linux-9.6.4/src/trcc/adapters/system/windows/sources/msacpi.py +0 -123
  340. trcc_linux-9.6.4/src/trcc/adapters/system/windows_platform.py +0 -438
  341. trcc_linux-9.6.4/src/trcc/conf.py +0 -644
  342. trcc_linux-9.6.4/src/trcc/core/__init__.py +0 -24
  343. trcc_linux-9.6.4/src/trcc/core/_command.py +0 -146
  344. trcc_linux-9.6.4/src/trcc/core/_device_commands.py +0 -50
  345. trcc_linux-9.6.4/src/trcc/core/_logging.py +0 -27
  346. trcc_linux-9.6.4/src/trcc/core/builder.py +0 -238
  347. trcc_linux-9.6.4/src/trcc/core/color.py +0 -116
  348. trcc_linux-9.6.4/src/trcc/core/control_center_commands.py +0 -282
  349. trcc_linux-9.6.4/src/trcc/core/device/__init__.py +0 -17
  350. trcc_linux-9.6.4/src/trcc/core/device/base.py +0 -77
  351. trcc_linux-9.6.4/src/trcc/core/device/factory.py +0 -150
  352. trcc_linux-9.6.4/src/trcc/core/device/lcd.py +0 -880
  353. trcc_linux-9.6.4/src/trcc/core/device/lcd_persistence.py +0 -98
  354. trcc_linux-9.6.4/src/trcc/core/device/lcd_theme_workflow.py +0 -360
  355. trcc_linux-9.6.4/src/trcc/core/device/led.py +0 -417
  356. trcc_linux-9.6.4/src/trcc/core/device/registry.py +0 -95
  357. trcc_linux-9.6.4/src/trcc/core/encoding.py +0 -20
  358. trcc_linux-9.6.4/src/trcc/core/events.py +0 -170
  359. trcc_linux-9.6.4/src/trcc/core/i18n.py +0 -2106
  360. trcc_linux-9.6.4/src/trcc/core/io.py +0 -57
  361. trcc_linux-9.6.4/src/trcc/core/lcd_commands.py +0 -632
  362. trcc_linux-9.6.4/src/trcc/core/led_commands.py +0 -200
  363. trcc_linux-9.6.4/src/trcc/core/led_segment.py +0 -706
  364. trcc_linux-9.6.4/src/trcc/core/macos_app_bundle_launch.py +0 -70
  365. trcc_linux-9.6.4/src/trcc/core/models/__init__.py +0 -21
  366. trcc_linux-9.6.4/src/trcc/core/models/api.py +0 -26
  367. trcc_linux-9.6.4/src/trcc/core/models/constants.py +0 -128
  368. trcc_linux-9.6.4/src/trcc/core/models/device.py +0 -447
  369. trcc_linux-9.6.4/src/trcc/core/models/led.py +0 -584
  370. trcc_linux-9.6.4/src/trcc/core/models/os.py +0 -33
  371. trcc_linux-9.6.4/src/trcc/core/models/overlay.py +0 -344
  372. trcc_linux-9.6.4/src/trcc/core/models/protocol.py +0 -615
  373. trcc_linux-9.6.4/src/trcc/core/models/sensor.py +0 -348
  374. trcc_linux-9.6.4/src/trcc/core/models/theme.py +0 -249
  375. trcc_linux-9.6.4/src/trcc/core/paths.py +0 -125
  376. trcc_linux-9.6.4/src/trcc/core/perf.py +0 -201
  377. trcc_linux-9.6.4/src/trcc/core/platform.py +0 -75
  378. trcc_linux-9.6.4/src/trcc/core/ports.py +0 -907
  379. trcc_linux-9.6.4/src/trcc/core/results.py +0 -214
  380. trcc_linux-9.6.4/src/trcc/core/trcc.py +0 -824
  381. trcc_linux-9.6.4/src/trcc/core/trcc_proxy.py +0 -493
  382. trcc_linux-9.6.4/src/trcc/core/wire.py +0 -55
  383. trcc_linux-9.6.4/src/trcc/daemon.py +0 -253
  384. trcc_linux-9.6.4/src/trcc/install/__init__.py +0 -1
  385. trcc_linux-9.6.4/src/trcc/install/gui.py +0 -486
  386. trcc_linux-9.6.4/src/trcc/ipc.py +0 -695
  387. trcc_linux-9.6.4/src/trcc/next/__init__.py +0 -14
  388. trcc_linux-9.6.4/src/trcc/next/__main__.py +0 -5
  389. trcc_linux-9.6.4/src/trcc/next/adapters/device/__init__.py +0 -1
  390. trcc_linux-9.6.4/src/trcc/next/adapters/device/bulk_lcd.py +0 -128
  391. trcc_linux-9.6.4/src/trcc/next/adapters/device/hid_lcd.py +0 -290
  392. trcc_linux-9.6.4/src/trcc/next/adapters/device/led.py +0 -234
  393. trcc_linux-9.6.4/src/trcc/next/adapters/device/ly_lcd.py +0 -168
  394. trcc_linux-9.6.4/src/trcc/next/adapters/device/scsi_lcd.py +0 -169
  395. trcc_linux-9.6.4/src/trcc/next/adapters/device/transport.py +0 -233
  396. trcc_linux-9.6.4/src/trcc/next/adapters/render/qt.py +0 -231
  397. trcc_linux-9.6.4/src/trcc/next/adapters/sensors/aggregator.py +0 -340
  398. trcc_linux-9.6.4/src/trcc/next/adapters/sensors/gpu_detect.py +0 -92
  399. trcc_linux-9.6.4/src/trcc/next/adapters/sensors/hwmon.py +0 -370
  400. trcc_linux-9.6.4/src/trcc/next/adapters/sensors/nvml.py +0 -165
  401. trcc_linux-9.6.4/src/trcc/next/adapters/sensors/psutil_sources.py +0 -149
  402. trcc_linux-9.6.4/src/trcc/next/adapters/system/__init__.py +0 -1
  403. trcc_linux-9.6.4/src/trcc/next/adapters/system/_devd.py +0 -153
  404. trcc_linux-9.6.4/src/trcc/next/adapters/system/_macos_setup.py +0 -166
  405. trcc_linux-9.6.4/src/trcc/next/adapters/system/_udev.py +0 -185
  406. trcc_linux-9.6.4/src/trcc/next/adapters/system/_winusb.py +0 -135
  407. trcc_linux-9.6.4/src/trcc/next/adapters/system/bsd.py +0 -146
  408. trcc_linux-9.6.4/src/trcc/next/adapters/system/linux.py +0 -507
  409. trcc_linux-9.6.4/src/trcc/next/adapters/system/macos.py +0 -142
  410. trcc_linux-9.6.4/src/trcc/next/adapters/system/windows.py +0 -366
  411. trcc_linux-9.6.4/src/trcc/next/app.py +0 -163
  412. trcc_linux-9.6.4/src/trcc/next/core/commands.py +0 -567
  413. trcc_linux-9.6.4/src/trcc/next/core/errors.py +0 -38
  414. trcc_linux-9.6.4/src/trcc/next/core/events.py +0 -130
  415. trcc_linux-9.6.4/src/trcc/next/core/models.py +0 -199
  416. trcc_linux-9.6.4/src/trcc/next/core/ports.py +0 -533
  417. trcc_linux-9.6.4/src/trcc/next/core/registry.py +0 -146
  418. trcc_linux-9.6.4/src/trcc/next/core/results.py +0 -109
  419. trcc_linux-9.6.4/src/trcc/next/services/_dc_reader.py +0 -432
  420. trcc_linux-9.6.4/src/trcc/next/services/display.py +0 -291
  421. trcc_linux-9.6.4/src/trcc/next/services/led_segment.py +0 -863
  422. trcc_linux-9.6.4/src/trcc/next/services/media.py +0 -328
  423. trcc_linux-9.6.4/src/trcc/next/services/overlay.py +0 -110
  424. trcc_linux-9.6.4/src/trcc/next/services/settings.py +0 -221
  425. trcc_linux-9.6.4/src/trcc/next/services/theme.py +0 -177
  426. trcc_linux-9.6.4/src/trcc/next/ui/api/_shared.py +0 -155
  427. trcc_linux-9.6.4/src/trcc/next/ui/api/devices.py +0 -35
  428. trcc_linux-9.6.4/src/trcc/next/ui/api/display.py +0 -91
  429. trcc_linux-9.6.4/src/trcc/next/ui/api/led.py +0 -25
  430. trcc_linux-9.6.4/src/trcc/next/ui/api/main.py +0 -65
  431. trcc_linux-9.6.4/src/trcc/next/ui/api/schemas.py +0 -119
  432. trcc_linux-9.6.4/src/trcc/next/ui/api/system.py +0 -33
  433. trcc_linux-9.6.4/src/trcc/next/ui/cli/_ctx.py +0 -42
  434. trcc_linux-9.6.4/src/trcc/next/ui/cli/device.py +0 -50
  435. trcc_linux-9.6.4/src/trcc/next/ui/cli/display.py +0 -83
  436. trcc_linux-9.6.4/src/trcc/next/ui/cli/led.py +0 -40
  437. trcc_linux-9.6.4/src/trcc/next/ui/cli/main.py +0 -63
  438. trcc_linux-9.6.4/src/trcc/next/ui/cli/system.py +0 -97
  439. trcc_linux-9.6.4/src/trcc/next/ui/gui/__init__.py +0 -12
  440. trcc_linux-9.6.4/src/trcc/next/ui/gui/app.py +0 -152
  441. trcc_linux-9.6.4/src/trcc/next/ui/gui/bus_bridge.py +0 -69
  442. trcc_linux-9.6.4/src/trcc/next/ui/gui/panels/__init__.py +0 -7
  443. trcc_linux-9.6.4/src/trcc/next/ui/gui/panels/device_panel.py +0 -85
  444. trcc_linux-9.6.4/src/trcc/next/ui/gui/panels/display_panel.py +0 -111
  445. trcc_linux-9.6.4/src/trcc/next/ui/gui/panels/led_panel.py +0 -122
  446. trcc_linux-9.6.4/src/trcc/services/__init__.py +0 -27
  447. trcc_linux-9.6.4/src/trcc/services/audio.py +0 -123
  448. trcc_linux-9.6.4/src/trcc/services/device.py +0 -358
  449. trcc_linux-9.6.4/src/trcc/services/display.py +0 -844
  450. trcc_linux-9.6.4/src/trcc/services/display_loops.py +0 -212
  451. trcc_linux-9.6.4/src/trcc/services/display_pipeline.py +0 -146
  452. trcc_linux-9.6.4/src/trcc/services/image.py +0 -242
  453. trcc_linux-9.6.4/src/trcc/services/lcd_config.py +0 -60
  454. trcc_linux-9.6.4/src/trcc/services/led.py +0 -492
  455. trcc_linux-9.6.4/src/trcc/services/led_config.py +0 -139
  456. trcc_linux-9.6.4/src/trcc/services/led_effects.py +0 -259
  457. trcc_linux-9.6.4/src/trcc/services/media.py +0 -238
  458. trcc_linux-9.6.4/src/trcc/services/metrics_loop.py +0 -195
  459. trcc_linux-9.6.4/src/trcc/services/overlay.py +0 -727
  460. trcc_linux-9.6.4/src/trcc/services/perf.py +0 -467
  461. trcc_linux-9.6.4/src/trcc/services/system.py +0 -183
  462. trcc_linux-9.6.4/src/trcc/services/theme.py +0 -671
  463. trcc_linux-9.6.4/src/trcc/services/theme_loader.py +0 -256
  464. trcc_linux-9.6.4/src/trcc/services/theme_persistence.py +0 -119
  465. trcc_linux-9.6.4/src/trcc/services/video_cache.py +0 -253
  466. trcc_linux-9.6.4/src/trcc/ui/__init__.py +0 -11
  467. trcc_linux-9.6.4/src/trcc/ui/api/__init__.py +0 -593
  468. trcc_linux-9.6.4/src/trcc/ui/api/control_center.py +0 -143
  469. trcc_linux-9.6.4/src/trcc/ui/api/devices.py +0 -189
  470. trcc_linux-9.6.4/src/trcc/ui/api/display.py +0 -579
  471. trcc_linux-9.6.4/src/trcc/ui/api/i18n.py +0 -45
  472. trcc_linux-9.6.4/src/trcc/ui/api/led.py +0 -158
  473. trcc_linux-9.6.4/src/trcc/ui/api/models.py +0 -157
  474. trcc_linux-9.6.4/src/trcc/ui/api/system.py +0 -129
  475. trcc_linux-9.6.4/src/trcc/ui/api/themes.py +0 -472
  476. trcc_linux-9.6.4/src/trcc/ui/api/trcc.py +0 -82
  477. trcc_linux-9.6.4/src/trcc/ui/cli/__init__.py +0 -1728
  478. trcc_linux-9.6.4/src/trcc/ui/cli/__main__.py +0 -8
  479. trcc_linux-9.6.4/src/trcc/ui/cli/_connect.py +0 -49
  480. trcc_linux-9.6.4/src/trcc/ui/cli/_control_center.py +0 -134
  481. trcc_linux-9.6.4/src/trcc/ui/cli/_device.py +0 -126
  482. trcc_linux-9.6.4/src/trcc/ui/cli/_diag.py +0 -17
  483. trcc_linux-9.6.4/src/trcc/ui/cli/_display.py +0 -488
  484. trcc_linux-9.6.4/src/trcc/ui/cli/_i18n.py +0 -42
  485. trcc_linux-9.6.4/src/trcc/ui/cli/_led.py +0 -276
  486. trcc_linux-9.6.4/src/trcc/ui/cli/_status.py +0 -140
  487. trcc_linux-9.6.4/src/trcc/ui/cli/_system.py +0 -261
  488. trcc_linux-9.6.4/src/trcc/ui/cli/_theme.py +0 -345
  489. trcc_linux-9.6.4/src/trcc/ui/gui/__init__.py +0 -158
  490. trcc_linux-9.6.4/src/trcc/ui/gui/assets.py +0 -230
  491. trcc_linux-9.6.4/src/trcc/ui/gui/base.py +0 -775
  492. trcc_linux-9.6.4/src/trcc/ui/gui/base_handler.py +0 -63
  493. trcc_linux-9.6.4/src/trcc/ui/gui/color_and_add_panels.py +0 -284
  494. trcc_linux-9.6.4/src/trcc/ui/gui/constants.py +0 -453
  495. trcc_linux-9.6.4/src/trcc/ui/gui/display_mode_panels.py +0 -699
  496. trcc_linux-9.6.4/src/trcc/ui/gui/eyedropper.py +0 -177
  497. trcc_linux-9.6.4/src/trcc/ui/gui/lcd_handler.py +0 -920
  498. trcc_linux-9.6.4/src/trcc/ui/gui/led_handler.py +0 -232
  499. trcc_linux-9.6.4/src/trcc/ui/gui/overlay_element.py +0 -220
  500. trcc_linux-9.6.4/src/trcc/ui/gui/overlay_grid.py +0 -312
  501. trcc_linux-9.6.4/src/trcc/ui/gui/pipewire_capture.py +0 -397
  502. trcc_linux-9.6.4/src/trcc/ui/gui/screen_capture.py +0 -313
  503. trcc_linux-9.6.4/src/trcc/ui/gui/splash.py +0 -190
  504. trcc_linux-9.6.4/src/trcc/ui/gui/trcc_app.py +0 -1938
  505. trcc_linux-9.6.4/src/trcc/ui/gui/uc_about.py +0 -535
  506. trcc_linux-9.6.4/src/trcc/ui/gui/uc_activity_sidebar.py +0 -194
  507. trcc_linux-9.6.4/src/trcc/ui/gui/uc_color_wheel.py +0 -259
  508. trcc_linux-9.6.4/src/trcc/ui/gui/uc_device.py +0 -393
  509. trcc_linux-9.6.4/src/trcc/ui/gui/uc_image_cut.py +0 -398
  510. trcc_linux-9.6.4/src/trcc/ui/gui/uc_info_module.py +0 -111
  511. trcc_linux-9.6.4/src/trcc/ui/gui/uc_led_control.py +0 -1390
  512. trcc_linux-9.6.4/src/trcc/ui/gui/uc_screen_led.py +0 -651
  513. trcc_linux-9.6.4/src/trcc/ui/gui/uc_sensor_picker.py +0 -277
  514. trcc_linux-9.6.4/src/trcc/ui/gui/uc_system_info.py +0 -566
  515. trcc_linux-9.6.4/src/trcc/ui/gui/uc_theme_local.py +0 -382
  516. trcc_linux-9.6.4/src/trcc/ui/gui/uc_theme_mask.py +0 -285
  517. trcc_linux-9.6.4/src/trcc/ui/gui/uc_theme_setting.py +0 -312
  518. trcc_linux-9.6.4/src/trcc/ui/gui/uc_theme_web.py +0 -306
  519. trcc_linux-9.6.4/src/trcc/ui/gui/uc_video_cut.py +0 -667
  520. trcc_linux-9.6.4/tests/README.md +0 -97
  521. trcc_linux-9.6.4/tests/__init__.py +0 -3
  522. trcc_linux-9.6.4/tests/adapters/__init__.py +0 -0
  523. trcc_linux-9.6.4/tests/adapters/device/__init__.py +0 -0
  524. trcc_linux-9.6.4/tests/adapters/device/bsd/__init__.py +0 -0
  525. trcc_linux-9.6.4/tests/adapters/device/bsd/test_detector.py +0 -31
  526. trcc_linux-9.6.4/tests/adapters/device/bsd/test_scsi.py +0 -206
  527. trcc_linux-9.6.4/tests/adapters/device/bsd/test_scsi_protocol.py +0 -175
  528. trcc_linux-9.6.4/tests/adapters/device/conftest.py +0 -73
  529. trcc_linux-9.6.4/tests/adapters/device/linux/__init__.py +0 -0
  530. trcc_linux-9.6.4/tests/adapters/device/linux/test_scsi.py +0 -297
  531. trcc_linux-9.6.4/tests/adapters/device/macos/__init__.py +0 -0
  532. trcc_linux-9.6.4/tests/adapters/device/macos/test_detector.py +0 -89
  533. trcc_linux-9.6.4/tests/adapters/device/macos/test_scsi.py +0 -71
  534. trcc_linux-9.6.4/tests/adapters/device/test_bulk.py +0 -849
  535. trcc_linux-9.6.4/tests/adapters/device/test_detector.py +0 -291
  536. trcc_linux-9.6.4/tests/adapters/device/test_factory.py +0 -999
  537. trcc_linux-9.6.4/tests/adapters/device/test_frame.py +0 -192
  538. trcc_linux-9.6.4/tests/adapters/device/test_implementations.py +0 -148
  539. trcc_linux-9.6.4/tests/adapters/device/test_led.py +0 -1566
  540. trcc_linux-9.6.4/tests/adapters/device/test_led_kvm.py +0 -316
  541. trcc_linux-9.6.4/tests/adapters/device/test_ly.py +0 -341
  542. trcc_linux-9.6.4/tests/adapters/device/test_scsi.py +0 -511
  543. trcc_linux-9.6.4/tests/adapters/device/windows/__init__.py +0 -0
  544. trcc_linux-9.6.4/tests/adapters/device/windows/test_detector.py +0 -270
  545. trcc_linux-9.6.4/tests/adapters/device/windows/test_scsi.py +0 -155
  546. trcc_linux-9.6.4/tests/adapters/infra/__init__.py +0 -0
  547. trcc_linux-9.6.4/tests/adapters/infra/test_data_repository.py +0 -895
  548. trcc_linux-9.6.4/tests/adapters/infra/test_dc_config.py +0 -591
  549. trcc_linux-9.6.4/tests/adapters/infra/test_dc_parser.py +0 -1839
  550. trcc_linux-9.6.4/tests/adapters/infra/test_dc_writer.py +0 -755
  551. trcc_linux-9.6.4/tests/adapters/infra/test_debug_report.py +0 -1333
  552. trcc_linux-9.6.4/tests/adapters/infra/test_media_player.py +0 -291
  553. trcc_linux-9.6.4/tests/adapters/infra/test_theme_cloud.py +0 -490
  554. trcc_linux-9.6.4/tests/adapters/infra/test_theme_downloader.py +0 -240
  555. trcc_linux-9.6.4/tests/adapters/system/__init__.py +0 -0
  556. trcc_linux-9.6.4/tests/adapters/system/bsd/__init__.py +0 -0
  557. trcc_linux-9.6.4/tests/adapters/system/bsd/test_hardware.py +0 -118
  558. trcc_linux-9.6.4/tests/adapters/system/bsd/test_platform.py +0 -41
  559. trcc_linux-9.6.4/tests/adapters/system/bsd/test_sensors.py +0 -118
  560. trcc_linux-9.6.4/tests/adapters/system/conftest.py +0 -400
  561. trcc_linux-9.6.4/tests/adapters/system/linux/__init__.py +0 -0
  562. trcc_linux-9.6.4/tests/adapters/system/linux/test_hardware.py +0 -601
  563. trcc_linux-9.6.4/tests/adapters/system/linux/test_platform.py +0 -50
  564. trcc_linux-9.6.4/tests/adapters/system/linux/test_sensors.py +0 -450
  565. trcc_linux-9.6.4/tests/adapters/system/macos/__init__.py +0 -0
  566. trcc_linux-9.6.4/tests/adapters/system/macos/test_hardware.py +0 -116
  567. trcc_linux-9.6.4/tests/adapters/system/macos/test_platform.py +0 -41
  568. trcc_linux-9.6.4/tests/adapters/system/macos/test_powermetrics_extra.py +0 -127
  569. trcc_linux-9.6.4/tests/adapters/system/macos/test_powermetrics_ipc.py +0 -139
  570. trcc_linux-9.6.4/tests/adapters/system/macos/test_powermetrics_plist.py +0 -64
  571. trcc_linux-9.6.4/tests/adapters/system/macos/test_sensors.py +0 -693
  572. trcc_linux-9.6.4/tests/adapters/system/test_config.py +0 -203
  573. trcc_linux-9.6.4/tests/adapters/system/windows/__init__.py +0 -0
  574. trcc_linux-9.6.4/tests/adapters/system/windows/test_hardware.py +0 -195
  575. trcc_linux-9.6.4/tests/adapters/system/windows/test_hwinfo_source.py +0 -281
  576. trcc_linux-9.6.4/tests/adapters/system/windows/test_platform.py +0 -42
  577. trcc_linux-9.6.4/tests/adapters/system/windows/test_sensors.py +0 -542
  578. trcc_linux-9.6.4/tests/api/__init__.py +0 -0
  579. trcc_linux-9.6.4/tests/api/conftest.py +0 -88
  580. trcc_linux-9.6.4/tests/api/test_api.py +0 -3108
  581. trcc_linux-9.6.4/tests/api/test_api_security.py +0 -222
  582. trcc_linux-9.6.4/tests/cli/__init__.py +0 -0
  583. trcc_linux-9.6.4/tests/cli/conftest.py +0 -322
  584. trcc_linux-9.6.4/tests/cli/test_cli.py +0 -821
  585. trcc_linux-9.6.4/tests/cli/test_device.py +0 -731
  586. trcc_linux-9.6.4/tests/cli/test_display.py +0 -724
  587. trcc_linux-9.6.4/tests/cli/test_led.py +0 -801
  588. trcc_linux-9.6.4/tests/cli/test_serve.py +0 -174
  589. trcc_linux-9.6.4/tests/cli/test_system.py +0 -2394
  590. trcc_linux-9.6.4/tests/cli/test_theme.py +0 -717
  591. trcc_linux-9.6.4/tests/conftest.py +0 -627
  592. trcc_linux-9.6.4/tests/core/__init__.py +0 -0
  593. trcc_linux-9.6.4/tests/core/test_builder.py +0 -271
  594. trcc_linux-9.6.4/tests/core/test_builder_routing.py +0 -212
  595. trcc_linux-9.6.4/tests/core/test_color.py +0 -195
  596. trcc_linux-9.6.4/tests/core/test_descriptors_ipc.py +0 -125
  597. trcc_linux-9.6.4/tests/core/test_device_isolation.py +0 -266
  598. trcc_linux-9.6.4/tests/core/test_encoding.py +0 -141
  599. trcc_linux-9.6.4/tests/core/test_geometry.py +0 -197
  600. trcc_linux-9.6.4/tests/core/test_i18n.py +0 -170
  601. trcc_linux-9.6.4/tests/core/test_io.py +0 -64
  602. trcc_linux-9.6.4/tests/core/test_lcd_device.py +0 -1091
  603. trcc_linux-9.6.4/tests/core/test_led_device.py +0 -587
  604. trcc_linux-9.6.4/tests/core/test_led_segment.py +0 -1524
  605. trcc_linux-9.6.4/tests/core/test_led_segment_ax120.py +0 -968
  606. trcc_linux-9.6.4/tests/core/test_models.py +0 -1050
  607. trcc_linux-9.6.4/tests/core/test_paths.py +0 -241
  608. trcc_linux-9.6.4/tests/core/test_perf.py +0 -119
  609. trcc_linux-9.6.4/tests/core/test_wire.py +0 -231
  610. trcc_linux-9.6.4/tests/fixtures/hwinfo/.gitkeep +0 -0
  611. trcc_linux-9.6.4/tests/gui/__init__.py +0 -0
  612. trcc_linux-9.6.4/tests/gui/conftest.py +0 -312
  613. trcc_linux-9.6.4/tests/gui/test_base.py +0 -255
  614. trcc_linux-9.6.4/tests/gui/test_base_panel.py +0 -186
  615. trcc_linux-9.6.4/tests/gui/test_constants.py +0 -147
  616. trcc_linux-9.6.4/tests/gui/test_lcd_handler.py +0 -880
  617. trcc_linux-9.6.4/tests/gui/test_led_control.py +0 -895
  618. trcc_linux-9.6.4/tests/gui/test_misc.py +0 -1188
  619. trcc_linux-9.6.4/tests/gui/test_preview.py +0 -1009
  620. trcc_linux-9.6.4/tests/gui/test_screen_capture.py +0 -149
  621. trcc_linux-9.6.4/tests/gui/test_theme_mask.py +0 -341
  622. trcc_linux-9.6.4/tests/gui/test_theme_setting.py +0 -1257
  623. trcc_linux-9.6.4/tests/gui/test_trcc_app.py +0 -1763
  624. trcc_linux-9.6.4/tests/gui/test_widgets.py +0 -613
  625. trcc_linux-9.6.4/tests/mock_platform.py +0 -361
  626. trcc_linux-9.6.4/tests/next/conftest.py +0 -282
  627. trcc_linux-9.6.4/tests/next/test_autostart.py +0 -85
  628. trcc_linux-9.6.4/tests/next/test_commands.py +0 -58
  629. trcc_linux-9.6.4/tests/next/test_dc_reader.py +0 -145
  630. trcc_linux-9.6.4/tests/next/test_sensors.py +0 -109
  631. trcc_linux-9.6.4/tests/next/test_theme_service.py +0 -136
  632. trcc_linux-9.6.4/tests/next/test_transports.py +0 -109
  633. trcc_linux-9.6.4/tests/next/test_udev.py +0 -99
  634. trcc_linux-9.6.4/tests/noop_transports.py +0 -228
  635. trcc_linux-9.6.4/tests/services/__init__.py +0 -0
  636. trcc_linux-9.6.4/tests/services/conftest.py +0 -49
  637. trcc_linux-9.6.4/tests/services/test_device.py +0 -421
  638. trcc_linux-9.6.4/tests/services/test_display_integration.py +0 -1082
  639. trcc_linux-9.6.4/tests/services/test_image_ansi.py +0 -274
  640. trcc_linux-9.6.4/tests/services/test_led.py +0 -1307
  641. trcc_linux-9.6.4/tests/services/test_led_config.py +0 -254
  642. trcc_linux-9.6.4/tests/services/test_led_effects.py +0 -505
  643. trcc_linux-9.6.4/tests/services/test_media.py +0 -379
  644. trcc_linux-9.6.4/tests/services/test_overlay.py +0 -694
  645. trcc_linux-9.6.4/tests/services/test_perf.py +0 -273
  646. trcc_linux-9.6.4/tests/services/test_services.py +0 -896
  647. trcc_linux-9.6.4/tests/services/test_system.py +0 -432
  648. trcc_linux-9.6.4/tests/services/test_theme.py +0 -1570
  649. trcc_linux-9.6.4/tests/services/test_theme_loader.py +0 -278
  650. trcc_linux-9.6.4/tests/services/test_theme_persistence.py +0 -457
  651. trcc_linux-9.6.4/tests/services/test_video_cache.py +0 -242
  652. trcc_linux-9.6.4/tests/test_all_devices.py +0 -206
  653. trcc_linux-9.6.4/tests/test_architecture.py +0 -428
  654. trcc_linux-9.6.4/tests/test_conf.py +0 -584
  655. trcc_linux-9.6.4/tests/test_cpu.py +0 -413
  656. trcc_linux-9.6.4/tests/test_integration.py +0 -411
  657. trcc_linux-9.6.4/tests/test_memory.py +0 -744
  658. trcc_linux-9.6.4/tests/test_wiring.py +0 -259
  659. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/LICENSE +0 -0
  660. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/README.md +0 -0
  661. {trcc_linux-9.6.4/src/trcc/next → trcc_linux-9.7.0/src/trcc}/adapters/__init__.py +0 -0
  662. {trcc_linux-9.6.4/src/trcc/next → trcc_linux-9.7.0/src/trcc}/adapters/device/usb_bot_scsi.py +0 -0
  663. {trcc_linux-9.6.4/src/trcc/next → trcc_linux-9.7.0/src/trcc}/adapters/render/__init__.py +0 -0
  664. {trcc_linux-9.6.4/src/trcc/next → trcc_linux-9.7.0/src/trcc}/adapters/sensors/__init__.py +0 -0
  665. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/LibreHardwareMonitor.config +0 -0
  666. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/com.github.lexonight1.trcc.policy +0 -0
  667. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/fonts/MSYH.TTC +0 -0
  668. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/fonts/MSYHBD.TTC +0 -0
  669. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/fonts/README.md +0 -0
  670. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/icons/app.ico +0 -0
  671. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/icons/trcc.png +0 -0
  672. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/icons/trcc_128x128.png +0 -0
  673. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/icons/trcc_16x16.png +0 -0
  674. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/icons/trcc_24x24.png +0 -0
  675. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/icons/trcc_256x256.png +0 -0
  676. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/icons/trcc_32x32.png +0 -0
  677. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/icons/trcc_48x48.png +0 -0
  678. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/icons/trcc_64x64.png +0 -0
  679. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/trcc-linux.desktop +0 -0
  680. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/trcc-quirk-fix.service +0 -0
  681. {trcc_linux-9.6.4/src/trcc/next → trcc_linux-9.7.0/src/trcc}/core/__init__.py +0 -0
  682. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/data/trcc_usb.te +0 -0
  683. {trcc_linux-9.6.4/src/trcc/next → trcc_linux-9.7.0/src/trcc}/services/__init__.py +0 -0
  684. {trcc_linux-9.6.4/src/trcc/next → trcc_linux-9.7.0/src/trcc}/ui/__init__.py +0 -0
  685. {trcc_linux-9.6.4/src/trcc/next → trcc_linux-9.7.0/src/trcc}/ui/api/__init__.py +0 -0
  686. {trcc_linux-9.6.4/src/trcc/next → trcc_linux-9.7.0/src/trcc}/ui/cli/__init__.py +0 -0
  687. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/240240.gif +0 -0
  688. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/240320.gif +0 -0
  689. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/320240.gif +0 -0
  690. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/320320.gif +0 -0
  691. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AK120 Digital.png +0 -0
  692. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AK120 Digitala.png +0 -0
  693. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AK120_Digital.png +0 -0
  694. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AK120_Digitala.png +0 -0
  695. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AS120 VISION.png +0 -0
  696. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AS120 VISIONa.png +0 -0
  697. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AS120_VISION.png +0 -0
  698. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AS120_VISIONa.png +0 -0
  699. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AX120 DIGITAL.png +0 -0
  700. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AX120 DIGITALa.png +0 -0
  701. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AX120_DIGITAL.png +0 -0
  702. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AX120_DIGITALa.png +0 -0
  703. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1BA120 VISION.png +0 -0
  704. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1BA120 VISIONa.png +0 -0
  705. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1BA120_VISION.png +0 -0
  706. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1BA120_VISIONa.png +0 -0
  707. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1CORE VISION.png +0 -0
  708. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1CORE VISIONa.png +0 -0
  709. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1CORE_VISION.png +0 -0
  710. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1CORE_VISIONa.png +0 -0
  711. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1CZ1.png +0 -0
  712. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1CZ1a.png +0 -0
  713. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1CZ2.png +0 -0
  714. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1CZ2a.png +0 -0
  715. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1CZTV.png +0 -0
  716. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1CZTVa.png +0 -0
  717. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1ELITE VISION.png +0 -0
  718. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1ELITE VISIONa.png +0 -0
  719. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1ELITE_VISION.png +0 -0
  720. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1ELITE_VISIONa.png +0 -0
  721. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN HORIZON PRO.png +0 -0
  722. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN HORIZON PROa.png +0 -0
  723. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN MAGIC PRO.png +0 -0
  724. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN MAGIC PROa.png +0 -0
  725. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN VISION V2.png +0 -0
  726. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN VISION V2a.png +0 -0
  727. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN WARFRAME PRO.png +0 -0
  728. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN WARFRAME PROa.png +0 -0
  729. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN WARFRAME SE.png +0 -0
  730. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN WARFRAME SEa.png +0 -0
  731. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN WARFRAME.png +0 -0
  732. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN WARFRAMEa.png +0 -0
  733. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_HORIZON_PRO.png +0 -0
  734. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_HORIZON_PROa.png +0 -0
  735. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_MAGIC_PRO.png +0 -0
  736. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_MAGIC_PROa.png +0 -0
  737. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_VISION_V2.png +0 -0
  738. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_VISION_V2a.png +0 -0
  739. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAME.png +0 -0
  740. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAME_PRO.png +0 -0
  741. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAME_PROa.png +0 -0
  742. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAME_SE.png +0 -0
  743. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAME_SEa.png +0 -0
  744. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAMEa.png +0 -0
  745. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1GRAND VISION.png +0 -0
  746. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1GRAND VISIONa.png +0 -0
  747. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1GRAND_VISION.png +0 -0
  748. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1GRAND_VISIONa.png +0 -0
  749. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1HR10 2280 PRO DIGITAL.png +0 -0
  750. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1HR10 2280 PRO DIGITALa.png +0 -0
  751. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1HYPER VISION.png +0 -0
  752. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1HYPER VISIONa.png +0 -0
  753. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1HYPER_VISION.png +0 -0
  754. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1HYPER_VISIONa.png +0 -0
  755. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1KVMALEDC6.png +0 -0
  756. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1KVMALEDC6a.png +0 -0
  757. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC1.png +0 -0
  758. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC1a.png +0 -0
  759. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC2.png +0 -0
  760. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC2JD.png +0 -0
  761. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC2JDa.png +0 -0
  762. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC2a.png +0 -0
  763. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC3.png +0 -0
  764. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC3a.png +0 -0
  765. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC5.png +0 -0
  766. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC5a.png +0 -0
  767. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC7.png +0 -0
  768. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC7a.png +0 -0
  769. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC8.png +0 -0
  770. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC8a.png +0 -0
  771. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC9.png +0 -0
  772. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC9a.png +0 -0
  773. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LD10.png +0 -0
  774. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LD10a.png +0 -0
  775. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LD6.png +0 -0
  776. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LD6a.png +0 -0
  777. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LD7.png +0 -0
  778. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LD7a.png +0 -0
  779. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LD8.png +0 -0
  780. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LD8a.png +0 -0
  781. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LD9.png +0 -0
  782. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LD9a.png +0 -0
  783. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF10.png +0 -0
  784. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF10V.png +0 -0
  785. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF10Va.png +0 -0
  786. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF10a.png +0 -0
  787. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF11.png +0 -0
  788. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF11a.png +0 -0
  789. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF12.png +0 -0
  790. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF12a.png +0 -0
  791. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF13.png +0 -0
  792. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF13a.png +0 -0
  793. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF14.png +0 -0
  794. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF14a.png +0 -0
  795. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF15.png +0 -0
  796. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF15a.png +0 -0
  797. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF16.png +0 -0
  798. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF167.png +0 -0
  799. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF16a.png +0 -0
  800. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF17a.png +0 -0
  801. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF18.png +0 -0
  802. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF18a.png +0 -0
  803. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF19.png +0 -0
  804. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF19a.png +0 -0
  805. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF20.png +0 -0
  806. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF20a.png +0 -0
  807. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF21.png +0 -0
  808. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF21a.png +0 -0
  809. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF22.png +0 -0
  810. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF22a.png +0 -0
  811. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF25.png +0 -0
  812. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF25a.png +0 -0
  813. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF8.png +0 -0
  814. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF8a.png +0 -0
  815. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM16SE.png +0 -0
  816. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM16SEa.png +0 -0
  817. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM19SE.png +0 -0
  818. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM19SEa.png +0 -0
  819. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM22.png +0 -0
  820. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM22a.png +0 -0
  821. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM24.png +0 -0
  822. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM24a.png +0 -0
  823. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM26.png +0 -0
  824. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM26a.png +0 -0
  825. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM27.png +0 -0
  826. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM27a.png +0 -0
  827. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM30.png +0 -0
  828. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM30a.png +0 -0
  829. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Mjolnir VISION PRO.png +0 -0
  830. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Mjolnir VISION PROa.png +0 -0
  831. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Mjolnir VISION.png +0 -0
  832. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Mjolnir VISIONa.png +0 -0
  833. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Mjolnir_VISION.png +0 -0
  834. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Mjolnir_VISION_PRO.png +0 -0
  835. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Mjolnir_VISION_PROa.png +0 -0
  836. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Mjolnir_VISIONa.png +0 -0
  837. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1PA120 DIGITAL.png +0 -0
  838. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1PA120 DIGITALa.png +0 -0
  839. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1PA120_DIGITAL.png +0 -0
  840. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1PA120_DIGITALa.png +0 -0
  841. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1PC1.png +0 -0
  842. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1PC1a.png +0 -0
  843. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1RK120 DIGITAL.png +0 -0
  844. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1RK120 DIGITALa.png +0 -0
  845. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1RK120_DIGITAL.png +0 -0
  846. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1RK120_DIGITALa.png +0 -0
  847. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1RP130 VISION.png +0 -0
  848. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1RP130 VISIONa.png +0 -0
  849. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1RP130_VISION.png +0 -0
  850. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1RP130_VISIONa.png +0 -0
  851. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Stream Vision.png +0 -0
  852. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Stream Visiona.png +0 -0
  853. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Stream_Vision.png +0 -0
  854. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Stream_Visiona.png +0 -0
  855. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/about_dropdown.png +0 -0
  856. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/about_dropdown_bg.png +0 -0
  857. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/about_dropdown_select.png +0 -0
  858. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/about_update.png +0 -0
  859. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/about_update_overlay.png +0 -0
  860. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_about_bg.png +0 -0
  861. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_brightness_0.png +0 -0
  862. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_brightness_1.png +0 -0
  863. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_brightness_2.png +0 -0
  864. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_brightness_3.png +0 -0
  865. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_export.png +0 -0
  866. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_form_bg.png +0 -0
  867. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_help.png +0 -0
  868. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_import.png +0 -0
  869. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_main_bg.png +0 -0
  870. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_power.png +0 -0
  871. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_power_hover.png +0 -0
  872. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_save.png +0 -0
  873. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_sysinfo_bg.png +0 -0
  874. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_tab_cloud.png +0 -0
  875. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_tab_cloud_active.png +0 -0
  876. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_tab_local.png +0 -0
  877. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_tab_local_active.png +0 -0
  878. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_tab_mask.png +0 -0
  879. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_tab_mask_active.png +0 -0
  880. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_tab_mask_lower.png +0 -0
  881. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_tab_settings.png +0 -0
  882. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_tab_settings_active.png +0 -0
  883. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_theme_base_bg.png +0 -0
  884. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_theme_gallery_bg.png +0 -0
  885. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_theme_settings_bg.png +0 -0
  886. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/carousel_1.png +0 -0
  887. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/carousel_2.png +0 -0
  888. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/carousel_3.png +0 -0
  889. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/carousel_4.png +0 -0
  890. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/carousel_5.png +0 -0
  891. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/carousel_6.png +0 -0
  892. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/carousel_btn.png +0 -0
  893. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/carousel_btn_active.png +0 -0
  894. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/carousel_select_frame.png +0 -0
  895. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/color_panel_eyedropper.png +0 -0
  896. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/color_panel_picker.png +0 -0
  897. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/color_panel_selector_ring.png +0 -0
  898. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/color_panel_slider_thumb.png +0 -0
  899. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/color_wheel_knob.png +0 -0
  900. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/color_wheel_knob_0.png +0 -0
  901. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/color_wheel_toggle_hover.png +0 -0
  902. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/color_wheel_toggle_off.png +0 -0
  903. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/color_wheel_toggle_on.png +0 -0
  904. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_12h.png +0 -0
  905. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_24h.png +0 -0
  906. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_border.png +0 -0
  907. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_border_active.png +0 -0
  908. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_crop.png +0 -0
  909. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_date_dm.png +0 -0
  910. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_date_dmy.png +0 -0
  911. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_date_md.png +0 -0
  912. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_date_ymd.png +0 -0
  913. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_digit_font.png +0 -0
  914. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_fit_height.png +0 -0
  915. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_fit_width.png +0 -0
  916. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_function.png +0 -0
  917. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_function_active.png +0 -0
  918. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_icon.png +0 -0
  919. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_icon_gif.png +0 -0
  920. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_icon_image.png +0 -0
  921. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_icon_livestream.png +0 -0
  922. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_icon_mask.png +0 -0
  923. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_icon_network.png +0 -0
  924. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_icon_video.png +0 -0
  925. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m1.png +0 -0
  926. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m1_active.png +0 -0
  927. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m2.png +0 -0
  928. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m2_active.png +0 -0
  929. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m3.png +0 -0
  930. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m3_active.png +0 -0
  931. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m4.png +0 -0
  932. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m4_active.png +0 -0
  933. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m5.png +0 -0
  934. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m5_active.png +0 -0
  935. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m6.png +0 -0
  936. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m6_active.png +0 -0
  937. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_minus.png +0 -0
  938. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_network_btn.png +0 -0
  939. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_plus.png +0 -0
  940. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_rotate.png +0 -0
  941. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_slider_thumb.png +0 -0
  942. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_text_font.png +0 -0
  943. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_unit_c.png +0 -0
  944. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_unit_f.png +0 -0
  945. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/frozen_warframe_ultra.png +0 -0
  946. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/frozen_warframe_ultra_active.png +0 -0
  947. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_110x480.png +0 -0
  948. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_116x480.png +0 -0
  949. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_1280x480.png +0 -0
  950. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_160x480.png +0 -0
  951. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_180x400.png +0 -0
  952. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_180x480.png +0 -0
  953. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_240x240.png +0 -0
  954. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_240x320.png +0 -0
  955. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_240x400.png +0 -0
  956. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_240x427.png +0 -0
  957. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_270x480.png +0 -0
  958. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_320x240.png +0 -0
  959. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_320x320.png +0 -0
  960. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_320x86.png +0 -0
  961. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_360x360.png +0 -0
  962. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_400x180.png +0 -0
  963. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_400x240.png +0 -0
  964. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_427x240.png +0 -0
  965. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_480x110.png +0 -0
  966. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_480x116.png +0 -0
  967. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_480x160.png +0 -0
  968. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_480x180.png +0 -0
  969. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_480x270.png +0 -0
  970. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_480x480.png +0 -0
  971. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_86x320.png +0 -0
  972. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_aggregate.png +0 -0
  973. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_aggregate_active.png +0 -0
  974. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_cz1.png +0 -0
  975. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_kvma.png +0 -0
  976. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_lc1.png +0 -0
  977. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_lc2.png +0 -0
  978. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_lf10.png +0 -0
  979. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_lf11.png +0 -0
  980. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_lf12.png +0 -0
  981. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_lf13.png +0 -0
  982. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_lf15.png +0 -0
  983. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_lf8.png +0 -0
  984. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_rgb_lf13.png +0 -0
  985. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_segment.png +0 -0
  986. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_segment_4zone.png +0 -0
  987. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_dropdown.png +0 -0
  988. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_dropdown_2.png +0 -0
  989. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_dropdown_highlight.png +0 -0
  990. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_dropdown_highlight_2.png +0 -0
  991. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_dropdown_menu.png +0 -0
  992. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_dropdown_menu_2.png +0 -0
  993. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_external.png +0 -0
  994. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_external_active.png +0 -0
  995. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_helmet_1.png +0 -0
  996. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_helmet_2.png +0 -0
  997. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_helmet_3.png +0 -0
  998. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_helmet_4.png +0 -0
  999. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_helmet_5.png +0 -0
  1000. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bar_1.png +0 -0
  1001. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bar_2.png +0 -0
  1002. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bar_3.png +0 -0
  1003. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bar_4.png +0 -0
  1004. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bar_5.png +0 -0
  1005. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bar_6.png +0 -0
  1006. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bg_1.png +0 -0
  1007. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bg_2.png +0 -0
  1008. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bg_3.png +0 -0
  1009. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bg_4.png +0 -0
  1010. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bg_5.png +0 -0
  1011. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bg_5_active.png +0 -0
  1012. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bg_6.png +0 -0
  1013. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_1.png +0 -0
  1014. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_10.png +0 -0
  1015. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_10_active.png +0 -0
  1016. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_11.png +0 -0
  1017. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_11_active.png +0 -0
  1018. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_12.png +0 -0
  1019. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_12_active.png +0 -0
  1020. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_1_active.png +0 -0
  1021. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_2.png +0 -0
  1022. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_2_active.png +0 -0
  1023. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_3.png +0 -0
  1024. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_3_active.png +0 -0
  1025. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_4.png +0 -0
  1026. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_4_active.png +0 -0
  1027. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_5.png +0 -0
  1028. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_5_active.png +0 -0
  1029. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_6.png +0 -0
  1030. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_6_active.png +0 -0
  1031. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_7.png +0 -0
  1032. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_7_active.png +0 -0
  1033. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_8.png +0 -0
  1034. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_8_active.png +0 -0
  1035. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_9.png +0 -0
  1036. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_9_active.png +0 -0
  1037. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_power.png +0 -0
  1038. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_power_active.png +0 -0
  1039. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preset_blue.png +0 -0
  1040. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preset_cyan.png +0 -0
  1041. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preset_green.png +0 -0
  1042. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preset_orange.png +0 -0
  1043. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preset_purple.png +0 -0
  1044. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preset_red.png +0 -0
  1045. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preset_white.png +0 -0
  1046. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preset_yellow.png +0 -0
  1047. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_ak120.png +0 -0
  1048. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_ax120.png +0 -0
  1049. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_cz1.png +0 -0
  1050. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_frozen_horizon_pro.png +0 -0
  1051. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_frozen_magic_pro.png +0 -0
  1052. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_lc1.png +0 -0
  1053. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_lc2.png +0 -0
  1054. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_lf10.png +0 -0
  1055. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_lf11.png +0 -0
  1056. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_lf12.png +0 -0
  1057. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_lf13.png +0 -0
  1058. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_lf15.png +0 -0
  1059. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_lf8.png +0 -0
  1060. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_pa120.png +0 -0
  1061. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_pa120_space.png +0 -0
  1062. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_show_1.png +0 -0
  1063. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_show_1_active.png +0 -0
  1064. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_show_2.png +0 -0
  1065. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_show_2_active.png +0 -0
  1066. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_show_3.png +0 -0
  1067. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_show_3_active.png +0 -0
  1068. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_slider_thumb.png +0 -0
  1069. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_btn_1.png +0 -0
  1070. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_btn_1_active.png +0 -0
  1071. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_btn_2.png +0 -0
  1072. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_btn_2_active.png +0 -0
  1073. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_btn_3.png +0 -0
  1074. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_btn_3_active.png +0 -0
  1075. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_btn_4.png +0 -0
  1076. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_btn_4_active.png +0 -0
  1077. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_1.png +0 -0
  1078. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_1_active.png +0 -0
  1079. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_2.png +0 -0
  1080. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_2_active.png +0 -0
  1081. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_3.png +0 -0
  1082. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_3_active.png +0 -0
  1083. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_4.png +0 -0
  1084. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_4_active.png +0 -0
  1085. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_5.png +0 -0
  1086. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_5_active.png +0 -0
  1087. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_6.png +0 -0
  1088. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_6_active.png +0 -0
  1089. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_sysinfo.png +0 -0
  1090. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_sysinfo_1_en.png +0 -0
  1091. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_sysinfo_1_tc.png +0 -0
  1092. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_sysinfo_en.png +0 -0
  1093. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_sysinfo_tc.png +0 -0
  1094. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_text.png +0 -0
  1095. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_text_en.png +0 -0
  1096. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_text_tc.png +0 -0
  1097. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_time.png +0 -0
  1098. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_time_en.png +0 -0
  1099. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_time_tc.png +0 -0
  1100. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_mode_date.png +0 -0
  1101. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_mode_hardware.png +0 -0
  1102. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_mode_text.png +0 -0
  1103. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_mode_time.png +0 -0
  1104. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_mode_weekday.png +0 -0
  1105. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_select.png +0 -0
  1106. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_110x480.png +0 -0
  1107. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_116x480.png +0 -0
  1108. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_160x480.png +0 -0
  1109. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_180x400.png +0 -0
  1110. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_180x480.png +0 -0
  1111. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_240x240.png +0 -0
  1112. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_240x320.png +0 -0
  1113. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_240x400.png +0 -0
  1114. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_240x427.png +0 -0
  1115. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_270x480.png +0 -0
  1116. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_320x240.png +0 -0
  1117. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_320x320.png +0 -0
  1118. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_320x320_round.png +0 -0
  1119. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_320x86.png +0 -0
  1120. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_360x360_round.png +0 -0
  1121. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_400x180.png +0 -0
  1122. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_400x240.png +0 -0
  1123. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_427x240.png +0 -0
  1124. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_480x110.png +0 -0
  1125. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_480x116.png +0 -0
  1126. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_480x160.png +0 -0
  1127. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_480x180.png +0 -0
  1128. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_480x270.png +0 -0
  1129. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_480x480.png +0 -0
  1130. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_480x480_round.png +0 -0
  1131. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_86x320.png +0 -0
  1132. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_animation.png +0 -0
  1133. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_btn.png +0 -0
  1134. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_btn_active.png +0 -0
  1135. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_pause.png +0 -0
  1136. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_play.png +0 -0
  1137. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_player_control_bg.png +0 -0
  1138. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_1280x480.png +0 -0
  1139. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_1920x440.png +0 -0
  1140. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_1920x462.png +0 -0
  1141. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_320x960.png +0 -0
  1142. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_360x800.png +0 -0
  1143. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_440x1920.png +0 -0
  1144. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_462x1920.png +0 -0
  1145. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_480x1280.png +0 -0
  1146. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_480x800.png +0 -0
  1147. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_480x854.png +0 -0
  1148. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_540x960.png +0 -0
  1149. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_800x360.png +0 -0
  1150. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_800x480.png +0 -0
  1151. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_854x480.png +0 -0
  1152. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_960x320.png +0 -0
  1153. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_960x540.png +0 -0
  1154. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_res_240x240.png +0 -0
  1155. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_res_240x320.png +0 -0
  1156. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_res_320x240.png +0 -0
  1157. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_res_320x320.png +0 -0
  1158. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_round_mask_320x320.png +0 -0
  1159. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_round_mask_360x360.png +0 -0
  1160. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_round_mask_480x480.png +0 -0
  1161. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_video_controls_bg.png +0 -0
  1162. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_video_controls_bg_alt.png +0 -0
  1163. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/screen_led_deco_1.png +0 -0
  1164. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/screen_led_deco_2.png +0 -0
  1165. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/screen_led_deco_3.png +0 -0
  1166. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/screen_led_deco_4.png +0 -0
  1167. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/screen_led_deco_cz1.png +0 -0
  1168. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/secondary_screen_bg.png +0 -0
  1169. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/secondary_screen_bg_d.png +0 -0
  1170. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/secondary_screen_bg_e.png +0 -0
  1171. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/secondary_screen_bg_en.png +0 -0
  1172. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/secondary_screen_bg_f.png +0 -0
  1173. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/secondary_screen_bg_h.png +0 -0
  1174. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/secondary_screen_bg_p.png +0 -0
  1175. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/secondary_screen_bg_r.png +0 -0
  1176. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/secondary_screen_bg_tc.png +0 -0
  1177. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/secondary_screen_bg_x.png +0 -0
  1178. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_content.png +0 -0
  1179. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_content_btn.png +0 -0
  1180. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_content_mask.png +0 -0
  1181. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_date.png +0 -0
  1182. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_date_1.png +0 -0
  1183. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_icon.png +0 -0
  1184. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_link_1.png +0 -0
  1185. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_text.png +0 -0
  1186. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_text_1.png +0 -0
  1187. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_time.png +0 -0
  1188. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_time_1.png +0 -0
  1189. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_weekday.png +0 -0
  1190. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_weekday_1.png +0 -0
  1191. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_anim_sync.png +0 -0
  1192. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_background.png +0 -0
  1193. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_brightness.png +0 -0
  1194. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_keyboard_sync_1.png +0 -0
  1195. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_keyboard_sync_2.png +0 -0
  1196. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_keyboard_sync_3.png +0 -0
  1197. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_module.png +0 -0
  1198. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_overlay.png +0 -0
  1199. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_overlay_add_bg.png +0 -0
  1200. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_overlay_color_bg.png +0 -0
  1201. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_overlay_grid_bg.png +0 -0
  1202. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_overlay_table_bg.png +0 -0
  1203. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_params.png +0 -0
  1204. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_brightness_bar.png +0 -0
  1205. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_checkbox_off.png +0 -0
  1206. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_checkbox_on.png +0 -0
  1207. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_clip_a.png +0 -0
  1208. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_clip_b.png +0 -0
  1209. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_close.png +0 -0
  1210. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_close_2.png +0 -0
  1211. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_dropdown.png +0 -0
  1212. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_dropdown_bg_2x.png +0 -0
  1213. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_dropdown_bg_4x.png +0 -0
  1214. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_dropdown_highlight.png +0 -0
  1215. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_loading_animation.png +0 -0
  1216. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_progress_bar.png +0 -0
  1217. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_round_close.png +0 -0
  1218. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_round_confirm.png +0 -0
  1219. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_scrollbar_bg.png +0 -0
  1220. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_scrollbar_thumb.png +0 -0
  1221. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_shortcut_size_slider.png +0 -0
  1222. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_thread_multi.png +0 -0
  1223. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_thread_single.png +0 -0
  1224. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_toggle_off.png +0 -0
  1225. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_toggle_on.png +0 -0
  1226. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shortcuts_panel.png +0 -0
  1227. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shortcuts_panel_d.png +0 -0
  1228. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shortcuts_panel_e.png +0 -0
  1229. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shortcuts_panel_en.png +0 -0
  1230. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shortcuts_panel_f.png +0 -0
  1231. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shortcuts_panel_p.png +0 -0
  1232. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shortcuts_panel_r.png +0 -0
  1233. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shortcuts_panel_tc.png +0 -0
  1234. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shortcuts_panel_x.png +0 -0
  1235. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sidebar_about.png +0 -0
  1236. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sidebar_about_active.png +0 -0
  1237. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sidebar_about_bg.png +0 -0
  1238. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sidebar_bg.png +0 -0
  1239. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sidebar_no_device.png +0 -0
  1240. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sidebar_sensor.png +0 -0
  1241. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sidebar_sensor_active.png +0 -0
  1242. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sidebar_splash.png +0 -0
  1243. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sidebar_sysinfo_bg.png +0 -0
  1244. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_a.png +0 -0
  1245. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_a_180.png +0 -0
  1246. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_a_270.png +0 -0
  1247. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_a_90.png +0 -0
  1248. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_b.png +0 -0
  1249. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_b_180.png +0 -0
  1250. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_b_270.png +0 -0
  1251. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_b_90.png +0 -0
  1252. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_c.png +0 -0
  1253. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_c_180.png +0 -0
  1254. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_c_270.png +0 -0
  1255. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_c_90.png +0 -0
  1256. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_add_group.png +0 -0
  1257. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_cpu.png +0 -0
  1258. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_custom.png +0 -0
  1259. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_dram.png +0 -0
  1260. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_fan.png +0 -0
  1261. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_gpu.png +0 -0
  1262. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_hdd.png +0 -0
  1263. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_net.png +0 -0
  1264. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_next_page.png +0 -0
  1265. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_prev_page.png +0 -0
  1266. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_scrollbar.png +0 -0
  1267. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_select.png +0 -0
  1268. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_browser_filter.png +0 -0
  1269. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_browser_filter_active.png +0 -0
  1270. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_cloud_label.png +0 -0
  1271. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_cloud_label_d.png +0 -0
  1272. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_cloud_label_e.png +0 -0
  1273. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_cloud_label_en.png +0 -0
  1274. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_cloud_label_f.png +0 -0
  1275. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_cloud_label_h.png +0 -0
  1276. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_cloud_label_p.png +0 -0
  1277. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_cloud_label_r.png +0 -0
  1278. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_cloud_label_tc.png +0 -0
  1279. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_cloud_label_x.png +0 -0
  1280. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_local_carousel.png +0 -0
  1281. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_local_carousel_active.png +0 -0
  1282. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_local_export_all.png +0 -0
  1283. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_local_multi_select.png +0 -0
  1284. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_local_multi_select_active.png +0 -0
  1285. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_local_select_frame.png +0 -0
  1286. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_local_select_frame_active.png +0 -0
  1287. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_mask_label.png +0 -0
  1288. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_110x480.png +0 -0
  1289. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_116x480.png +0 -0
  1290. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_1280x480.png +0 -0
  1291. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_160x480.png +0 -0
  1292. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_180x400.png +0 -0
  1293. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_180x480.png +0 -0
  1294. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_240x240.png +0 -0
  1295. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_240x320.png +0 -0
  1296. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_240x400.png +0 -0
  1297. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_240x427.png +0 -0
  1298. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_270x480.png +0 -0
  1299. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_320x240.png +0 -0
  1300. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_320x320.png +0 -0
  1301. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_320x86.png +0 -0
  1302. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_360x360.png +0 -0
  1303. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_400x180.png +0 -0
  1304. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_400x240.png +0 -0
  1305. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_427x240.png +0 -0
  1306. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_480x110.png +0 -0
  1307. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_480x116.png +0 -0
  1308. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_480x160.png +0 -0
  1309. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_480x180.png +0 -0
  1310. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_480x270.png +0 -0
  1311. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_480x480.png +0 -0
  1312. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_86x320.png +0 -0
  1313. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_bg.png +0 -0
  1314. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_bg_alt.png +0 -0
  1315. {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/uc_preview.py +0 -0
  1316. {trcc_linux-9.6.4/tests/next → trcc_linux-9.7.0/tests}/__init__.py +0 -0
@@ -0,0 +1,121 @@
1
+ # Python
2
+ __pycache__/
3
+ *.pyc
4
+ *.pyo
5
+ *.pyd
6
+ .Python
7
+ .pytest_cache/
8
+ .mypy_cache/
9
+ .ruff_cache/
10
+ .coverage
11
+ htmlcov/
12
+
13
+ # Build artifacts
14
+ dist/
15
+ build/
16
+ *.egg-info/
17
+
18
+ # Virtual environment
19
+ .venv/
20
+ env/
21
+ ENV/
22
+
23
+ # IDE
24
+ .vscode/
25
+ .idea/
26
+ *.swp
27
+ *.swo
28
+ *~
29
+ *.code-workspace
30
+ pyrightconfig_strict.json
31
+
32
+ # AI tooling
33
+ CLAUDE.md
34
+ .claude/
35
+
36
+ # OS
37
+ .DS_Store
38
+ Thumbs.db
39
+
40
+ # Image editor project files
41
+ *.xcf
42
+
43
+ # FFmpeg temp
44
+ .video_temp/
45
+
46
+ # Logs
47
+ *.log
48
+
49
+ # ──────────────────────────────────────────────
50
+ # Theme & Web archives: .7z files ARE tracked.
51
+ # Extracted dirs are regenerated at runtime via on-demand download.
52
+ # ──────────────────────────────────────────────
53
+
54
+ # Extracted theme dirs (from theme*.7z archives)
55
+ src/trcc/data/theme*/Theme[1-5]/
56
+ src/trcc/data/theme*/Custom_*/
57
+ src/trcc/data/theme*/[0-9]*/
58
+ src/trcc/data/theme*/Theme.zt
59
+ src/trcc/data/theme*/Theme.dc
60
+ src/trcc/data/theme*/01.png
61
+
62
+ # Extracted Web dirs (from *.7z and zt*.7z archives)
63
+ src/trcc/data/web/[0-9]*/
64
+ src/trcc/data/web/zt*/[0-9]*/
65
+ src/trcc/data/web/**/*.mp4
66
+ src/trcc/data/web/**/*.png
67
+
68
+ # Keep all .7z archives tracked
69
+ !src/trcc/data/theme*.7z
70
+ !src/trcc/data/web/*.7z
71
+
72
+ # Runtime data
73
+ src/trcc/data/web_cache/
74
+ src/trcc/data/themes/
75
+ src/trcc/data/images/
76
+ src/trcc/data/settings.json
77
+ src/trcc/data/ui_*.json
78
+
79
+ # ──────────────────────────────────────────────
80
+ # Dev / reference files (not for distribution)
81
+ # ──────────────────────────────────────────────
82
+ # Block /dev/* per-file so the !-negations below can re-include
83
+ # the shared mock harness. (`/dev/` directory-level rule wouldn't
84
+ # allow re-include — git can't unignore a file under an ignored
85
+ # directory.)
86
+ /dev/*
87
+ # Mock harness IS shared tooling — every developer benefits from
88
+ # the same MockPlatform-backed CLI / API / GUI entry points.
89
+ !/dev/mock_cli.py
90
+ !/dev/mock_api.py
91
+ !/dev/mock_gui.py
92
+ !/dev/_mock_bootstrap.py
93
+ !/dev/_mock_daemon.py
94
+ !/dev/smoke_rotation_mask.py
95
+ !/dev/smoke_daemon_gui.py
96
+ !/dev/smoke_sleep_cycle.py
97
+ !/dev/smoke_linux.py
98
+ !/dev/smoke_windows.py
99
+ !/dev/smoke_macos.py
100
+ !/dev/smoke_macos_parsers.py
101
+ !/dev/smoke_platforms.py
102
+ !/dev/smoke_variant_resolution.py
103
+ !/dev/smoke_bsd.py
104
+ !/dev/_smoke_runtime.py
105
+ !/dev/parity_smoke.py
106
+ !/dev/smoke_full_pipeline.py
107
+ /dev_*
108
+ # Dev scripts at root
109
+ /test_*.py
110
+ /probe_*.py
111
+ /*.sh
112
+ !install.sh
113
+
114
+ # Dev tooling
115
+ tools/
116
+
117
+ # Large binary docs
118
+ doc/*.pdf
119
+
120
+ # C# audit docs (reference only, not for distribution)
121
+ doc/audit/
@@ -0,0 +1,470 @@
1
+ Metadata-Version: 2.4
2
+ Name: trcc-linux
3
+ Version: 9.7.0
4
+ Summary: Linux implementation of Thermalright LCD Control Center
5
+ Project-URL: Homepage, https://github.com/Lexonight1/thermalright-trcc-linux
6
+ Project-URL: Documentation, https://github.com/Lexonight1/thermalright-trcc-linux#readme
7
+ Project-URL: Repository, https://github.com/Lexonight1/thermalright-trcc-linux
8
+ Project-URL: Issues, https://github.com/Lexonight1/thermalright-trcc-linux/issues
9
+ Author: TRCC Linux Contributors
10
+ License-Expression: GPL-3.0-or-later
11
+ License-File: LICENSE
12
+ Keywords: cooling,hardware,lcd,monitor,thermalright
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Environment :: X11 Applications
15
+ Classifier: Intended Audience :: End Users/Desktop
16
+ Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
17
+ Classifier: Operating System :: POSIX :: Linux
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3.9
20
+ Classifier: Programming Language :: Python :: 3.10
21
+ Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
23
+ Classifier: Topic :: System :: Hardware
24
+ Classifier: Topic :: System :: Monitoring
25
+ Requires-Python: >=3.10
26
+ Requires-Dist: certifi>=2023.7.22
27
+ Requires-Dist: click>=7.0
28
+ Requires-Dist: fastapi>=0.100
29
+ Requires-Dist: libusb-package>=1.0.26.3; sys_platform == 'win32' and python_version < '3.14'
30
+ Requires-Dist: numpy>=1.24.0
31
+ Requires-Dist: prompt-toolkit>=3.0.0
32
+ Requires-Dist: psutil>=5.9.0
33
+ Requires-Dist: pyside6>=6.5.0
34
+ Requires-Dist: python-multipart>=0.0.6
35
+ Requires-Dist: pyusb>=1.2.0
36
+ Requires-Dist: sounddevice>=0.4.6
37
+ Requires-Dist: typer>=0.9.0
38
+ Requires-Dist: tzdata>=2024.1; sys_platform == 'win32'
39
+ Requires-Dist: uvicorn[standard]>=0.20
40
+ Requires-Dist: wmi>=1.5.1; sys_platform == 'win32'
41
+ Provides-Extra: all
42
+ Requires-Dist: dbus-python>=1.3.0; extra == 'all'
43
+ Requires-Dist: hidapi>=0.14.0; extra == 'all'
44
+ Requires-Dist: httpx>=0.24.0; extra == 'all'
45
+ Requires-Dist: nvidia-ml-py>=11.0.0; extra == 'all'
46
+ Requires-Dist: pygobject>=3.42.0; extra == 'all'
47
+ Requires-Dist: pytest-cov>=4.0.0; extra == 'all'
48
+ Requires-Dist: pytest>=7.0.0; extra == 'all'
49
+ Requires-Dist: qrcode>=7.0; extra == 'all'
50
+ Requires-Dist: ruff>=0.4.0; extra == 'all'
51
+ Requires-Dist: types-qrcode>=7.0; extra == 'all'
52
+ Provides-Extra: dev
53
+ Requires-Dist: httpx>=0.24.0; extra == 'dev'
54
+ Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
55
+ Requires-Dist: pytest>=7.0.0; extra == 'dev'
56
+ Requires-Dist: ruff>=0.4.0; extra == 'dev'
57
+ Requires-Dist: types-qrcode>=7.0; extra == 'dev'
58
+ Provides-Extra: hid
59
+ Requires-Dist: hidapi>=0.14.0; extra == 'hid'
60
+ Provides-Extra: nvidia
61
+ Requires-Dist: nvidia-ml-py>=11.0.0; extra == 'nvidia'
62
+ Provides-Extra: remote
63
+ Requires-Dist: qrcode>=7.0; extra == 'remote'
64
+ Provides-Extra: wayland
65
+ Requires-Dist: dbus-python>=1.3.0; extra == 'wayland'
66
+ Requires-Dist: pygobject>=3.42.0; extra == 'wayland'
67
+ Provides-Extra: windows
68
+ Requires-Dist: pywin32>=306; (sys_platform == 'win32') and extra == 'windows'
69
+ Requires-Dist: wmi>=1.5.1; (sys_platform == 'win32') and extra == 'windows'
70
+ Description-Content-Type: text/markdown
71
+
72
+ # Intro
73
+ > "I’ll do it while you talk" - Józef Piłsudski, was the founding father of modern Poland
74
+
75
+ > "Free software is a matter of liberty, not price. To understand the concept, you should think of free as in free speech, not as in free beer." - [Richard Stallman](https://stallman.org/), founder of the [Free Software Foundation](https://www.fsf.org/)
76
+ # TRCC Linux
77
+ > **Looking for testers!** We need **Linux**, **Windows**, **macOS**, and **BSD** testers. If you have a Thermalright LCD or LED device on any platform, grab the latest [release](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest) and [let us know how it goes](https://github.com/Lexonight1/thermalright-trcc-linux/issues) — run `trcc report` and paste the output in an issue. Every test report helps, even if nothing works yet!
78
+
79
+ > **Solo hobbyist project** — built in my spare time, one device, no corporate backing. Just a Linux user who got tired of waiting for Thermalright to support us. If something breaks, please be patient — I do this for free because I like helping people. If this project helps you, consider [buying me a beer](https://buymeacoffee.com/Lexonight1) 🍺 or [Ko-fi](https://ko-fi.com/lexonight1) ☕
80
+
81
+ > **Need help?** [Open a GitHub issue](https://github.com/Lexonight1/thermalright-trcc-linux/issues/new) — that's the only place I see support requests. I don't monitor Reddit, forums, Discord, or Discussions. Run `trcc report` and paste the output so I can actually help you.
82
+
83
+ [![GitHub Release](https://img.shields.io/github/v/release/Lexonight1/thermalright-trcc-linux?color=green&logo=github)](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest)
84
+ [![PyPI](https://img.shields.io/pypi/v/trcc-linux)](https://pypi.org/project/trcc-linux/)
85
+ [![GitHub Downloads](https://img.shields.io/github/downloads/Lexonight1/thermalright-trcc-linux/total?color=blue&logo=github&label=downloads)](https://github.com/Lexonight1/thermalright-trcc-linux/releases)
86
+ [![PyPI Downloads](https://img.shields.io/pypi/dm/trcc-linux?label=PyPI%20downloads&color=blue)](https://pypi.org/project/trcc-linux/)
87
+ [![License](https://img.shields.io/badge/license-GPL--3.0-green.svg)](LICENSE)
88
+ [![Platform](https://img.shields.io/badge/platform-Linux-FCC624?logo=linux&logoColor=black)](https://github.com/Lexonight1/thermalright-trcc-linux)
89
+
90
+ [![CI](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml/badge.svg)](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
91
+ [![Tests](https://img.shields.io/badge/tests-6096_passed-brightgreen.svg)](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
92
+ [![Coverage](https://img.shields.io/badge/coverage-72%25-brightgreen.svg)](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
93
+ [![Python](https://img.shields.io/badge/python-3.9%2B-blue.svg)](https://python.org)
94
+ [![Code Style](https://img.shields.io/badge/code_style-ruff-D7FF64?logo=ruff&logoColor=black)](https://docs.astral.sh/ruff/)
95
+ [![Type Check](https://img.shields.io/badge/type_check-pyright-blue?logo=python&logoColor=white)](https://microsoft.github.io/pyright/)
96
+
97
+ [![Stars](https://img.shields.io/github/stars/Lexonight1/thermalright-trcc-linux?style=flat&logo=github)](https://github.com/Lexonight1/thermalright-trcc-linux/stargazers)
98
+ [![Forks](https://img.shields.io/github/forks/Lexonight1/thermalright-trcc-linux?style=flat&color=blue&logo=github)](https://github.com/Lexonight1/thermalright-trcc-linux/network/members)
99
+ [![Issues](https://img.shields.io/github/issues/Lexonight1/thermalright-trcc-linux?color=orange&logo=github)](https://github.com/Lexonight1/thermalright-trcc-linux/issues)
100
+ [![Last Commit](https://img.shields.io/github/last-commit/Lexonight1/thermalright-trcc-linux?color=purple&logo=git&logoColor=white)](https://github.com/Lexonight1/thermalright-trcc-linux/commits/main)
101
+ [![Code Size](https://img.shields.io/github/languages/code-size/Lexonight1/thermalright-trcc-linux?color=lightgrey&logo=github)](https://github.com/Lexonight1/thermalright-trcc-linux)
102
+
103
+ **Packages:**
104
+
105
+ [![Fedora](https://img.shields.io/badge/Fedora-RPM-51A2DA?logo=fedora&logoColor=white)](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest)
106
+ [![openSUSE](https://img.shields.io/badge/openSUSE-RPM-73BA25?logo=opensuse&logoColor=white)](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest)
107
+
108
+ [![Ubuntu](https://img.shields.io/badge/Ubuntu-DEB-E95420?logo=ubuntu&logoColor=white)](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest)
109
+ [![Debian](https://img.shields.io/badge/Debian-DEB-A81D33?logo=debian&logoColor=white)](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest)
110
+
111
+ [![Arch](https://img.shields.io/badge/Arch-pkg.tar.zst-1793D1?logo=archlinux&logoColor=white)](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest)
112
+ [![CachyOS](https://img.shields.io/badge/CachyOS-pkg.tar.zst-6B8E23?logo=archlinux&logoColor=white)](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest)
113
+ [![Manjaro](https://img.shields.io/badge/Manjaro-pkg.tar.zst-35BF5C?logo=manjaro&logoColor=white)](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest)
114
+
115
+ [![NixOS](https://img.shields.io/badge/NixOS-flake-5277C3?logo=nixos&logoColor=white)](https://github.com/Lexonight1/thermalright-trcc-linux/blob/main/flake.nix)
116
+ [![Gentoo](https://img.shields.io/badge/Gentoo-ebuild-54487A?logo=gentoo&logoColor=white)](https://github.com/Lexonight1/thermalright-trcc-linux/tree/main/packaging/gentoo)
117
+
118
+ [![Buy Me a Beer](https://img.shields.io/badge/Buy_Me_a_Beer-🍺-FF5F5F?style=flat)](https://buymeacoffee.com/Lexonight1)
119
+ [![Ko-fi](https://img.shields.io/badge/Ko--fi-☕-FF5E5B?style=flat&logo=kofi&logoColor=white)](https://ko-fi.com/lexonight1)
120
+
121
+ > Huge thanks to **[@Xentrino](https://github.com/Xentrino)**, **[@javisaman](https://github.com/javisaman)**, **[@loosethoughts19-hash](https://github.com/loosethoughts19-hash)**, **[@Reborn627](https://github.com/Reborn627)**, **[@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)**, **Glyn**, **dugalex**, and **Dunvcpi** for the beers — you guys are legends.
122
+
123
+ 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.
124
+
125
+ > **This project wouldn't exist without our testers.** I only own one device. Every supported device in this list works because someone plugged it in, ran `trcc report`, and told me what broke. 32 testers helped us go from "SCSI only" to full C# feature parity with 6 USB protocols, 16 FBL resolutions, and 12 LED styles. Open source at its best — see [Contributors](#contributors) below.
126
+
127
+ > Unofficial community project, not affiliated with Thermalright. Built with [Claude](https://claude.ai) (AI) for protocol reverse engineering and code generation, guided by human architecture decisions and logical assessment.
128
+
129
+ ## Install
130
+
131
+ ### Native packages (recommended)
132
+
133
+ Pre-built packages are available for every major distro. No pip, no venv, no PEP 668 headaches — just download and install like any other app. Every release is built automatically from source using [GitHub Actions](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/release.yml) — the build logs are public so anyone can verify what went in.
134
+
135
+ > For detailed step-by-step instructions, troubleshooting, and alternative install methods, see the **[Install Guide](doc/GUIDE_INSTALL.md)**.
136
+
137
+ | Distro | Install Guide |
138
+ |--------|--------------|
139
+ | Fedora / Nobara / openSUSE | [Fedora](doc/GUIDE_INSTALL.md#fedora--nobara) |
140
+ | Bazzite / Bluefin / Aurora / Universal Blue | [Immutable Fedora](doc/GUIDE_INSTALL.md#bazzite--aurora--bluefin--fedora-atomic) |
141
+ | Ubuntu 24.04+ / Debian 13+ / Mint 22+ / Pop!_OS / Zorin | [Ubuntu / Debian](doc/GUIDE_INSTALL.md#ubuntu--debian--mint--pop_os--zorin) |
142
+ | Ubuntu 22.04 / Mint 21.x / Debian 12 (older) | [Legacy DEB](doc/GUIDE_INSTALL.md#ubuntu-2204--mint-21x--debian-12-legacy-deb) |
143
+ | Arch / CachyOS / Manjaro / EndeavourOS / Garuda | [Arch](doc/GUIDE_INSTALL.md#arch--cachyos--manjaro--endeavouros--garuda) |
144
+ | NixOS | [NixOS](doc/GUIDE_INSTALL.md#nixos) |
145
+ | Gentoo | [Gentoo](doc/GUIDE_INSTALL.md#gentoo) |
146
+ | SteamOS (Steam Deck) | [SteamOS](doc/GUIDE_INSTALL.md#steamos-steam-deck) |
147
+ | Windows 10/11 | [Windows](doc/GUIDE_INSTALL.md#windows-experimental) |
148
+ | macOS 11+ | [macOS](doc/GUIDE_INSTALL.md#macos-experimental) |
149
+ | FreeBSD | [FreeBSD](doc/GUIDE_INSTALL.md#freebsd-experimental) |
150
+
151
+ Each guide has a one-liner copy-paste command and step-by-step instructions. After installing, unplug and replug the USB cable, then run `trcc gui`.
152
+
153
+ ### Verify your download
154
+
155
+ Every release includes a `SHA256SUMS.txt` file. Download it from the same release page, then:
156
+
157
+ ```bash
158
+ cd ~/Downloads
159
+ sha256sum -c SHA256SUMS.txt --ignore-missing
160
+ ```
161
+
162
+ If you see `OK` next to your package — it's clean. Source code is GPL-3.0, fully auditable — no binaries, no obfuscation, no telemetry.
163
+
164
+ ### PyPI
165
+
166
+ Best option for very old distros (Ubuntu 20.04, Debian 11) or if you prefer Python packaging. For Ubuntu 22.04 / Mint 21.x / Debian 12, the [Legacy DEB](doc/GUIDE_INSTALL.md#ubuntu-2204--mint-21x--debian-12-legacy-deb) is easier.
167
+
168
+ ```bash
169
+ # Install system dependencies first
170
+ sudo apt install pipx libusb-1.0-0 sg3-utils p7zip-full libxcb-cursor0 # Debian/Ubuntu/Mint
171
+ sudo dnf install pipx libusb-1.0.0 sg3_utils p7zip # Fedora
172
+
173
+ # Install trcc-linux
174
+ pipx install trcc-linux
175
+ trcc setup # interactive wizard — udev rules, desktop entry
176
+ ```
177
+
178
+ Then **unplug and replug the USB cable** and run `trcc gui`.
179
+
180
+ > `pipx` not installed? `sudo apt install pipx` (Debian/Ubuntu), `sudo dnf install pipx` (Fedora), `sudo pacman -S python-pipx` (Arch). See the **[Install Guide](doc/GUIDE_INSTALL.md)** for your distro.
181
+
182
+ ### Automatic (git clone)
183
+
184
+ ```bash
185
+ git clone https://github.com/Lexonight1/thermalright-trcc-linux.git
186
+ cd thermalright-trcc-linux
187
+ sudo ./install.sh
188
+ ```
189
+
190
+ Detects your distro, installs system packages, Python deps, udev rules, and desktop shortcut.
191
+
192
+ ### Supported distros
193
+
194
+ Fedora, Nobara, Ubuntu, Debian, Mint, Pop!_OS, Zorin, elementary OS, Arch, Manjaro, EndeavourOS, CachyOS, Garuda, openSUSE, Void, Gentoo, Alpine, NixOS, Bazzite, Aurora, Bluefin, SteamOS (Steam Deck).
195
+
196
+ > **`trcc: command not found`?** Open a new terminal — pip installs to `~/.local/bin` which needs a new shell session to appear on PATH.
197
+
198
+ > See the **[Install Guide](doc/GUIDE_INSTALL.md)** for distro-specific instructions and troubleshooting.
199
+
200
+ ### Have an untested device?
201
+
202
+ Run `trcc report` and [paste the output in an issue](https://github.com/Lexonight1/thermalright-trcc-linux/issues/new) — takes 30 seconds. See the **[full list of devices that need testers](doc/TESTERS_WANTED.md)**.
203
+
204
+ ![TRCC Linux GUI](doc/screenshots/screenshot.png)
205
+
206
+ ## Usage
207
+
208
+ ### GUI
209
+
210
+ ```bash
211
+ trcc gui
212
+ ```
213
+
214
+ Full desktop app with theme browser, video player, overlay editor, LED control panel, and hardware sensor dashboard.
215
+
216
+ ### CLI
217
+
218
+ ```bash
219
+ trcc detect # Show connected devices
220
+ trcc send image.png # Send image to LCD
221
+ trcc color "#ff0000" # Fill LCD with solid color
222
+ trcc video clip.mp4 # Play video on LCD
223
+ trcc screencast # Live screen capture to LCD
224
+ trcc brightness 2 # Set brightness (1=25%, 2=50%, 3=100%)
225
+ trcc rotation 90 # Rotate display (0/90/180/270)
226
+ trcc theme-list # List available themes
227
+ trcc theme-load NAME # Load a theme by name
228
+ trcc overlay # Render and send overlay
229
+ trcc led-color "#00ff00" # Set LED color
230
+ trcc led-mode breathing # Set LED effect mode
231
+ trcc report # Generate diagnostic report
232
+ trcc doctor # Check system dependencies
233
+ trcc setup # Interactive setup wizard
234
+ trcc uninstall # Remove TRCC completely
235
+ ```
236
+
237
+ See the **[CLI Reference](doc/REFERENCE_CLI.md)** for the full command list.
238
+
239
+ ### REST API
240
+
241
+ Start the API server and control your devices remotely:
242
+
243
+ ```bash
244
+ trcc serve # Start on http://localhost:9876
245
+ trcc serve --port 8080 # Custom port
246
+ trcc serve --tls # HTTPS with auto-generated self-signed cert
247
+ trcc serve --host 0.0.0.0 # Listen on all interfaces (LAN access)
248
+ ```
249
+
250
+ 78 endpoints covering devices, display, LED, themes, and system metrics. Use `trcc api` to list all endpoints.
251
+
252
+ ```bash
253
+ # Examples with curl
254
+ curl http://localhost:9876/devices # List devices
255
+ curl -X POST http://localhost:9876/display/send \
256
+ -F "file=@wallpaper.png" # Send image
257
+ curl -X POST http://localhost:9876/led/color \
258
+ -H "Content-Type: application/json" \
259
+ -d '{"color": "#ff0000"}' # Set LED color
260
+ ```
261
+
262
+ ### Tips
263
+
264
+ **Mounting your device vertically?**
265
+ Set the angle to **90°** (or 270°) in the GUI, then open **Cloud Themes** — the browser will automatically show portrait-orientation themes for your device's rotated dimensions. Download and apply one of those for a proper vertical layout. Local themes are landscape-only; portrait layouts come from the cloud theme packs.
266
+
267
+ ## Documentation
268
+
269
+ | Document | Description |
270
+ |----------|-------------|
271
+ | [Install Guide](doc/GUIDE_INSTALL.md) | Installation for all major distros |
272
+ | [CLI Reference](doc/REFERENCE_CLI.md) | All CLI commands with options and examples |
273
+ | [User Guide](doc/GUIDE_USER.md) | How to use everything — GUI, themes, overlays, media, LED |
274
+ | [API Reference](doc/REFERENCE_API.md) | All 78 REST API endpoints with request/response models |
275
+ | [Troubleshooting](doc/GUIDE_TROUBLESHOOTING.md) | Common issues and fixes |
276
+ | [New to Linux](doc/GUIDE_NEW_TO_LINUX.md) | Guide for Linux beginners |
277
+ | [Changelog](doc/CHANGELOG.md) | Version history |
278
+ | [Supported Devices](doc/REFERENCE_DEVICES.md) | Full device list with USB IDs and protocols |
279
+ | [Testers Wanted](doc/TESTERS_WANTED.md) | Devices that need hardware validation |
280
+ | [Device Testing Guide](doc/GUIDE_DEVICE_TESTING.md) | How to test and report device compatibility |
281
+ | [Architecture](doc/ARCHITECTURE.md) | Project layout and design |
282
+ | [Technical Reference](doc/REFERENCE_TECHNICAL.md) | SCSI protocol and file formats |
283
+
284
+ ### Protocol documentation (reverse-engineered from Windows TRCC)
285
+
286
+ | Document | Description |
287
+ |----------|-------------|
288
+ | [Technical Reference](doc/REFERENCE_TECHNICAL.md) | SCSI protocol, FBL detection, PM/SUB mapping |
289
+ | [USBLCDNEW Protocol](doc/PROTOCOL_USBLCDNEW.md) | USB bulk/LY frame transfer protocol |
290
+ | [USBLED Protocol](doc/PROTOCOL_USBLED.md) | HID LED segment display protocol |
291
+
292
+ ## Features
293
+
294
+ | Category | What you get |
295
+ |----------|-------------|
296
+ | **GUI** | Full PySide6 desktop app — theme browser, video player, overlay editor, LED control panel, 38 languages |
297
+ | **CLI** | `trcc gui`, `trcc send`, `trcc video`, `trcc led-color`, `trcc screencast`, `trcc shell`, and more |
298
+ | **REST API** | 78 endpoints — control everything remotely, build integrations, automate your setup |
299
+ | **Themes** | Local, cloud, and masks — carousel mode, export/import as `.tr` files, custom mask upload with X/Y positioning, 5 starters + 120 masks per resolution |
300
+ | **Media** | Video/GIF playback on LCD, video trimmer, image cropper, screen cast (X11 + Wayland), mic audio visualization |
301
+ | **Overlay Editor** | Text, sensors, date/time overlays — font picker, dynamic scaling, color picker |
302
+ | **Hardware Sensors** | 77+ sensors — CPU/GPU temp, fan speed, power, usage — customizable dashboard |
303
+ | **LED Control** | 12 LED styles, zone carousel, breathing/rainbow/static/wave modes, per-zone color |
304
+ | **Display** | 16 resolutions (240x240 to 1920x462), 0/90/180/270 rotation, 3 brightness levels |
305
+ | **Multi-device** | Per-device config, auto-detect, multi-device with device selection |
306
+ | **Security** | udev rules, polkit policy, SELinux support, no root required after setup |
307
+
308
+ **Under the hood**: 147 source files, ~49K lines of Python, 5799 tests across 96 test files in 9 directories. Hexagonal architecture with strict dependency injection — GUI, CLI, and API all talk to the same core services. 6 USB protocols reverse-engineered from the Windows C# app.
309
+
310
+ ### What we do better than Windows TRCC
311
+
312
+ - **38 languages** — Windows has 10 (baked into PNGs). We render text at runtime, community can add more
313
+ - **CLI + REST API** — Windows is GUI-only. We have full CLI and 49 API endpoints for automation
314
+ - **Custom mask upload** — upload your own PNG overlay, position with X/Y controls, saved to `~/.trcc-user/`
315
+ - **No admin required** — udev rules handle permissions. Windows needs "Run as Administrator"
316
+ - **Open source** — read the code, fix bugs, add features. Windows TRCC is closed-source .NET
317
+ - **Screencast on Wayland** — Windows can't do that either
318
+ - **Audio visualization** — mic spectrum analyzer on screencast. Windows doesn't have this
319
+ - **Hexagonal architecture** — GUI, CLI, and API share the same core. No feature lag between interfaces
320
+
321
+ ### 38-Language GUI (i18n)
322
+
323
+ The Windows TRCC app ships 10 languages by baking translated text into separate PNG background images — 129 PNGs just for panel labels. We replaced all of that with a runtime i18n system: language-neutral background PNGs + QLabel text overlays rendered from `core/i18n.py`. Switching languages updates every label instantly — no restart, no extra files.
324
+
325
+ **Supported languages:** Simplified Chinese, Traditional Chinese, English, German, Russian, French, Portuguese, Japanese, Spanish, Korean, Italian, Dutch, Polish, Turkish, Arabic, Hindi, Thai, Vietnamese, Indonesian, Czech, Swedish, Danish, Norwegian, Finnish, Hungarian, Romanian, Ukrainian, Greek, Hebrew, Malay, Bengali, Urdu, Farsi, Tagalog, Tamil, Punjabi, Swahili, Burmese
326
+
327
+ Adding a new language is one dict entry per string in `core/i18n.py` — no PNG editing, no asset pipeline. Community translations welcome.
328
+
329
+ ### Supported Devices
330
+
331
+ Run `lsusb` to find your USB ID (`xxxx:xxxx` after `ID`), then match it below.
332
+
333
+ **SCSI devices** — fully supported:
334
+ | USB ID | Devices |
335
+ |--------|---------|
336
+ | `87CD:70DB` | FROZEN HORIZON PRO, FROZEN MAGIC PRO, FROZEN VISION V2, CORE VISION, ELITE VISION, AK120, AX120, PA120 DIGITAL, Wonder Vision |
337
+ | `0416:5406` | LC1, LC2, LC3, LC5 (AIO pump heads) |
338
+ | `0402:3922` | FROZEN WARFRAME, FROZEN WARFRAME 360, FROZEN WARFRAME SE, ELITE VISION 360 |
339
+
340
+ **Bulk USB devices** — raw USB protocol:
341
+ | USB ID | Devices |
342
+ |--------|---------|
343
+ | `87AD:70DB` | GrandVision 360 AIO, Mjolnir Vision 360, Wonder Vision Pro 360, Frozen Warframe Pro |
344
+
345
+ **LY USB devices** — chunked bulk protocol:
346
+ | USB ID | Devices |
347
+ |--------|---------|
348
+ | `0416:5408` | Trofeo Vision 9.16 LCD |
349
+ | `0416:5409` | (LY1 variant) |
350
+
351
+ **HID LCD devices** — auto-detected:
352
+ | USB ID | Devices |
353
+ |--------|---------|
354
+ | `0416:5302` | Trofeo Vision LCD, Assassin Spirit 120 Vision ARGB, AS120 VISION, BA120 VISION, FROZEN WARFRAME, FROZEN WARFRAME 360, FROZEN WARFRAME SE, FROZEN WARFRAME PRO, ELITE VISION, LC5 |
355
+ | `0418:5303` | TARAN ARMS |
356
+ | `0418:5304` | TARAN ARMS |
357
+
358
+ **HID LED devices** — RGB LED control:
359
+ | USB ID | Devices |
360
+ |--------|---------|
361
+ | `0416:8001` | AX120 DIGITAL, PA120 DIGITAL, Peerless Assassin 120 DIGITAL ARGB White, Assassin X 120R Digital ARGB, Phantom Spirit 120 Digital EVO, HR10 2280 PRO Digital, and others (model auto-detected via handshake) |
362
+
363
+ > See the [full device list with protocol details](doc/REFERENCE_DEVICES.md) and the [Device Testing Guide](doc/GUIDE_DEVICE_TESTING.md) if you have an untested device.
364
+
365
+ ## Architecture
366
+
367
+ ```text
368
+ src/trcc/
369
+ ├── core/ # Models, enums, domain constants — zero I/O
370
+ ├── services/ # Business logic — pure Python, no framework deps
371
+ ├── adapters/ # USB device protocols (SCSI, HID, Bulk, LY, LED)
372
+ ├── ui/
373
+ │ ├── gui/ # PySide6 GUI — themes, video, overlay, LED, sensors
374
+ │ ├── cli/ # Typer CLI — 95 commands across 8 modules
375
+ │ └── api/ # FastAPI REST API — 78 endpoints across 7 modules
376
+ ├── _boot.py # Composition root — returns Trcc or TrccProxy
377
+ ├── daemon.py # Optional singleton daemon mode (TRCC_DAEMON=1)
378
+ ├── ipc.py # Manifold IPC — UI ↔ daemon over Unix socket
379
+ ├── conf.py # Settings singleton
380
+ └── assets/ # GUI images, desktop entry, polkit policy, systemd service
381
+ ```
382
+
383
+ **Hexagonal architecture** — GUI, CLI, and API are interchangeable adapters over the same core services. Adding a new interface (Android app, Home Assistant plugin) means writing a new adapter, not touching business logic.
384
+
385
+ ### Reproducing reporter bugs (contributors)
386
+
387
+ When a `trcc report` lands on an issue, the harness in `dev/smoke_anything.py` runs every probe — handshake idempotency, video target dims, RAPL discovery, WMI CoInitialize, addr-threading, sleep/resume cycle — through the fully DI'd stack at the reporter's exact OS + device:
388
+
389
+ ```bash
390
+ PYTHONPATH=src python3 dev/smoke_anything.py --from-report report.txt
391
+ PYTHONPATH=src python3 dev/smoke_anything.py --os linux --device 87ad:70db
392
+ PYTHONPATH=src python3 dev/smoke_anything.py --list-probes
393
+ ```
394
+
395
+ If a probe goes `BAD`, that's the bug — fix in `src/`, re-run, see `PASS`. Every reproduced regression becomes a new probe in `PROBES`, so the next reporter with the same root cause gets caught in 30 seconds. Discipline: never reply "try vX.Y.Z" until a probe has actually gone `PASS` against the reporter's environment.
396
+
397
+ **6 USB protocols** reverse-engineered from the Windows C# app:
398
+
399
+ | Protocol | Transport | Devices |
400
+ |----------|-----------|---------|
401
+ | SCSI | SG_IO ioctl | Frozen Warframe, Elite Vision, AK/AX120, PA120, LC1-5 |
402
+ | HID Type 2 | pyusb interrupt | Trofeo Vision, Assassin Spirit, AS/BA120, Frozen Warframe SE/PRO |
403
+ | HID Type 3 | pyusb interrupt | TARAN ARMS |
404
+ | Bulk | pyusb bulk | GrandVision 360, Mjolnir Vision 360, Wonder Vision Pro 360, Frozen Warframe Pro |
405
+ | LY | pyusb bulk (chunked) | Trofeo Vision 9.16 LCD |
406
+ | LED | pyusb HID | All LED segment display devices (12 styles) |
407
+
408
+ ## Contributors
409
+
410
+ 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.
411
+
412
+ Special thanks to everyone who has contributed invaluable reports to this project:
413
+
414
+ **Frozen Warframe** — **[gizbo](https://github.com/gizbo)** · **[knappstar](https://github.com/knappstar)** · **[Scifiguygaming](https://github.com/Scifiguygaming)** · **[apj202-ops](https://github.com/apj202-ops)** · **[loosethoughts19-hash](https://github.com/loosethoughts19-hash)** · **[Edoardo-Rossi-EOS](https://github.com/Edoardo-Rossi-EOS)** · **[edoargo1996](https://github.com/edoargo1996)** · **[stephendesmond1-cmd](https://github.com/stephendesmond1-cmd)** · **[riodevelop](https://github.com/riodevelop)** · **[wobbegongus](https://github.com/wobbegongus)** · **[Pallemz](https://github.com/Pallemz)** · **[pawbtism](https://github.com/pawbtism)**
415
+
416
+ **Trofeo Vision** — **[N8ghtz](https://github.com/N8ghtz)** · **[PantherX12max](https://github.com/PantherX12max)** · **[ravensvoice](https://github.com/ravensvoice)** · **[beret21](https://github.com/beret21)** · **[jimmister1234-bit](https://github.com/jimmister1234-bit)** · **[Tavus1990](https://github.com/Tavus1990)** · **[ImlostinIKEA](https://github.com/ImlostinIKEA)** · **[ronny79privat](https://github.com/ronny79privat)** · **[OptimalKiller](https://github.com/OptimalKiller)**
417
+
418
+ **GrandVision 360 AIO** — **[bipobuilt](https://github.com/bipobuilt)** · **[cadeon](https://github.com/cadeon)** · **[Reborn627](https://github.com/Reborn627)** · **[TheManchineel](https://github.com/TheManchineel)** · **[ImlostinIKEA](https://github.com/ImlostinIKEA)**
419
+
420
+ **Assassin Spirit 120 Vision** — **[michael-spinelli](https://github.com/michael-spinelli)** · **[acioannina-wq](https://github.com/acioannina-wq)**
421
+
422
+ **Assassin X 120R Digital ARGB** — **[hexskrew](https://github.com/hexskrew)** · **[rhuggins573-crypto](https://github.com/rhuggins573-crypto)**
423
+
424
+ **Peerless Assassin 120 Digital ARGB** — **[Xentrino](https://github.com/Xentrino)** · **[Vydon](https://github.com/Vydon)**
425
+
426
+ **PA120 Digital** — **[Pewful2021](https://github.com/Pewful2021)** · **[lallemandgianni-boop](https://github.com/lallemandgianni-boop)** · **[mody446](https://github.com/mody446)**
427
+
428
+ **Phantom Spirit 120 Digital EVO** — **[javisaman](https://github.com/javisaman)** · **[Rizzzolo](https://github.com/Rizzzolo)** · **[chava-byte](https://github.com/chava-byte)**
429
+
430
+ **Wonder Vision** — **[Civilgrain](https://github.com/Civilgrain)** · **[Alb3e3](https://github.com/Alb3e3)**
431
+
432
+ **AX120 Digital** — **[shadowepaxeor-glitch](https://github.com/shadowepaxeor-glitch)**
433
+
434
+ **Elite Vision 360** — **[tensaiteki](https://github.com/tensaiteki)**
435
+
436
+ **Mjolnir Vision 360** — **[Pikarz](https://github.com/Pikarz)** · **[RonyPony1234](https://github.com/RonyPony1234)**
437
+
438
+ **Peerless Assassin 140 Digital** — **[MioHorizon](https://github.com/MioHorizon)**
439
+
440
+ **Peerless Vision** — **[Mr-Renegade](https://github.com/Mr-Renegade)**
441
+
442
+ **Stream Vision** — **[Me-shok](https://github.com/Me-shok)**
443
+
444
+ **HR10 2280 PRO Digital** — **[Lcstyle](https://github.com/Lcstyle)**
445
+
446
+ **macOS** — **[jaminmc](https://github.com/jaminmc)** (Apple Silicon sensor research, PR #114 feedback)
447
+
448
+ **General** — **[wrightbyname](https://github.com/wrightbyname)** · **[mog199](https://github.com/mog199)** · **[jezzaw007](https://github.com/jezzaw007)** · **[sleeper14200](https://github.com/sleeper14200)** · **[kabi02](https://github.com/kabi02)** · **[david43](https://github.com/david43)** · **[Deltawolf](https://github.com/Deltawolf)** · **[JoshWrites](https://github.com/JoshWrites)** · **[jun3010me](https://github.com/jun3010me)** · **[Litsas](https://github.com/Litsas)** · **[MoltenMonster](https://github.com/MoltenMonster)** · **[ProfessorJoed](https://github.com/ProfessorJoed)** · **[qwerty22121998](https://github.com/qwerty22121998)** · **[unfirthman](https://github.com/unfirthman)** · **[ux370](https://github.com/ux370)** · **[vlad1](https://github.com/vlad1)** · **GlynL**
449
+
450
+ ## Stars
451
+
452
+ Thanks to everyone who took a moment to star this project.
453
+
454
+ **[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)** · **[azrael1911](https://github.com/azrael1911)** · **[betolink](https://github.com/betolink)** · **[bfesfbsbfesfbn](https://github.com/bfesfbsbfesfbn)** · **[bive242](https://github.com/bive242)** · **[BrunoLeguizamon05](https://github.com/BrunoLeguizamon05)** · **[cancos1](https://github.com/cancos1)** · **[capiazmi](https://github.com/capiazmi)** · **[cesarnr21](https://github.com/cesarnr21)** · **[codeflitting](https://github.com/codeflitting)** · **[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)** · **[eap5](https://github.com/eap5)** · **[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)** · **[gupsterg](https://github.com/gupsterg)** · **[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)** · **[k1w3l](https://github.com/k1w3l)** · **[knappstar](https://github.com/knappstar)** · **[Langustensorbet](https://github.com/Langustensorbet)** · **[Legendarycentaur](https://github.com/Legendarycentaur)** · **[Leonnaki](https://github.com/Leonnaki)** · **[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)** · **[mrsaraiva](https://github.com/mrsaraiva)** · **[narfel](https://github.com/narfel)** · **[nathanielhernandez](https://github.com/nathanielhernandez)** · **[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)** · **[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)** · **[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)** · **[Xentrino](https://github.com/Xentrino)** · **[YahusRevus](https://github.com/YahusRevus)** · **[zhanghangt](https://github.com/zhanghangt)** · **[Ziusz](https://github.com/Ziusz)**
455
+
456
+ ## Faulkers
457
+
458
+ Thanks for carrying the torch — these folks forked the repo to build on it.
459
+
460
+ **[capiazmi](https://github.com/capiazmi)** · **[dabombUSA](https://github.com/dabombUSA)** · **[danleyb2](https://github.com/danleyb2)** · **[DasFlogetier](https://github.com/DasFlogetier)** · **[elsiedotcafe](https://github.com/elsiedotcafe)** · **[jaminmc](https://github.com/jaminmc)** · **[jemte](https://github.com/jemte)** · **[jezzaw007](https://github.com/jezzaw007)** · **[JoshWrites](https://github.com/JoshWrites)** · **[jwcrowley](https://github.com/jwcrowley)** · **[maniwaroka](https://github.com/maniwaroka)** · **[taillis](https://github.com/taillis)** · **[TuxLux40](https://github.com/TuxLux40)**
461
+
462
+ ## Donations
463
+
464
+ If this project saved you from keeping a Windows partition around, consider **[buying me a cold one](https://buymeacoffee.com/Lexonight1)**.
465
+
466
+ ## License
467
+
468
+ [GPL-3.0](https://www.gnu.org/licenses/gpl-3.0.en.html) — free as in freedom. This project is and always will be free software. You can use it, study it, modify it, and share it. That's the deal.
469
+
470
+ Built on the shoulders of [Richard Stallman](https://stallman.org/), the [GNU Project](https://www.gnu.org/gnu/thegnuproject.en.html), and the [Free Software Foundation](https://www.fsf.org/). If you care about software freedom, [read why it matters](https://www.gnu.org/philosophy/free-sw.en.html).