trcc-linux 9.3.7__tar.gz → 9.3.8__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 (1034) hide show
  1. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/PKG-INFO +7 -7
  2. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/README.md +6 -6
  3. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/pyproject.toml +1 -1
  4. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/__version__.py +1 -1
  5. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/infra/data_repository.py +9 -10
  6. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/infra/diagnostics.py +4 -4
  7. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/infra/theme_downloader.py +7 -6
  8. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/bsd/setup.py +5 -4
  9. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/linux/setup.py +2 -2
  10. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/macos/setup.py +5 -4
  11. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/windows/setup.py +5 -4
  12. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/api/__init__.py +8 -0
  13. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/api/themes.py +6 -4
  14. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/cli/_display.py +5 -1
  15. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/cli/_theme.py +2 -2
  16. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/conf.py +35 -1
  17. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/core/lcd_device.py +44 -36
  18. trcc_linux-9.3.8/src/trcc/core/orientation.py +164 -0
  19. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/core/paths.py +18 -5
  20. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/lcd_handler.py +22 -21
  21. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/trcc_app.py +9 -0
  22. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/uc_theme_local.py +2 -1
  23. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/services/display.py +53 -55
  24. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/services/theme.py +3 -2
  25. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/cli/test_display.py +13 -0
  26. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/core/test_device_isolation.py +3 -4
  27. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/core/test_lcd_device.py +48 -33
  28. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/core/test_orientation.py +86 -94
  29. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/gui/test_lcd_handler.py +48 -36
  30. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/gui/test_trcc_app.py +32 -0
  31. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/services/test_display_integration.py +19 -18
  32. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/services/test_services.py +6 -9
  33. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/services/test_theme_persistence.py +1 -1
  34. trcc_linux-9.3.7/src/trcc/core/orientation.py +0 -159
  35. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/.gitignore +0 -0
  36. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/LICENSE +0 -0
  37. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/__init__.py +0 -0
  38. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/__main__.py +0 -0
  39. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/__init__.py +0 -0
  40. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/__init__.py +0 -0
  41. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/_usb_helpers.py +0 -0
  42. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/bsd/__init__.py +0 -0
  43. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/bsd/detector.py +0 -0
  44. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/bsd/scsi.py +0 -0
  45. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/bsd/scsi_protocol.py +0 -0
  46. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/bulk.py +0 -0
  47. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/detector.py +0 -0
  48. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/factory.py +0 -0
  49. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/frame.py +0 -0
  50. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/hid.py +0 -0
  51. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/led.py +0 -0
  52. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/led_kvm.py +0 -0
  53. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/led_segment.py +0 -0
  54. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/linux/__init__.py +0 -0
  55. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/linux/detector.py +0 -0
  56. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/linux/scsi.py +0 -0
  57. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/ly.py +0 -0
  58. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/macos/__init__.py +0 -0
  59. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/macos/detector.py +0 -0
  60. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/macos/scsi.py +0 -0
  61. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/macos/scsi_protocol.py +0 -0
  62. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/scsi.py +0 -0
  63. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/windows/__init__.py +0 -0
  64. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/windows/detector.py +0 -0
  65. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/windows/scsi.py +0 -0
  66. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/device/windows/scsi_protocol.py +0 -0
  67. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/infra/__init__.py +0 -0
  68. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/infra/binary_reader.py +0 -0
  69. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/infra/dc_config.py +0 -0
  70. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/infra/dc_parser.py +0 -0
  71. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/infra/dc_writer.py +0 -0
  72. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/infra/debug_report.py +0 -0
  73. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/infra/doctor.py +0 -0
  74. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/infra/logging_setup.py +0 -0
  75. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/infra/media_player.py +0 -0
  76. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/infra/network.py +0 -0
  77. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/infra/theme_cloud.py +0 -0
  78. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/render/__init__.py +0 -0
  79. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/render/factory_render.py +0 -0
  80. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/render/qt.py +0 -0
  81. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/__init__.py +0 -0
  82. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/_shared.py +0 -0
  83. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/bsd/__init__.py +0 -0
  84. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/bsd/hardware.py +0 -0
  85. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/bsd/platform.py +0 -0
  86. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/bsd/sensors.py +0 -0
  87. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/config.py +0 -0
  88. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/linux/__init__.py +0 -0
  89. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/linux/autostart.py +0 -0
  90. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/linux/hardware.py +0 -0
  91. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/linux/platform.py +0 -0
  92. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/linux/sensors.py +0 -0
  93. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/macos/__init__.py +0 -0
  94. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/macos/autostart.py +0 -0
  95. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/macos/hardware.py +0 -0
  96. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/macos/platform.py +0 -0
  97. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/macos/sensors.py +0 -0
  98. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/windows/__init__.py +0 -0
  99. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/windows/autostart.py +0 -0
  100. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/windows/hardware.py +0 -0
  101. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/windows/platform.py +0 -0
  102. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/adapters/system/windows/sensors.py +0 -0
  103. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/api/devices.py +0 -0
  104. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/api/display.py +0 -0
  105. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/api/i18n.py +0 -0
  106. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/api/led.py +0 -0
  107. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/api/models.py +0 -0
  108. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/api/system.py +0 -0
  109. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/assets/com.github.lexonight1.trcc.policy +0 -0
  110. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/assets/fonts/MSYH.TTC +0 -0
  111. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/assets/fonts/MSYHBD.TTC +0 -0
  112. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/assets/fonts/README.md +0 -0
  113. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/assets/icons/app.ico +0 -0
  114. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/assets/icons/trcc.png +0 -0
  115. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/assets/icons/trcc_128x128.png +0 -0
  116. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/assets/icons/trcc_16x16.png +0 -0
  117. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/assets/icons/trcc_24x24.png +0 -0
  118. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/assets/icons/trcc_256x256.png +0 -0
  119. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/assets/icons/trcc_32x32.png +0 -0
  120. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/assets/icons/trcc_48x48.png +0 -0
  121. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/assets/icons/trcc_64x64.png +0 -0
  122. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/assets/trcc-linux.desktop +0 -0
  123. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/assets/trcc-quirk-fix.service +0 -0
  124. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/cli/__init__.py +0 -0
  125. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/cli/__main__.py +0 -0
  126. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/cli/_connect.py +0 -0
  127. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/cli/_device.py +0 -0
  128. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/cli/_diag.py +0 -0
  129. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/cli/_i18n.py +0 -0
  130. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/cli/_led.py +0 -0
  131. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/cli/_system.py +0 -0
  132. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/core/__init__.py +0 -0
  133. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/core/app.py +0 -0
  134. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/core/builder.py +0 -0
  135. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/core/color.py +0 -0
  136. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/core/encoding.py +0 -0
  137. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/core/i18n.py +0 -0
  138. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/core/instance.py +0 -0
  139. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/core/led_device.py +0 -0
  140. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/core/led_segment.py +0 -0
  141. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/core/models.py +0 -0
  142. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/core/perf.py +0 -0
  143. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/core/platform.py +0 -0
  144. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/core/ports.py +0 -0
  145. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/data/trcc_usb.te +0 -0
  146. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/__init__.py +0 -0
  147. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/240240.gif +0 -0
  148. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/240320.gif +0 -0
  149. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/320240.gif +0 -0
  150. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/320320.gif +0 -0
  151. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A0/345/205/263/344/272/216.png" +0 -0
  152. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A0/345/220/257/345/212/250/347/225/214/351/235/242.png" +0 -0
  153. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A0/346/225/260/346/215/256/345/210/227/350/241/250.png" +0 -0
  154. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A0/346/227/240/350/256/276/345/244/207.png" +0 -0
  155. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A0/347/241/254/344/273/266/345/210/227/350/241/250.png" +0 -0
  156. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1AK120 Digital.png +0 -0
  157. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1AK120 Digitala.png +0 -0
  158. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1AK120_Digital.png +0 -0
  159. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1AK120_Digitala.png +0 -0
  160. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1AS120 VISION.png +0 -0
  161. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1AS120 VISIONa.png +0 -0
  162. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1AS120_VISION.png +0 -0
  163. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1AS120_VISIONa.png +0 -0
  164. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1AX120 DIGITAL.png +0 -0
  165. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1AX120 DIGITALa.png +0 -0
  166. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1AX120_DIGITAL.png +0 -0
  167. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1AX120_DIGITALa.png +0 -0
  168. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1BA120 VISION.png +0 -0
  169. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1BA120 VISIONa.png +0 -0
  170. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1BA120_VISION.png +0 -0
  171. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1BA120_VISIONa.png +0 -0
  172. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1CORE VISION.png +0 -0
  173. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1CORE VISIONa.png +0 -0
  174. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1CORE_VISION.png +0 -0
  175. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1CORE_VISIONa.png +0 -0
  176. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1CZ1.png +0 -0
  177. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1CZ1a.png +0 -0
  178. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1CZ2.png +0 -0
  179. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1CZ2a.png +0 -0
  180. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1CZTV.png +0 -0
  181. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1CZTVa.png +0 -0
  182. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1ELITE VISION.png +0 -0
  183. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1ELITE VISIONa.png +0 -0
  184. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1ELITE_VISION.png +0 -0
  185. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1ELITE_VISIONa.png +0 -0
  186. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN HORIZON PRO.png +0 -0
  187. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN HORIZON PROa.png +0 -0
  188. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN MAGIC PRO.png +0 -0
  189. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN MAGIC PROa.png +0 -0
  190. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN VISION V2.png +0 -0
  191. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN VISION V2a.png +0 -0
  192. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN WARFRAME PRO.png +0 -0
  193. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN WARFRAME PROa.png +0 -0
  194. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN WARFRAME SE.png +0 -0
  195. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN WARFRAME SEa.png +0 -0
  196. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN WARFRAME.png +0 -0
  197. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN WARFRAMEa.png +0 -0
  198. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN_HORIZON_PRO.png +0 -0
  199. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN_HORIZON_PROa.png +0 -0
  200. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN_MAGIC_PRO.png +0 -0
  201. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN_MAGIC_PROa.png +0 -0
  202. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN_VISION_V2.png +0 -0
  203. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN_VISION_V2a.png +0 -0
  204. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN_WARFRAME.png +0 -0
  205. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN_WARFRAME_PRO.png +0 -0
  206. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN_WARFRAME_PROa.png +0 -0
  207. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN_WARFRAME_SE.png +0 -0
  208. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN_WARFRAME_SEa.png +0 -0
  209. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1FROZEN_WARFRAMEa.png +0 -0
  210. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1GRAND VISION.png +0 -0
  211. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1GRAND VISIONa.png +0 -0
  212. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1GRAND_VISION.png +0 -0
  213. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1GRAND_VISIONa.png +0 -0
  214. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1HR10 2280 PRO DIGITAL.png +0 -0
  215. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1HR10 2280 PRO DIGITALa.png +0 -0
  216. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1HYPER VISION.png +0 -0
  217. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1HYPER VISIONa.png +0 -0
  218. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1HYPER_VISION.png +0 -0
  219. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1HYPER_VISIONa.png +0 -0
  220. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1KVMALEDC6.png +0 -0
  221. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1KVMALEDC6a.png +0 -0
  222. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LC1.png +0 -0
  223. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LC1a.png +0 -0
  224. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LC2.png +0 -0
  225. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LC2JD.png +0 -0
  226. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LC2JDa.png +0 -0
  227. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LC2a.png +0 -0
  228. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LC3.png +0 -0
  229. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LC3a.png +0 -0
  230. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LC5.png +0 -0
  231. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LC5a.png +0 -0
  232. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LC7.png +0 -0
  233. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LC7a.png +0 -0
  234. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LC8.png +0 -0
  235. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LC8a.png +0 -0
  236. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LC9.png +0 -0
  237. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LC9a.png +0 -0
  238. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LD10.png +0 -0
  239. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LD10a.png +0 -0
  240. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LD6.png +0 -0
  241. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LD6a.png +0 -0
  242. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LD7.png +0 -0
  243. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LD7a.png +0 -0
  244. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LD8.png +0 -0
  245. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LD8a.png +0 -0
  246. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LD9.png +0 -0
  247. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LD9a.png +0 -0
  248. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF10.png +0 -0
  249. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF10V.png +0 -0
  250. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF10Va.png +0 -0
  251. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF10a.png +0 -0
  252. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF11.png +0 -0
  253. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF11a.png +0 -0
  254. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF12.png +0 -0
  255. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF12a.png +0 -0
  256. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF13.png +0 -0
  257. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF13a.png +0 -0
  258. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF14.png +0 -0
  259. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF14a.png +0 -0
  260. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF15.png +0 -0
  261. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF15a.png +0 -0
  262. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF16.png +0 -0
  263. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF167.png +0 -0
  264. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF16a.png +0 -0
  265. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF17a.png +0 -0
  266. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF18.png +0 -0
  267. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF18a.png +0 -0
  268. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF19.png +0 -0
  269. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF19a.png +0 -0
  270. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF20.png +0 -0
  271. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF20a.png +0 -0
  272. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF21.png +0 -0
  273. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF21a.png +0 -0
  274. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF22.png +0 -0
  275. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF22a.png +0 -0
  276. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF25.png +0 -0
  277. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF25a.png +0 -0
  278. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF8.png +0 -0
  279. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LF8a.png +0 -0
  280. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LM16SE.png +0 -0
  281. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LM16SEa.png +0 -0
  282. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LM19SE.png +0 -0
  283. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LM19SEa.png +0 -0
  284. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LM22.png +0 -0
  285. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LM22a.png +0 -0
  286. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LM24.png +0 -0
  287. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LM24a.png +0 -0
  288. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LM26.png +0 -0
  289. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LM26a.png +0 -0
  290. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LM27.png +0 -0
  291. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LM27a.png +0 -0
  292. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LM30.png +0 -0
  293. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1LM30a.png +0 -0
  294. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1Mjolnir VISION PRO.png +0 -0
  295. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1Mjolnir VISION PROa.png +0 -0
  296. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1Mjolnir VISION.png +0 -0
  297. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1Mjolnir VISIONa.png +0 -0
  298. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1Mjolnir_VISION.png +0 -0
  299. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1Mjolnir_VISION_PRO.png +0 -0
  300. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1Mjolnir_VISION_PROa.png +0 -0
  301. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1Mjolnir_VISIONa.png +0 -0
  302. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1PA120 DIGITAL.png +0 -0
  303. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1PA120 DIGITALa.png +0 -0
  304. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1PA120_DIGITAL.png +0 -0
  305. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1PA120_DIGITALa.png +0 -0
  306. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1PC1.png +0 -0
  307. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1PC1a.png +0 -0
  308. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1RK120 DIGITAL.png +0 -0
  309. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1RK120 DIGITALa.png +0 -0
  310. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1RK120_DIGITAL.png +0 -0
  311. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1RK120_DIGITALa.png +0 -0
  312. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1RP130 VISION.png +0 -0
  313. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1RP130 VISIONa.png +0 -0
  314. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1RP130_VISION.png +0 -0
  315. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1RP130_VISIONa.png +0 -0
  316. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1Stream Vision.png +0 -0
  317. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1Stream Visiona.png +0 -0
  318. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1Stream_Vision.png +0 -0
  319. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1Stream_Visiona.png +0 -0
  320. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1/344/274/240/346/204/237/345/231/250.png" +0 -0
  321. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1/344/274/240/346/204/237/345/231/250a.png" +0 -0
  322. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1/345/205/263/344/272/216.png" +0 -0
  323. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A1/345/205/263/344/272/216a.png" +0 -0
  324. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A2_update_overlay.png +0 -0
  325. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A2/344/270/213/346/213/211/346/241/206/345/272/225/345/233/276.png" +0 -0
  326. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A2/344/270/213/346/213/211/346/241/206/351/200/211/346/213/251/346/235/241.png" +0 -0
  327. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A2/344/270/213/346/213/211/351/200/211/346/213/251/346/241/206.png" +0 -0
  328. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A2/347/253/213/345/215/263/346/233/264/346/226/260.png" +0 -0
  329. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/Acpu.png +0 -0
  330. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/Adram.png +0 -0
  331. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/Afan.png +0 -0
  332. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/Agpu.png +0 -0
  333. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/Ahdd.png +0 -0
  334. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/Alogout/351/200/211/344/270/255.png" +0 -0
  335. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/Alogout/351/273/230/350/256/244.png" +0 -0
  336. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/Anet.png +0 -0
  337. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/App_about.png +0 -0
  338. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/App_form.png +0 -0
  339. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/App_main.png +0 -0
  340. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/App_sysinfo.png +0 -0
  341. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/App_theme_base.png +0 -0
  342. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/App_theme_gallery.png +0 -0
  343. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A/344/270/212/344/270/200/351/241/265a.png" +0 -0
  344. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A/344/270/213/344/270/200/351/241/265a.png" +0 -0
  345. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A/345/242/236/345/212/240/346/225/260/347/273/204.png" +0 -0
  346. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A/346/225/260/346/215/256/351/200/211/346/213/251.png" +0 -0
  347. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A/346/273/232/345/212/250/346/235/241.png" +0 -0
  348. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/A/350/207/252/345/256/232/344/271/211.png" +0 -0
  349. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0CZ1.png +0 -0
  350. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0CZ1d.png +0 -0
  351. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0CZ1e.png +0 -0
  352. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0CZ1en.png +0 -0
  353. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0CZ1f.png +0 -0
  354. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0CZ1h.png +0 -0
  355. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0CZ1p.png +0 -0
  356. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0CZ1r.png +0 -0
  357. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0CZ1tc.png +0 -0
  358. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0CZ1x.png +0 -0
  359. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0KVMA/347/201/257/346/216/247.png" +0 -0
  360. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LC1.png +0 -0
  361. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LC1d.png +0 -0
  362. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LC1e.png +0 -0
  363. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LC1en.png +0 -0
  364. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LC1f.png +0 -0
  365. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LC1h.png +0 -0
  366. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LC1p.png +0 -0
  367. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LC1r.png +0 -0
  368. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LC1tc.png +0 -0
  369. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LC1x.png +0 -0
  370. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LC2.png +0 -0
  371. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LC2d.png +0 -0
  372. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LC2e.png +0 -0
  373. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LC2en.png +0 -0
  374. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LC2f.png +0 -0
  375. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LC2h.png +0 -0
  376. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LC2p.png +0 -0
  377. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LC2r.png +0 -0
  378. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LC2tc.png +0 -0
  379. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LC2x.png +0 -0
  380. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF10.png +0 -0
  381. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF10d.png +0 -0
  382. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF10e.png +0 -0
  383. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF10en.png +0 -0
  384. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF10f.png +0 -0
  385. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF10h.png +0 -0
  386. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF10p.png +0 -0
  387. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF10r.png +0 -0
  388. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF10tc.png +0 -0
  389. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF10x.png +0 -0
  390. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF11.png +0 -0
  391. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF11d.png +0 -0
  392. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF11e.png +0 -0
  393. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF11en.png +0 -0
  394. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF11f.png +0 -0
  395. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF11h.png +0 -0
  396. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF11p.png +0 -0
  397. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF11r.png +0 -0
  398. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF11tc.png +0 -0
  399. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF11x.png +0 -0
  400. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF12.png +0 -0
  401. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF12d.png +0 -0
  402. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF12e.png +0 -0
  403. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF12en.png +0 -0
  404. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF12f.png +0 -0
  405. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF12h.png +0 -0
  406. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF12p.png +0 -0
  407. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF12r.png +0 -0
  408. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF12tc.png +0 -0
  409. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF12x.png +0 -0
  410. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF13.png +0 -0
  411. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF13d.png +0 -0
  412. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF13e.png +0 -0
  413. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF13en.png +0 -0
  414. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF13f.png +0 -0
  415. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF13h.png +0 -0
  416. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF13p.png +0 -0
  417. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF13r.png +0 -0
  418. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF13tc.png +0 -0
  419. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF13x.png +0 -0
  420. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF15.png +0 -0
  421. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF15d.png +0 -0
  422. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF15e.png +0 -0
  423. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF15en.png +0 -0
  424. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF15f.png +0 -0
  425. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF15h.png +0 -0
  426. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF15p.png +0 -0
  427. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF15r.png +0 -0
  428. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF15tc.png +0 -0
  429. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF15x.png +0 -0
  430. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF8.png +0 -0
  431. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF8d.png +0 -0
  432. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF8e.png +0 -0
  433. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF8en.png +0 -0
  434. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF8f.png +0 -0
  435. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF8h.png +0 -0
  436. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF8p.png +0 -0
  437. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF8r.png +0 -0
  438. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF8tc.png +0 -0
  439. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0LF8x.png +0 -0
  440. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0rgblf13.png +0 -0
  441. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0/346/225/260/347/240/201/345/261/217.png" +0 -0
  442. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237.png" +0 -0
  443. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237d.png" +0 -0
  444. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237e.png" +0 -0
  445. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237en.png" +0 -0
  446. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237f.png" +0 -0
  447. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237h.png" +0 -0
  448. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237p.png" +0 -0
  449. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237r.png" +0 -0
  450. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237tc.png" +0 -0
  451. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0/346/225/260/347/240/201/345/261/2174/345/214/272/345/237/237x.png" +0 -0
  452. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0/346/225/260/347/240/201/345/261/217d.png" +0 -0
  453. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0/346/225/260/347/240/201/345/261/217e.png" +0 -0
  454. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0/346/225/260/347/240/201/345/261/217en.png" +0 -0
  455. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0/346/225/260/347/240/201/345/261/217f.png" +0 -0
  456. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0/346/225/260/347/240/201/345/261/217h.png" +0 -0
  457. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0/346/225/260/347/240/201/345/261/217p.png" +0 -0
  458. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0/346/225/260/347/240/201/345/261/217r.png" +0 -0
  459. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0/346/225/260/347/240/201/345/261/217tc.png" +0 -0
  460. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D0/346/225/260/347/240/201/345/261/217x.png" +0 -0
  461. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D1/345/244/226/351/203/250/350/276/223/345/207/272.png" +0 -0
  462. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D1/345/244/226/351/203/250/350/276/223/345/207/272a.png" +0 -0
  463. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D1/345/244/264/347/233/2241.png" +0 -0
  464. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D1/345/244/264/347/233/2242.png" +0 -0
  465. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D1/345/244/264/347/233/2243.png" +0 -0
  466. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D1/345/244/264/347/233/2244.png" +0 -0
  467. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D1/345/244/264/347/233/2245.png" +0 -0
  468. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D1/347/201/257/345/205/211/350/201/232/345/220/210.png" +0 -0
  469. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D1/347/201/257/345/205/211/350/201/232/345/220/210a.png" +0 -0
  470. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/2111.png" +0 -0
  471. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/21110.png" +0 -0
  472. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/21110a.png" +0 -0
  473. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/21111.png" +0 -0
  474. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/21111a.png" +0 -0
  475. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/21112.png" +0 -0
  476. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/21112a.png" +0 -0
  477. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/2111a.png" +0 -0
  478. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/2112.png" +0 -0
  479. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/2112a.png" +0 -0
  480. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/2113.png" +0 -0
  481. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/2113a.png" +0 -0
  482. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/2114.png" +0 -0
  483. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/2114a.png" +0 -0
  484. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/2115.png" +0 -0
  485. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/2115a.png" +0 -0
  486. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/2116.png" +0 -0
  487. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/2116a.png" +0 -0
  488. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/2117.png" +0 -0
  489. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/2117a.png" +0 -0
  490. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/2118.png" +0 -0
  491. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/2118a.png" +0 -0
  492. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/2119.png" +0 -0
  493. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D2/347/201/257/345/205/2119a.png" +0 -0
  494. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D3/345/274/200/345/205/263.png" +0 -0
  495. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D3/345/274/200/345/205/263a.png" +0 -0
  496. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D3/345/274/200/345/205/263b.png" +0 -0
  497. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D3/346/227/213/351/222/256.png" +0 -0
  498. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D3/346/227/213/351/222/2560.png" +0 -0
  499. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D3/346/251/231.png" +0 -0
  500. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D3/346/271/226.png" +0 -0
  501. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D3/346/273/221/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
  502. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D3/347/201/257/345/205/211/347/247/2001.png" +0 -0
  503. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D3/347/201/257/345/205/211/347/247/2001a.png" +0 -0
  504. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D3/347/201/257/345/205/211/347/247/2002.png" +0 -0
  505. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D3/347/201/257/345/205/211/347/247/2002a.png" +0 -0
  506. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D3/347/201/257/345/205/211/347/247/2003.png" +0 -0
  507. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D3/347/201/257/345/205/211/347/247/2003a.png" +0 -0
  508. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D3/347/231/275.png" +0 -0
  509. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D3/347/264/253.png" +0 -0
  510. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D3/347/272/242.png" +0 -0
  511. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D3/347/273/277.png" +0 -0
  512. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D3/350/223/235.png" +0 -0
  513. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D3/351/273/204.png" +0 -0
  514. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/345/274/200/346/234/272.png" +0 -0
  515. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/345/274/200/346/234/272a.png" +0 -0
  516. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/346/214/211/351/222/2561.png" +0 -0
  517. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/346/214/211/351/222/2561a.png" +0 -0
  518. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/346/214/211/351/222/2562.png" +0 -0
  519. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/346/214/211/351/222/2562a.png" +0 -0
  520. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/346/214/211/351/222/2563.png" +0 -0
  521. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/346/214/211/351/222/2563a.png" +0 -0
  522. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/346/214/211/351/222/2564.png" +0 -0
  523. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/346/214/211/351/222/2564a.png" +0 -0
  524. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/346/250/241/345/274/2171.png" +0 -0
  525. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/346/250/241/345/274/2171a.png" +0 -0
  526. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/346/250/241/345/274/2172.png" +0 -0
  527. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/346/250/241/345/274/2172a.png" +0 -0
  528. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/346/250/241/345/274/2173.png" +0 -0
  529. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/346/250/241/345/274/2173a.png" +0 -0
  530. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/346/250/241/345/274/2174.png" +0 -0
  531. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/346/250/241/345/274/2174a.png" +0 -0
  532. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/346/250/241/345/274/2175.png" +0 -0
  533. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/346/250/241/345/274/2175a.png" +0 -0
  534. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/346/250/241/345/274/2176.png" +0 -0
  535. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D4/346/250/241/345/274/2176a.png" +0 -0
  536. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/DAK120_DIGITAL.png +0 -0
  537. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/DAX120_DIGITAL.png +0 -0
  538. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/DCZ1.png +0 -0
  539. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/DFROZEN_HORIZON_PRO.png +0 -0
  540. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/DFROZEN_MAGIC_PRO.png +0 -0
  541. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/DLC1.png +0 -0
  542. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/DLC2.png +0 -0
  543. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/DLF10.png +0 -0
  544. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/DLF11.png +0 -0
  545. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/DLF12.png +0 -0
  546. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/DLF13.png +0 -0
  547. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/DLF15.png +0 -0
  548. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/DLF8.png +0 -0
  549. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/DPA120 DIGITAL.png +0 -0
  550. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/DPA120_DIGITAL.png +0 -0
  551. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/Dch1.png +0 -0
  552. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/Dch2.png +0 -0
  553. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/Dch3.png +0 -0
  554. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/Dch4.png +0 -0
  555. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/Dchcz1.png +0 -0
  556. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D/344/270/213/346/213/211/346/241/206.png" +0 -0
  557. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D/344/270/213/346/213/211/346/241/2062.png" +0 -0
  558. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D/344/270/213/346/213/211/350/217/234/345/215/225.png" +0 -0
  559. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D/344/270/213/346/213/211/350/217/234/345/215/2252.png" +0 -0
  560. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D/344/270/213/346/213/211/351/253/230/344/272/256.png" +0 -0
  561. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/D/344/270/213/346/213/211/351/253/230/344/272/2562.png" +0 -0
  562. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/F0/345/211/257/345/261/217.png" +0 -0
  563. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/F0/345/211/257/345/261/217d.png" +0 -0
  564. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/F0/345/211/257/345/261/217e.png" +0 -0
  565. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/F0/345/211/257/345/261/217en.png" +0 -0
  566. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/F0/345/211/257/345/261/217f.png" +0 -0
  567. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/F0/345/211/257/345/261/217h.png" +0 -0
  568. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/F0/345/211/257/345/261/217p.png" +0 -0
  569. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/F0/345/211/257/345/261/217r.png" +0 -0
  570. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/F0/345/211/257/345/261/217tc.png" +0 -0
  571. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/F0/345/211/257/345/261/217x.png" +0 -0
  572. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/FROZEN_WARFRAME_Ultra.png +0 -0
  573. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/FROZEN_WARFRAME_Ultraa.png +0 -0
  574. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/344/272/256/345/272/246/350/260/203/346/225/264.png" +0 -0
  575. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/345/212/250/347/224/273/350/201/224/345/212/250.png" +0 -0
  576. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
  577. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/345/242/236/345/212/240/345/206/205/345/256/271/351/201/256/347/275/251.png" +0 -0
  578. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/345/277/253/346/215/267/346/226/271/345/274/217.png" +0 -0
  579. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/345/277/253/346/215/267/346/226/271/345/274/217d.png" +0 -0
  580. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/345/277/253/346/215/267/346/226/271/345/274/217e.png" +0 -0
  581. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/345/277/253/346/215/267/346/226/271/345/274/217en.png" +0 -0
  582. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/345/277/253/346/215/267/346/226/271/345/274/217f.png" +0 -0
  583. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/345/277/253/346/215/267/346/226/271/345/274/217p.png" +0 -0
  584. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/345/277/253/346/215/267/346/226/271/345/274/217r.png" +0 -0
  585. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/345/277/253/346/215/267/346/226/271/345/274/217tc.png" +0 -0
  586. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/345/277/253/346/215/267/346/226/271/345/274/217x.png" +0 -0
  587. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/346/227/266/351/227/264/346/230/276/347/244/272.png" +0 -0
  588. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/346/227/266/351/227/264/346/230/276/347/244/272en.png" +0 -0
  589. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/346/227/266/351/227/264/346/230/276/347/244/272tc.png" +0 -0
  590. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/346/250/241/345/235/227/350/256/276/347/275/256.png" +0 -0
  591. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/347/263/273/347/273/237/344/277/241/346/201/257.png" +0 -0
  592. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
  593. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
  594. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/350/207/252/345/256/232/346/226/207/345/255/227.png" +0 -0
  595. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/350/207/252/345/256/232/346/226/207/345/255/227en.png" +0 -0
  596. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/350/207/252/345/256/232/346/226/207/345/255/227tc.png" +0 -0
  597. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/351/224/256/347/233/230/350/201/224/345/212/2501.png" +0 -0
  598. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/351/224/256/347/233/230/350/201/224/345/212/2502.png" +0 -0
  599. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P01/351/224/256/347/233/230/350/201/224/345/212/2503.png" +0 -0
  600. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0M1.png +0 -0
  601. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0M2.png +0 -0
  602. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0M3.png +0 -0
  603. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0M4.png +0 -0
  604. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0M5.png +0 -0
  605. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0M5a.png +0 -0
  606. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0M6.png +0 -0
  607. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
  608. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217110480.png" +0 -0
  609. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217116480.png" +0 -0
  610. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/2171280480.png" +0 -0
  611. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217160480.png" +0 -0
  612. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217180400.png" +0 -0
  613. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217180480.png" +0 -0
  614. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217240240.png" +0 -0
  615. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217240320.png" +0 -0
  616. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217240400.png" +0 -0
  617. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217240427.png" +0 -0
  618. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217270480.png" +0 -0
  619. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217320240.png" +0 -0
  620. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217320320.png" +0 -0
  621. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/21732086.png" +0 -0
  622. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217360360.png" +0 -0
  623. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217400180.png" +0 -0
  624. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217400240.png" +0 -0
  625. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217427240.png" +0 -0
  626. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217480110.png" +0 -0
  627. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217480116.png" +0 -0
  628. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217480160.png" +0 -0
  629. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217480180.png" +0 -0
  630. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217480270.png" +0 -0
  631. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/217480480.png" +0 -0
  632. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/345/233/276/347/211/207/350/243/201/345/207/21786320.png" +0 -0
  633. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/346/222/255/346/224/276.png" +0 -0
  634. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/346/222/255/346/224/276/345/231/250/346/216/247/345/210/266.png" +0 -0
  635. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/346/232/202/345/201/234.png" +0 -0
  636. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217110480.png" +0 -0
  637. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217116480.png" +0 -0
  638. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/2171280480.png" +0 -0
  639. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217160480.png" +0 -0
  640. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217180400.png" +0 -0
  641. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217180480.png" +0 -0
  642. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217240240.png" +0 -0
  643. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217240320.png" +0 -0
  644. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217240400.png" +0 -0
  645. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217240427.png" +0 -0
  646. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217270480.png" +0 -0
  647. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217320240.png" +0 -0
  648. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217320320.png" +0 -0
  649. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/21732086.png" +0 -0
  650. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217360360.png" +0 -0
  651. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217400180.png" +0 -0
  652. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217400240.png" +0 -0
  653. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217427240.png" +0 -0
  654. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217480110.png" +0 -0
  655. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217480116.png" +0 -0
  656. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217480160.png" +0 -0
  657. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217480180.png" +0 -0
  658. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217480270.png" +0 -0
  659. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/217480480.png" +0 -0
  660. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/350/243/201/345/207/21786320.png" +0 -0
  661. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/351/242/204/350/247/210.png" +0 -0
  662. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/351/242/204/350/247/210a.png" +0 -0
  663. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/351/242/204/350/247/210/345/274/271/347/252/2271280X480.png" +0 -0
  664. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X440.png" +0 -0
  665. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/351/242/204/350/247/210/345/274/271/347/252/2271920X462.png" +0 -0
  666. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/351/242/204/350/247/210/345/274/271/347/252/227320X960.png" +0 -0
  667. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/351/242/204/350/247/210/345/274/271/347/252/227360X800.png" +0 -0
  668. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/351/242/204/350/247/210/345/274/271/347/252/227440X1920.png" +0 -0
  669. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/351/242/204/350/247/210/345/274/271/347/252/227462X1920.png" +0 -0
  670. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/351/242/204/350/247/210/345/274/271/347/252/227480X1280.png" +0 -0
  671. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/351/242/204/350/247/210/345/274/271/347/252/227480X800.png" +0 -0
  672. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/351/242/204/350/247/210/345/274/271/347/252/227480X854.png" +0 -0
  673. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/351/242/204/350/247/210/345/274/271/347/252/227540X960.png" +0 -0
  674. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/351/242/204/350/247/210/345/274/271/347/252/227800X360.png" +0 -0
  675. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/351/242/204/350/247/210/345/274/271/347/252/227800X480.png" +0 -0
  676. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/351/242/204/350/247/210/345/274/271/347/252/227854X480.png" +0 -0
  677. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/351/242/204/350/247/210/345/274/271/347/252/227960X320.png" +0 -0
  678. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P0/351/242/204/350/247/210/345/274/271/347/252/227960X540.png" +0 -0
  679. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P12H.png +0 -0
  680. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P1/347/263/273/347/273/237/344/277/241/346/201/257en.png" +0 -0
  681. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P1/347/263/273/347/273/237/344/277/241/346/201/257tc.png" +0 -0
  682. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P240240.png +0 -0
  683. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P240320.png +0 -0
  684. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P24H.png +0 -0
  685. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P320240.png +0 -0
  686. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P320320.png +0 -0
  687. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/PDM.png +0 -0
  688. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/PDMY.png +0 -0
  689. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/PL0.png +0 -0
  690. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/PL1.png +0 -0
  691. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/PL2.png +0 -0
  692. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/PL3.png +0 -0
  693. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/PM1.png +0 -0
  694. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/PM1a.png +0 -0
  695. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/PM2.png +0 -0
  696. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/PM2a.png +0 -0
  697. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/PM3.png +0 -0
  698. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/PM3a.png +0 -0
  699. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/PM4.png +0 -0
  700. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/PM4a.png +0 -0
  701. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/PM5.png +0 -0
  702. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/PM5a.png +0 -0
  703. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/PM6.png +0 -0
  704. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/PM6a.png +0 -0
  705. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/PMD.png +0 -0
  706. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/PYMD.png +0 -0
  707. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/Panel_background.png +0 -0
  708. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/Panel_overlay.png +0 -0
  709. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/Panel_params.png +0 -0
  710. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/344/270/213/346/213/211/346/241/206.png" +0 -0
  711. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/344/270/213/346/213/211/346/241/206/345/272/225/345/233/2762X.png" +0 -0
  712. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/344/270/213/346/213/211/346/241/206/345/272/225/345/233/2764X.png" +0 -0
  713. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/344/270/213/346/213/211/346/241/206/351/253/230/344/272/256.png" +0 -0
  714. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/344/270/273/351/242/230/345/210/206/347/261/273/351/200/211/346/213/251.png" +0 -0
  715. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/344/270/273/351/242/230/345/210/206/347/261/273/351/200/211/346/213/2510.png" +0 -0
  716. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/344/270/273/351/242/230/350/256/276/347/275/256.png" +0 -0
  717. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/344/270/273/351/242/230/350/256/276/347/275/256a.png" +0 -0
  718. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/344/270/273/351/242/230/350/275/256/346/222/255.png" +0 -0
  719. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/344/270/273/351/242/230/350/275/256/346/222/255a.png" +0 -0
  720. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
  721. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/344/272/221/347/253/257/344/270/273/351/242/230a.png" +0 -0
  722. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
  723. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/344/272/221/347/253/257/350/203/214/346/231/257a.png" +0 -0
  724. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/344/272/256/345/272/246/346/235/241.png" +0 -0
  725. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/344/277/235/345/255/230/344/270/273/351/242/230.png" +0 -0
  726. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/205/263/351/227/255/346/214/211/351/222/256.png" +0 -0
  727. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/205/263/351/227/255/346/214/211/351/222/2562.png" +0 -0
  728. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/207/217.png" +0 -0
  729. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/211/252/350/276/221/345/235/227a.png" +0 -0
  730. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/211/252/350/276/221/345/235/227b.png" +0 -0
  731. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/212/237/350/203/275/351/200/211/346/213/251.png" +0 -0
  732. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/212/237/350/203/275/351/200/211/346/213/251a.png" +0 -0
  733. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/212/240.png" +0 -0
  734. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/212/250/347/224/273.png" +0 -0
  735. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/215/225/344/275/215/345/274/200/345/205/263.png" +0 -0
  736. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/215/225/344/275/215/345/274/200/345/205/263a.png" +0 -0
  737. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/217/226/350/211/262.png" +0 -0
  738. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/220/270/347/256/241.png" +0 -0
  739. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/233/276/346/240/207.png" +0 -0
  740. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/233/276/347/211/207.png" +0 -0
  741. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/234/206/345/275/242/345/205/263/351/227/255.png" +0 -0
  742. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/234/206/345/275/242/347/241/256/345/256/232.png" +0 -0
  743. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/242/236/345/212/240/345/206/205/345/256/271.png" +0 -0
  744. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/242/236/345/212/240/345/233/276/346/240/207.png" +0 -0
  745. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/242/236/345/212/240/346/226/207/346/234/254.png" +0 -0
  746. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/242/236/345/212/240/346/226/207/346/234/2541.png" +0 -0
  747. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/242/236/345/212/240/346/227/245/346/234/237.png" +0 -0
  748. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/242/236/345/212/240/346/227/245/346/234/2371.png" +0 -0
  749. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/242/236/345/212/240/346/227/266/351/227/264.png" +0 -0
  750. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/242/236/345/212/240/346/227/266/351/227/2641.png" +0 -0
  751. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/242/236/345/212/240/346/230/237/346/234/237.png" +0 -0
  752. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/242/236/345/212/240/346/230/237/346/234/2371.png" +0 -0
  753. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/244/232/351/200/211.png" +0 -0
  754. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/244/232/351/200/211a.png" +0 -0
  755. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/256/275/345/272/246/351/200/202/345/272/224.png" +0 -0
  756. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/257/274/345/205/245.png" +0 -0
  757. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/257/274/345/207/272.png" +0 -0
  758. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/257/274/345/207/272/346/211/200/346/234/211/344/270/273/351/242/230.png" +0 -0
  759. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/270/256/345/212/251.png" +0 -0
  760. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/345/277/253/346/215/267/346/226/271/345/274/217/345/244/247/345/260/217/346/273/221/345/212/250/346/235/241.png" +0 -0
  761. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/346/225/260/345/255/227/345/255/227/344/275/223.png" +0 -0
  762. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/346/225/260/346/215/256.png" +0 -0
  763. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/346/226/207/345/255/227/345/255/227/344/275/223.png" +0 -0
  764. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/346/226/207/346/234/254.png" +0 -0
  765. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/346/227/213/350/275/254.png" +0 -0
  766. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/346/227/245/346/234/237.png" +0 -0
  767. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/346/227/266/351/227/264.png" +0 -0
  768. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/346/230/237/346/234/237.png" +0 -0
  769. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/346/230/276/347/244/272/350/276/271/346/241/206.png" +0 -0
  770. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/346/230/276/347/244/272/350/276/271/346/241/206A.png" +0 -0
  771. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/346/234/254/345/234/260/344/270/273/351/242/230.png" +0 -0
  772. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/346/234/254/345/234/260/344/270/273/351/242/230a.png" +0 -0
  773. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/346/267/273/345/212/240/351/223/276/346/216/2451.png" +0 -0
  774. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/346/273/221/345/212/250/345/205/263.png" +0 -0
  775. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/346/273/221/345/212/250/345/274/200.png" +0 -0
  776. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/346/273/221/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
  777. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/346/273/232/345/212/250/346/235/241/345/272/225/345/233/276.png" +0 -0
  778. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/346/273/232/345/212/250/346/235/241/346/214/211/351/222/256.png" +0 -0
  779. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/201/265/345/212/250/345/262/233.png" +0 -0
  780. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/201/265/345/212/250/345/262/233180.png" +0 -0
  781. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/201/265/345/212/250/345/262/233270.png" +0 -0
  782. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/201/265/345/212/250/345/262/23390.png" +0 -0
  783. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/201/265/345/212/250/345/262/233a.png" +0 -0
  784. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/201/265/345/212/250/345/262/233a180.png" +0 -0
  785. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/201/265/345/212/250/345/262/233a270.png" +0 -0
  786. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/201/265/345/212/250/345/262/233a90.png" +0 -0
  787. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/201/265/345/212/250/345/262/233b.png" +0 -0
  788. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/201/265/345/212/250/345/262/233b180.png" +0 -0
  789. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/201/265/345/212/250/345/262/233b270.png" +0 -0
  790. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/201/265/345/212/250/345/262/233b90.png" +0 -0
  791. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/202/271/351/200/211/346/241/206.png" +0 -0
  792. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/202/271/351/200/211/346/241/206A.png" +0 -0
  793. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/216/257H1.png" +0 -0
  794. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/216/257H2.png" +0 -0
  795. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/216/257H3.png" +0 -0
  796. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/216/257H4.png" +0 -0
  797. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/216/257H5.png" +0 -0
  798. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/216/257H6.png" +0 -0
  799. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/233/264/346/222/255/350/247/206/351/242/221/350/275/275/345/205/245.png" +0 -0
  800. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/272/277/347/250/213/345/215/225.png" +0 -0
  801. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/272/277/347/250/213/345/244/232.png" +0 -0
  802. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/275/221/347/273/234.png" +0 -0
  803. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/347/275/221/347/273/234/346/214/211/351/222/256.png" +0 -0
  804. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/350/222/231/346/235/277.png" +0 -0
  805. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/350/243/201/345/207/217.png" +0 -0
  806. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/350/247/206/351/242/221.png" +0 -0
  807. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/350/275/256/346/222/255.png" +0 -0
  808. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/350/275/256/346/222/2551.png" +0 -0
  809. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/350/275/256/346/222/2552.png" +0 -0
  810. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/350/275/256/346/222/2553.png" +0 -0
  811. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/350/275/256/346/222/2554.png" +0 -0
  812. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/350/275/256/346/222/2555.png" +0 -0
  813. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/350/275/256/346/222/2556.png" +0 -0
  814. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/350/275/256/346/222/255a.png" +0 -0
  815. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/350/275/256/346/222/255/351/200/211/346/241/206.png" +0 -0
  816. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/350/275/275/345/205/245/345/212/250/347/224/273.png" +0 -0
  817. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/350/277/233/345/272/246/346/235/241.png" +0 -0
  818. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/200/211/344/270/255.png" +0 -0
  819. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/200/211/346/213/251/346/241/206M.png" +0 -0
  820. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/200/211/346/213/251/346/241/206Ma.png" +0 -0
  821. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210110X480.png" +0 -0
  822. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210116X480.png" +0 -0
  823. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210160X480.png" +0 -0
  824. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210180X400.png" +0 -0
  825. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210180X480.png" +0 -0
  826. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210240X240.png" +0 -0
  827. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210240X320.png" +0 -0
  828. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210240X400.png" +0 -0
  829. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210240X427.png" +0 -0
  830. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210270X480.png" +0 -0
  831. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210320X240.png" +0 -0
  832. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210320X320.png" +0 -0
  833. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210320X320/345/234/206.png" +0 -0
  834. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210320X86.png" +0 -0
  835. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210360360/345/234/206.png" +0 -0
  836. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210400X180.png" +0 -0
  837. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210400X240.png" +0 -0
  838. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210427X240.png" +0 -0
  839. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210480X110.png" +0 -0
  840. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210480X116.png" +0 -0
  841. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210480X160.png" +0 -0
  842. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210480X180.png" +0 -0
  843. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210480X270.png" +0 -0
  844. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210480X480.png" +0 -0
  845. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210480X480/345/234/206.png" +0 -0
  846. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/21086X320.png" +0 -0
  847. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210/345/212/250/347/224/273.png" +0 -0
  848. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251320320/345/234/206.png" +0 -0
  849. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251360360/345/234/206.png" +0 -0
  850. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/204/350/247/210/345/234/206/345/275/242/351/201/256/347/275/251480480/345/234/206.png" +0 -0
  851. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/234/350/211/262/346/273/221/345/212/250/345/235/227.png" +0 -0
  852. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/242/234/350/211/262/351/200/211/346/213/251/345/234/210.png" +0 -0
  853. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/P/351/253/230/345/272/246/351/200/202/345/272/224.png" +0 -0
  854. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/p0/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
  855. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/p0/344/272/221/347/253/257/350/203/214/346/231/257.png" +0 -0
  856. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/p0/344/272/221/347/253/257/350/203/214/346/231/257d.png" +0 -0
  857. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/p0/344/272/221/347/253/257/350/203/214/346/231/257e.png" +0 -0
  858. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/p0/344/272/221/347/253/257/350/203/214/346/231/257en.png" +0 -0
  859. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/p0/344/272/221/347/253/257/350/203/214/346/231/257f.png" +0 -0
  860. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/p0/344/272/221/347/253/257/350/203/214/346/231/257h.png" +0 -0
  861. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/p0/344/272/221/347/253/257/350/203/214/346/231/257p.png" +0 -0
  862. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/p0/344/272/221/347/253/257/350/203/214/346/231/257r.png" +0 -0
  863. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/p0/344/272/221/347/253/257/350/203/214/346/231/257tc.png" +0 -0
  864. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/p0/344/272/221/347/253/257/350/203/214/346/231/257x.png" +0 -0
  865. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/p/344/272/221/347/253/257/344/270/273/351/242/230.png" +0 -0
  866. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/ucBoFangQiKongZhi1.BackgroundImage.png +0 -0
  867. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/ucBoFangQiKongZhi1_BackgroundImage.png +0 -0
  868. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/ucVideoCut1.BackgroundImage.png +0 -0
  869. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/ucVideoCut1_BackgroundImage.png +0 -0
  870. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/ucXiTongXianShi1.BackgroundImage.png +0 -0
  871. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/ucXiTongXianShiAdd1.BackgroundImage.png +0 -0
  872. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/ucXiTongXianShiColor1.BackgroundImage.png +0 -0
  873. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets/ucXiTongXianShiTable1.BackgroundImage.png +0 -0
  874. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/assets.py +0 -0
  875. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/base.py +0 -0
  876. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/color_and_add_panels.py +0 -0
  877. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/constants.py +0 -0
  878. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/display_mode_panels.py +0 -0
  879. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/eyedropper.py +0 -0
  880. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/led_handler.py +0 -0
  881. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/metrics_mediator.py +0 -0
  882. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/overlay_element.py +0 -0
  883. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/overlay_grid.py +0 -0
  884. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/pipewire_capture.py +0 -0
  885. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/screen_capture.py +0 -0
  886. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/splash.py +0 -0
  887. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/uc_about.py +0 -0
  888. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/uc_activity_sidebar.py +0 -0
  889. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/uc_color_wheel.py +0 -0
  890. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/uc_device.py +0 -0
  891. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/uc_image_cut.py +0 -0
  892. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/uc_info_module.py +0 -0
  893. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/uc_led_control.py +0 -0
  894. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/uc_preview.py +0 -0
  895. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/uc_screen_led.py +0 -0
  896. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/uc_sensor_picker.py +0 -0
  897. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/uc_system_info.py +0 -0
  898. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/uc_theme_mask.py +0 -0
  899. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/uc_theme_setting.py +0 -0
  900. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/uc_theme_web.py +0 -0
  901. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/gui/uc_video_cut.py +0 -0
  902. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/install/__init__.py +0 -0
  903. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/install/gui.py +0 -0
  904. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/ipc.py +0 -0
  905. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/services/__init__.py +0 -0
  906. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/services/audio.py +0 -0
  907. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/services/device.py +0 -0
  908. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/services/image.py +0 -0
  909. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/services/lcd_config.py +0 -0
  910. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/services/led.py +0 -0
  911. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/services/led_config.py +0 -0
  912. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/services/led_effects.py +0 -0
  913. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/services/media.py +0 -0
  914. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/services/overlay.py +0 -0
  915. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/services/perf.py +0 -0
  916. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/services/renderer.py +0 -0
  917. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/services/system.py +0 -0
  918. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/services/theme_loader.py +0 -0
  919. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/services/theme_persistence.py +0 -0
  920. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/src/trcc/services/video_cache.py +0 -0
  921. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/README.md +0 -0
  922. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/__init__.py +0 -0
  923. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/__init__.py +0 -0
  924. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/__init__.py +0 -0
  925. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/bsd/__init__.py +0 -0
  926. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/bsd/test_detector.py +0 -0
  927. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/bsd/test_scsi.py +0 -0
  928. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/bsd/test_scsi_protocol.py +0 -0
  929. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/conftest.py +0 -0
  930. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/linux/__init__.py +0 -0
  931. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/linux/test_scsi.py +0 -0
  932. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/macos/__init__.py +0 -0
  933. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/macos/test_detector.py +0 -0
  934. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/macos/test_scsi.py +0 -0
  935. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/test_bulk.py +0 -0
  936. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/test_detector.py +0 -0
  937. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/test_factory.py +0 -0
  938. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/test_frame.py +0 -0
  939. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/test_hid.py +0 -0
  940. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/test_implementations.py +0 -0
  941. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/test_led.py +0 -0
  942. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/test_led_kvm.py +0 -0
  943. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/test_ly.py +0 -0
  944. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/test_scsi.py +0 -0
  945. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/windows/__init__.py +0 -0
  946. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/windows/test_detector.py +0 -0
  947. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/device/windows/test_scsi.py +0 -0
  948. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/infra/__init__.py +0 -0
  949. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/infra/test_data_repository.py +0 -0
  950. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/infra/test_dc_config.py +0 -0
  951. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/infra/test_dc_parser.py +0 -0
  952. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/infra/test_dc_writer.py +0 -0
  953. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/infra/test_debug_report.py +0 -0
  954. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/infra/test_media_player.py +0 -0
  955. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/infra/test_theme_cloud.py +0 -0
  956. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/infra/test_theme_downloader.py +0 -0
  957. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/system/__init__.py +0 -0
  958. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/system/bsd/__init__.py +0 -0
  959. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/system/bsd/test_hardware.py +0 -0
  960. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/system/bsd/test_platform.py +0 -0
  961. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/system/bsd/test_sensors.py +0 -0
  962. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/system/linux/__init__.py +0 -0
  963. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/system/linux/test_hardware.py +0 -0
  964. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/system/linux/test_platform.py +0 -0
  965. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/system/linux/test_sensors.py +0 -0
  966. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/system/macos/__init__.py +0 -0
  967. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/system/macos/test_hardware.py +0 -0
  968. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/system/macos/test_platform.py +0 -0
  969. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/system/macos/test_sensors.py +0 -0
  970. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/system/test_config.py +0 -0
  971. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/system/windows/__init__.py +0 -0
  972. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/system/windows/test_hardware.py +0 -0
  973. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/system/windows/test_platform.py +0 -0
  974. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/adapters/system/windows/test_sensors.py +0 -0
  975. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/api/__init__.py +0 -0
  976. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/api/conftest.py +0 -0
  977. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/api/test_api.py +0 -0
  978. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/api/test_api_security.py +0 -0
  979. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/cli/__init__.py +0 -0
  980. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/cli/conftest.py +0 -0
  981. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/cli/test_cli.py +0 -0
  982. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/cli/test_device.py +0 -0
  983. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/cli/test_led.py +0 -0
  984. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/cli/test_serve.py +0 -0
  985. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/cli/test_system.py +0 -0
  986. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/cli/test_theme.py +0 -0
  987. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/conftest.py +0 -0
  988. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/core/__init__.py +0 -0
  989. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/core/test_app_lifecycle.py +0 -0
  990. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/core/test_app_scan.py +0 -0
  991. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/core/test_builder.py +0 -0
  992. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/core/test_builder_routing.py +0 -0
  993. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/core/test_color.py +0 -0
  994. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/core/test_encoding.py +0 -0
  995. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/core/test_i18n.py +0 -0
  996. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/core/test_instance.py +0 -0
  997. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/core/test_led_device.py +0 -0
  998. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/core/test_led_segment.py +0 -0
  999. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/core/test_led_segment_ax120.py +0 -0
  1000. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/core/test_models.py +0 -0
  1001. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/core/test_paths.py +0 -0
  1002. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/core/test_perf.py +0 -0
  1003. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/core/test_proxy_factory.py +0 -0
  1004. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/gui/__init__.py +0 -0
  1005. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/gui/conftest.py +0 -0
  1006. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/gui/test_base.py +0 -0
  1007. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/gui/test_base_panel.py +0 -0
  1008. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/gui/test_constants.py +0 -0
  1009. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/gui/test_led_control.py +0 -0
  1010. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/gui/test_misc.py +0 -0
  1011. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/gui/test_preview.py +0 -0
  1012. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/gui/test_screen_capture.py +0 -0
  1013. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/gui/test_theme_mask.py +0 -0
  1014. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/gui/test_theme_setting.py +0 -0
  1015. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/gui/test_widgets.py +0 -0
  1016. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/services/__init__.py +0 -0
  1017. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/services/conftest.py +0 -0
  1018. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/services/test_device.py +0 -0
  1019. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/services/test_image_ansi.py +0 -0
  1020. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/services/test_led.py +0 -0
  1021. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/services/test_led_config.py +0 -0
  1022. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/services/test_led_effects.py +0 -0
  1023. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/services/test_media.py +0 -0
  1024. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/services/test_overlay.py +0 -0
  1025. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/services/test_perf.py +0 -0
  1026. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/services/test_system.py +0 -0
  1027. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/services/test_theme.py +0 -0
  1028. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/services/test_theme_loader.py +0 -0
  1029. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/services/test_video_cache.py +0 -0
  1030. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/test_architecture.py +0 -0
  1031. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/test_conf.py +0 -0
  1032. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/test_cpu.py +0 -0
  1033. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/test_integration.py +0 -0
  1034. {trcc_linux-9.3.7 → trcc_linux-9.3.8}/tests/test_memory.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: trcc-linux
3
- Version: 9.3.7
3
+ Version: 9.3.8
4
4
  Summary: Linux implementation of Thermalright LCD Control Center
5
5
  Project-URL: Homepage, https://github.com/Lexonight1/thermalright-trcc-linux
6
6
  Project-URL: Documentation, https://github.com/Lexonight1/thermalright-trcc-linux#readme
@@ -83,7 +83,7 @@ Description-Content-Type: text/markdown
83
83
  [![Platform](https://img.shields.io/badge/platform-Linux-FCC624?logo=linux&logoColor=black)](https://github.com/Lexonight1/thermalright-trcc-linux)
84
84
 
85
85
  [![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)
86
- [![Tests](https://img.shields.io/badge/tests-5577_passed-brightgreen.svg)](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
86
+ [![Tests](https://img.shields.io/badge/tests-5799_passed-brightgreen.svg)](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
87
87
  [![Coverage](https://img.shields.io/badge/coverage-72%25-brightgreen.svg)](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
88
88
  [![Python](https://img.shields.io/badge/python-3.9%2B-blue.svg)](https://python.org)
89
89
  [![Code Style](https://img.shields.io/badge/code_style-ruff-D7FF64?logo=ruff&logoColor=black)](https://docs.astral.sh/ruff/)
@@ -300,7 +300,7 @@ Set the angle to **90°** (or 270°) in the GUI, then open **Cloud Themes** —
300
300
  | **Multi-device** | Per-device config, auto-detect, multi-device with device selection |
301
301
  | **Security** | udev rules, polkit policy, SELinux support, no root required after setup |
302
302
 
303
- **Under the hood**: 147 source files, ~49K lines of Python, 5577 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.
303
+ **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.
304
304
 
305
305
  ### What we do better than Windows TRCC
306
306
 
@@ -390,9 +390,9 @@ A big thanks to everyone who has contributed invaluable reports to this project:
390
390
 
391
391
  **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)**
392
392
 
393
- **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)**
393
+ **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)**
394
394
 
395
- **GrandVision 360 AIO** — **[bipobuilt](https://github.com/bipobuilt)** · **[cadeon](https://github.com/cadeon)** · **[Reborn627](https://github.com/Reborn627)** · **[TheManchineel](https://github.com/TheManchineel)**
395
+ **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)**
396
396
 
397
397
  **Assassin Spirit 120 Vision** — **[michael-spinelli](https://github.com/michael-spinelli)** · **[acioannina-wq](https://github.com/acioannina-wq)**
398
398
 
@@ -410,7 +410,7 @@ A big thanks to everyone who has contributed invaluable reports to this project:
410
410
 
411
411
  **Elite Vision 360** — **[tensaiteki](https://github.com/tensaiteki)**
412
412
 
413
- **Mjolnir Vision 360** — **[Pikarz](https://github.com/Pikarz)**
413
+ **Mjolnir Vision 360** — **[Pikarz](https://github.com/Pikarz)** · **[RonyPony1234](https://github.com/RonyPony1234)**
414
414
 
415
415
  **Peerless Vision** — **[Mr-Renegade](https://github.com/Mr-Renegade)**
416
416
 
@@ -424,7 +424,7 @@ A big thanks to everyone who has contributed invaluable reports to this project:
424
424
 
425
425
  Thanks to everyone who took a moment to star this project.
426
426
 
427
- **[akasvi](https://github.com/akasvi)** · **[alessa-lara](https://github.com/alessa-lara)** · **[ArcaneCoder404](https://github.com/ArcaneCoder404)** · **[azrael1911](https://github.com/azrael1911)** · **[betolink](https://github.com/betolink)** · **[bive242](https://github.com/bive242)** · **[BrunoLeguizamon05](https://github.com/BrunoLeguizamon05)** · **[cancos1](https://github.com/cancos1)** · **[cesarnr21](https://github.com/cesarnr21)** · **[codeflitting](https://github.com/codeflitting)** · **[dabombUSA](https://github.com/dabombUSA)** · **[damachine](https://github.com/damachine)** · **[DasFlogetier](https://github.com/DasFlogetier)** · **[david43](https://github.com/david43)** · **[eap5](https://github.com/eap5)** · **[emaspa](https://github.com/emaspa)** · **[Gdetrane](https://github.com/Gdetrane)** · **[greaseyjockey](https://github.com/greaseyjockey)** · **[gupsterg](https://github.com/gupsterg)** · **[israelsz](https://github.com/israelsz)** · **[jezzaw007](https://github.com/jezzaw007)** · **[jhlasnik](https://github.com/jhlasnik)** · **[jmo808](https://github.com/jmo808)** · **[Jorann](https://github.com/Jorann)** · **[knappstar](https://github.com/knappstar)** · **[Legendarycentaur](https://github.com/Legendarycentaur)** · **[Leonnaki](https://github.com/Leonnaki)** · **[lotte25](https://github.com/lotte25)** · **[mgaruccio](https://github.com/mgaruccio)** · **[michelle0812](https://github.com/michelle0812)** · **[mkogut](https://github.com/mkogut)** · **[nathanielhernandez](https://github.com/nathanielhernandez)** · **[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)** · **[qussaif10](https://github.com/qussaif10)** · **[qwerty22121998](https://github.com/qwerty22121998)** · **[Rehaell](https://github.com/Rehaell)** · **[rhuggins573-crypto](https://github.com/rhuggins573-crypto)** · **[riodevelop](https://github.com/riodevelop)** · **[rslater](https://github.com/rslater)** · **[saucymcbeef](https://github.com/saucymcbeef)** · **[shadowepaxeor-glitch](https://github.com/shadowepaxeor-glitch)** · **[ShaunnyBwoy](https://github.com/ShaunnyBwoy)** · **[Smokemic](https://github.com/Smokemic)** · **[Spebelgenenst](https://github.com/Spebelgenenst)** · **[spiritofjon](https://github.com/spiritofjon)** · **[stephenvalente](https://github.com/stephenvalente)** · **[Thymur](https://github.com/Thymur)** · **[Torotin](https://github.com/Torotin)** · **[urbnywrt](https://github.com/urbnywrt)** · **[Vydon](https://github.com/Vydon)** · **[Xentrino](https://github.com/Xentrino)** · **[YahusRevus](https://github.com/YahusRevus)** · **[Ziusz](https://github.com/Ziusz)**
427
+ **[akasvi](https://github.com/akasvi)** · **[alessa-lara](https://github.com/alessa-lara)** · **[ArcaneCoder404](https://github.com/ArcaneCoder404)** · **[azrael1911](https://github.com/azrael1911)** · **[betolink](https://github.com/betolink)** · **[bive242](https://github.com/bive242)** · **[BrunoLeguizamon05](https://github.com/BrunoLeguizamon05)** · **[cancos1](https://github.com/cancos1)** · **[cesarnr21](https://github.com/cesarnr21)** · **[codeflitting](https://github.com/codeflitting)** · **[dabombUSA](https://github.com/dabombUSA)** · **[damachine](https://github.com/damachine)** · **[DasFlogetier](https://github.com/DasFlogetier)** · **[david43](https://github.com/david43)** · **[eap5](https://github.com/eap5)** · **[emaspa](https://github.com/emaspa)** · **[falumamx](https://github.com/falumamx)** · **[Gdetrane](https://github.com/Gdetrane)** · **[greaseyjockey](https://github.com/greaseyjockey)** · **[gupsterg](https://github.com/gupsterg)** · **[israelsz](https://github.com/israelsz)** · **[jezzaw007](https://github.com/jezzaw007)** · **[jhlasnik](https://github.com/jhlasnik)** · **[jmo808](https://github.com/jmo808)** · **[Jorann](https://github.com/Jorann)** · **[knappstar](https://github.com/knappstar)** · **[Legendarycentaur](https://github.com/Legendarycentaur)** · **[Leonnaki](https://github.com/Leonnaki)** · **[lotte25](https://github.com/lotte25)** · **[mgaruccio](https://github.com/mgaruccio)** · **[michelle0812](https://github.com/michelle0812)** · **[mkogut](https://github.com/mkogut)** · **[nathanielhernandez](https://github.com/nathanielhernandez)** · **[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)** · **[qussaif10](https://github.com/qussaif10)** · **[qwerty22121998](https://github.com/qwerty22121998)** · **[Rehaell](https://github.com/Rehaell)** · **[rhuggins573-crypto](https://github.com/rhuggins573-crypto)** · **[riodevelop](https://github.com/riodevelop)** · **[rslater](https://github.com/rslater)** · **[saucymcbeef](https://github.com/saucymcbeef)** · **[shadowepaxeor-glitch](https://github.com/shadowepaxeor-glitch)** · **[ShaunnyBwoy](https://github.com/ShaunnyBwoy)** · **[Smokemic](https://github.com/Smokemic)** · **[Spebelgenenst](https://github.com/Spebelgenenst)** · **[spiritofjon](https://github.com/spiritofjon)** · **[stephenvalente](https://github.com/stephenvalente)** · **[Thymur](https://github.com/Thymur)** · **[Torotin](https://github.com/Torotin)** · **[urbnywrt](https://github.com/urbnywrt)** · **[Vydon](https://github.com/Vydon)** · **[Xentrino](https://github.com/Xentrino)** · **[YahusRevus](https://github.com/YahusRevus)** · **[Ziusz](https://github.com/Ziusz)**
428
428
 
429
429
  ## Faulkers
430
430
 
@@ -15,7 +15,7 @@
15
15
  [![Platform](https://img.shields.io/badge/platform-Linux-FCC624?logo=linux&logoColor=black)](https://github.com/Lexonight1/thermalright-trcc-linux)
16
16
 
17
17
  [![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)
18
- [![Tests](https://img.shields.io/badge/tests-5577_passed-brightgreen.svg)](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
18
+ [![Tests](https://img.shields.io/badge/tests-5799_passed-brightgreen.svg)](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
19
19
  [![Coverage](https://img.shields.io/badge/coverage-72%25-brightgreen.svg)](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
20
20
  [![Python](https://img.shields.io/badge/python-3.9%2B-blue.svg)](https://python.org)
21
21
  [![Code Style](https://img.shields.io/badge/code_style-ruff-D7FF64?logo=ruff&logoColor=black)](https://docs.astral.sh/ruff/)
@@ -232,7 +232,7 @@ Set the angle to **90°** (or 270°) in the GUI, then open **Cloud Themes** —
232
232
  | **Multi-device** | Per-device config, auto-detect, multi-device with device selection |
233
233
  | **Security** | udev rules, polkit policy, SELinux support, no root required after setup |
234
234
 
235
- **Under the hood**: 147 source files, ~49K lines of Python, 5577 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.
235
+ **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.
236
236
 
237
237
  ### What we do better than Windows TRCC
238
238
 
@@ -322,9 +322,9 @@ A big thanks to everyone who has contributed invaluable reports to this project:
322
322
 
323
323
  **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)**
324
324
 
325
- **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)**
325
+ **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)**
326
326
 
327
- **GrandVision 360 AIO** — **[bipobuilt](https://github.com/bipobuilt)** · **[cadeon](https://github.com/cadeon)** · **[Reborn627](https://github.com/Reborn627)** · **[TheManchineel](https://github.com/TheManchineel)**
327
+ **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)**
328
328
 
329
329
  **Assassin Spirit 120 Vision** — **[michael-spinelli](https://github.com/michael-spinelli)** · **[acioannina-wq](https://github.com/acioannina-wq)**
330
330
 
@@ -342,7 +342,7 @@ A big thanks to everyone who has contributed invaluable reports to this project:
342
342
 
343
343
  **Elite Vision 360** — **[tensaiteki](https://github.com/tensaiteki)**
344
344
 
345
- **Mjolnir Vision 360** — **[Pikarz](https://github.com/Pikarz)**
345
+ **Mjolnir Vision 360** — **[Pikarz](https://github.com/Pikarz)** · **[RonyPony1234](https://github.com/RonyPony1234)**
346
346
 
347
347
  **Peerless Vision** — **[Mr-Renegade](https://github.com/Mr-Renegade)**
348
348
 
@@ -356,7 +356,7 @@ A big thanks to everyone who has contributed invaluable reports to this project:
356
356
 
357
357
  Thanks to everyone who took a moment to star this project.
358
358
 
359
- **[akasvi](https://github.com/akasvi)** · **[alessa-lara](https://github.com/alessa-lara)** · **[ArcaneCoder404](https://github.com/ArcaneCoder404)** · **[azrael1911](https://github.com/azrael1911)** · **[betolink](https://github.com/betolink)** · **[bive242](https://github.com/bive242)** · **[BrunoLeguizamon05](https://github.com/BrunoLeguizamon05)** · **[cancos1](https://github.com/cancos1)** · **[cesarnr21](https://github.com/cesarnr21)** · **[codeflitting](https://github.com/codeflitting)** · **[dabombUSA](https://github.com/dabombUSA)** · **[damachine](https://github.com/damachine)** · **[DasFlogetier](https://github.com/DasFlogetier)** · **[david43](https://github.com/david43)** · **[eap5](https://github.com/eap5)** · **[emaspa](https://github.com/emaspa)** · **[Gdetrane](https://github.com/Gdetrane)** · **[greaseyjockey](https://github.com/greaseyjockey)** · **[gupsterg](https://github.com/gupsterg)** · **[israelsz](https://github.com/israelsz)** · **[jezzaw007](https://github.com/jezzaw007)** · **[jhlasnik](https://github.com/jhlasnik)** · **[jmo808](https://github.com/jmo808)** · **[Jorann](https://github.com/Jorann)** · **[knappstar](https://github.com/knappstar)** · **[Legendarycentaur](https://github.com/Legendarycentaur)** · **[Leonnaki](https://github.com/Leonnaki)** · **[lotte25](https://github.com/lotte25)** · **[mgaruccio](https://github.com/mgaruccio)** · **[michelle0812](https://github.com/michelle0812)** · **[mkogut](https://github.com/mkogut)** · **[nathanielhernandez](https://github.com/nathanielhernandez)** · **[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)** · **[qussaif10](https://github.com/qussaif10)** · **[qwerty22121998](https://github.com/qwerty22121998)** · **[Rehaell](https://github.com/Rehaell)** · **[rhuggins573-crypto](https://github.com/rhuggins573-crypto)** · **[riodevelop](https://github.com/riodevelop)** · **[rslater](https://github.com/rslater)** · **[saucymcbeef](https://github.com/saucymcbeef)** · **[shadowepaxeor-glitch](https://github.com/shadowepaxeor-glitch)** · **[ShaunnyBwoy](https://github.com/ShaunnyBwoy)** · **[Smokemic](https://github.com/Smokemic)** · **[Spebelgenenst](https://github.com/Spebelgenenst)** · **[spiritofjon](https://github.com/spiritofjon)** · **[stephenvalente](https://github.com/stephenvalente)** · **[Thymur](https://github.com/Thymur)** · **[Torotin](https://github.com/Torotin)** · **[urbnywrt](https://github.com/urbnywrt)** · **[Vydon](https://github.com/Vydon)** · **[Xentrino](https://github.com/Xentrino)** · **[YahusRevus](https://github.com/YahusRevus)** · **[Ziusz](https://github.com/Ziusz)**
359
+ **[akasvi](https://github.com/akasvi)** · **[alessa-lara](https://github.com/alessa-lara)** · **[ArcaneCoder404](https://github.com/ArcaneCoder404)** · **[azrael1911](https://github.com/azrael1911)** · **[betolink](https://github.com/betolink)** · **[bive242](https://github.com/bive242)** · **[BrunoLeguizamon05](https://github.com/BrunoLeguizamon05)** · **[cancos1](https://github.com/cancos1)** · **[cesarnr21](https://github.com/cesarnr21)** · **[codeflitting](https://github.com/codeflitting)** · **[dabombUSA](https://github.com/dabombUSA)** · **[damachine](https://github.com/damachine)** · **[DasFlogetier](https://github.com/DasFlogetier)** · **[david43](https://github.com/david43)** · **[eap5](https://github.com/eap5)** · **[emaspa](https://github.com/emaspa)** · **[falumamx](https://github.com/falumamx)** · **[Gdetrane](https://github.com/Gdetrane)** · **[greaseyjockey](https://github.com/greaseyjockey)** · **[gupsterg](https://github.com/gupsterg)** · **[israelsz](https://github.com/israelsz)** · **[jezzaw007](https://github.com/jezzaw007)** · **[jhlasnik](https://github.com/jhlasnik)** · **[jmo808](https://github.com/jmo808)** · **[Jorann](https://github.com/Jorann)** · **[knappstar](https://github.com/knappstar)** · **[Legendarycentaur](https://github.com/Legendarycentaur)** · **[Leonnaki](https://github.com/Leonnaki)** · **[lotte25](https://github.com/lotte25)** · **[mgaruccio](https://github.com/mgaruccio)** · **[michelle0812](https://github.com/michelle0812)** · **[mkogut](https://github.com/mkogut)** · **[nathanielhernandez](https://github.com/nathanielhernandez)** · **[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)** · **[qussaif10](https://github.com/qussaif10)** · **[qwerty22121998](https://github.com/qwerty22121998)** · **[Rehaell](https://github.com/Rehaell)** · **[rhuggins573-crypto](https://github.com/rhuggins573-crypto)** · **[riodevelop](https://github.com/riodevelop)** · **[rslater](https://github.com/rslater)** · **[saucymcbeef](https://github.com/saucymcbeef)** · **[shadowepaxeor-glitch](https://github.com/shadowepaxeor-glitch)** · **[ShaunnyBwoy](https://github.com/ShaunnyBwoy)** · **[Smokemic](https://github.com/Smokemic)** · **[Spebelgenenst](https://github.com/Spebelgenenst)** · **[spiritofjon](https://github.com/spiritofjon)** · **[stephenvalente](https://github.com/stephenvalente)** · **[Thymur](https://github.com/Thymur)** · **[Torotin](https://github.com/Torotin)** · **[urbnywrt](https://github.com/urbnywrt)** · **[Vydon](https://github.com/Vydon)** · **[Xentrino](https://github.com/Xentrino)** · **[YahusRevus](https://github.com/YahusRevus)** · **[Ziusz](https://github.com/Ziusz)**
360
360
 
361
361
  ## Faulkers
362
362
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "trcc-linux"
7
- version = "9.3.7"
7
+ version = "9.3.8"
8
8
  description = "Linux implementation of Thermalright LCD Control Center"
9
9
  readme = "README.md"
10
10
  license = "GPL-3.0-or-later"
@@ -1,4 +1,4 @@
1
1
  """TRCC Linux version information. History in doc/CHANGELOG.md."""
2
2
 
3
- __version__ = "9.3.7"
3
+ __version__ = "9.3.8"
4
4
  __version_info__ = tuple(int(x) for x in __version__.split("."))
@@ -26,7 +26,11 @@ from ...core.paths import (
26
26
  ASSETS_DIR, # noqa: F401 — re-export (package resource dir)
27
27
  RESOURCES_DIR, # noqa: F401 — re-export (package resource dir)
28
28
  USER_CONFIG_DIR, # noqa: F401 — re-export (universal config dir)
29
+ _has_any_content,
29
30
  has_themes,
31
+ masks_dir_name,
32
+ theme_dir_name,
33
+ web_dir_name,
30
34
  )
31
35
  from ...core.platform import SUBPROCESS_NO_WINDOW as _NO_WINDOW
32
36
 
@@ -364,15 +368,10 @@ class DataManager:
364
368
  from trcc.conf import settings
365
369
  return str(settings.user_data_dir)
366
370
 
367
- @staticmethod
368
- def _has_any_content(d: str) -> bool:
369
- """Check if a directory exists and has any files/subdirs."""
370
- return os.path.isdir(d) and bool(os.listdir(d))
371
-
372
371
  @staticmethod
373
372
  def ensure_themes(width: int, height: int) -> bool:
374
373
  """Extract default themes from .7z archive if not already present."""
375
- name = f'theme{width}{height}'
374
+ name = theme_dir_name(width, height)
376
375
  return DataManager._fetch_and_extract(
377
376
  label=f"Themes {width}x{height}",
378
377
  pkg_dir=os.path.join(DataManager._data_dir(), name),
@@ -385,20 +384,20 @@ class DataManager:
385
384
  @staticmethod
386
385
  def ensure_web(width: int, height: int) -> bool:
387
386
  """Extract cloud theme previews from .7z archive if not already present."""
388
- res_key = f'{width}{height}'
387
+ res_key = web_dir_name(width, height)
389
388
  return DataManager._fetch_and_extract(
390
389
  label=f"Web previews {width}x{height}",
391
390
  pkg_dir=os.path.join(DataManager._data_dir(), 'web', res_key),
392
391
  user_dir=os.path.join(DataManager._data_dir(), 'web', res_key),
393
392
  archive_name=f'{res_key}.7z',
394
- check_fn=DataManager._has_any_content,
393
+ check_fn=_has_any_content,
395
394
  fetch_fn=lambda a: DataManager._fetch_archive(a, 'web'),
396
395
  )
397
396
 
398
397
  @staticmethod
399
398
  def ensure_web_masks(width: int, height: int) -> bool:
400
399
  """Extract cloud mask themes from .7z archive if not already present."""
401
- res_key = f'zt{width}{height}'
400
+ res_key = masks_dir_name(width, height)
402
401
  return DataManager._fetch_and_extract(
403
402
  label=f"Mask themes {width}x{height}",
404
403
  pkg_dir=os.path.join(DataManager._data_dir(), 'web', res_key),
@@ -465,7 +464,7 @@ class DataManager:
465
464
  if key not in load_config().get("installed_resolutions", []):
466
465
  log.debug("Resolution %s: not in installed_resolutions", key)
467
466
  return False
468
- name = f"theme{width}{height}"
467
+ name = theme_dir_name(width, height)
469
468
  pkg = os.path.join(DataManager._data_dir(), name)
470
469
  user = os.path.join(DataManager._data_dir(), name)
471
470
  if has_themes(pkg):
@@ -1780,7 +1780,7 @@ class DebugReport:
1780
1780
  for dev_key, dev_cfg in devices.items():
1781
1781
  vid_pid = dev_cfg.get("vid_pid", "?")
1782
1782
  parts = [f"vid_pid={vid_pid}"]
1783
- for field in ("brightness_level", "rotation", "split_mode", "theme_path", "fbl"):
1783
+ for field in ("brightness_level", "rotation", "split_mode", "theme_name", "theme_type", "fbl"):
1784
1784
  if field in dev_cfg:
1785
1785
  parts.append(f"{field}={dev_cfg[field]}")
1786
1786
  sec.lines.append(f" [{dev_key}] {', '.join(parts)}")
@@ -1793,7 +1793,7 @@ class DebugReport:
1793
1793
  sec = self._add("Installed themes")
1794
1794
  try:
1795
1795
  from trcc.core.models import FBL_PROFILES
1796
- from trcc.core.paths import USER_DATA_DIR
1796
+ from trcc.core.paths import USER_DATA_DIR, masks_dir_name, theme_dir_name
1797
1797
 
1798
1798
  # Collect unique resolutions from FBL_PROFILES
1799
1799
  seen: set[tuple[int, int]] = set()
@@ -1806,8 +1806,8 @@ class DebugReport:
1806
1806
 
1807
1807
  found_any = False
1808
1808
  for w, h in resolutions:
1809
- theme_dir = os.path.join(USER_DATA_DIR, f"theme{w}{h}")
1810
- web_dir = os.path.join(USER_DATA_DIR, "web", f"zt{w}{h}")
1809
+ theme_dir = os.path.join(USER_DATA_DIR, theme_dir_name(w, h))
1810
+ web_dir = os.path.join(USER_DATA_DIR, "web", masks_dir_name(w, h))
1811
1811
  has_themes = os.path.isdir(theme_dir)
1812
1812
  has_masks = os.path.isdir(web_dir)
1813
1813
  if not has_themes and not has_masks:
@@ -23,6 +23,7 @@ from typing import Dict
23
23
 
24
24
  import trcc.conf as _conf
25
25
  from trcc.core.models import FBL_TO_RESOLUTION
26
+ from trcc.core.paths import theme_dir_name
26
27
 
27
28
  from .data_repository import DataManager
28
29
 
@@ -67,7 +68,7 @@ def _build_registry() -> Dict[str, PackInfo]:
67
68
  registry: Dict[str, PackInfo] = {}
68
69
  for w, h in _all_resolutions():
69
70
  pack_id = f"themes-{w}x{h}"
70
- archive = f"theme{w}{h}.7z"
71
+ archive = f"{theme_dir_name(w, h)}.7z"
71
72
  archive_path = os.path.join(str(_conf.settings.user_data_dir), archive)
72
73
  size_kb = os.path.getsize(archive_path) // 1024 if os.path.isfile(archive_path) else 0
73
74
  registry[pack_id] = PackInfo(
@@ -124,10 +125,10 @@ class ThemeDownloader:
124
125
  @staticmethod
125
126
  def _theme_dir(w: int, h: int) -> Path:
126
127
  """Path to extracted theme directory (prefers user dir)."""
127
- user = _conf.settings.user_data_dir / f"theme{w}{h}"
128
+ user = _conf.settings.user_data_dir / theme_dir_name(w, h)
128
129
  if user.exists():
129
130
  return user
130
- pkg = _conf.settings.user_data_dir / f"theme{w}{h}"
131
+ pkg = _conf.settings.user_data_dir / theme_dir_name(w, h)
131
132
  if pkg.exists():
132
133
  return pkg
133
134
  return user # default to user dir for installs
@@ -225,8 +226,8 @@ class ThemeDownloader:
225
226
 
226
227
  # Force: remove existing first
227
228
  if force:
228
- for d in (_conf.settings.user_data_dir / f"theme{w}{h}",
229
- _conf.settings.user_data_dir / f"theme{w}{h}"):
229
+ for d in (_conf.settings.user_data_dir / theme_dir_name(w, h),
230
+ _conf.settings.user_data_dir / theme_dir_name(w, h)):
230
231
  if d.exists():
231
232
  log.info("Removing %s for reinstall", d)
232
233
  shutil.rmtree(d)
@@ -251,7 +252,7 @@ class ThemeDownloader:
251
252
  return 1
252
253
 
253
254
  info = _get_registry()[pack_name]
254
- user_dir = _conf.settings.user_data_dir / f"theme{info.width}{info.height}"
255
+ user_dir = _conf.settings.user_data_dir / theme_dir_name(info.width, info.height)
255
256
 
256
257
  if not user_dir.exists():
257
258
  print(f"Theme pack '{pack_name}' is not installed in user directory")
@@ -16,6 +16,7 @@ from trcc.adapters.system._shared import (
16
16
  _posix_raise_existing_instance,
17
17
  _print_summary,
18
18
  )
19
+ from trcc.core.paths import masks_dir_name, theme_dir_name, web_dir_name
19
20
  from trcc.core.ports import PlatformSetup
20
21
 
21
22
  log = logging.getLogger(__name__)
@@ -44,16 +45,16 @@ class BSDSetup(PlatformSetup):
44
45
  return os.path.join(Path.home(), '.trcc-user')
45
46
 
46
47
  def theme_dir(self, width: int, height: int) -> str:
47
- return os.path.join(self.data_dir(), f'theme{width}{height}')
48
+ return os.path.join(self.data_dir(), theme_dir_name(width, height))
48
49
 
49
50
  def web_dir(self, width: int, height: int) -> str:
50
- return os.path.join(self.data_dir(), 'web', f'{width}{height}')
51
+ return os.path.join(self.data_dir(), 'web', web_dir_name(width, height))
51
52
 
52
53
  def web_masks_dir(self, width: int, height: int) -> str:
53
- return os.path.join(self.data_dir(), 'web', f'zt{width}{height}')
54
+ return os.path.join(self.data_dir(), 'web', masks_dir_name(width, height))
54
55
 
55
56
  def user_masks_dir(self, width: int, height: int) -> str:
56
- return os.path.join(self.user_content_dir(), 'data', 'web', f'zt{width}{height}')
57
+ return os.path.join(self.user_content_dir(), 'data', 'web', masks_dir_name(width, height))
57
58
 
58
59
  def ffmpeg_install_help(self) -> str:
59
60
  return "ffmpeg not found. Install:\n sudo pkg install ffmpeg"
@@ -449,8 +449,8 @@ class LinuxSetup(PlatformSetup):
449
449
  return USER_CONTENT_DIR
450
450
 
451
451
  def theme_dir(self, width: int, height: int) -> str:
452
- from trcc.core.paths import DATA_DIR
453
- return os.path.join(DATA_DIR, f'theme{width}{height}')
452
+ from trcc.core.paths import DATA_DIR, theme_dir_name
453
+ return os.path.join(DATA_DIR, theme_dir_name(width, height))
454
454
 
455
455
  def web_dir(self, width: int, height: int) -> str:
456
456
  from trcc.core.paths import get_web_dir
@@ -16,6 +16,7 @@ from trcc.adapters.system._shared import (
16
16
  _posix_raise_existing_instance,
17
17
  _print_summary,
18
18
  )
19
+ from trcc.core.paths import masks_dir_name, theme_dir_name, web_dir_name
19
20
  from trcc.core.ports import PlatformSetup
20
21
 
21
22
  log = logging.getLogger(__name__)
@@ -44,16 +45,16 @@ class MacOSSetup(PlatformSetup):
44
45
  return os.path.join(Path.home(), '.trcc-user')
45
46
 
46
47
  def theme_dir(self, width: int, height: int) -> str:
47
- return os.path.join(self.data_dir(), f'theme{width}{height}')
48
+ return os.path.join(self.data_dir(), theme_dir_name(width, height))
48
49
 
49
50
  def web_dir(self, width: int, height: int) -> str:
50
- return os.path.join(self.data_dir(), 'web', f'{width}{height}')
51
+ return os.path.join(self.data_dir(), 'web', web_dir_name(width, height))
51
52
 
52
53
  def web_masks_dir(self, width: int, height: int) -> str:
53
- return os.path.join(self.data_dir(), 'web', f'zt{width}{height}')
54
+ return os.path.join(self.data_dir(), 'web', masks_dir_name(width, height))
54
55
 
55
56
  def user_masks_dir(self, width: int, height: int) -> str:
56
- return os.path.join(self.user_content_dir(), 'data', 'web', f'zt{width}{height}')
57
+ return os.path.join(self.user_content_dir(), 'data', 'web', masks_dir_name(width, height))
57
58
 
58
59
  def ffmpeg_install_help(self) -> str:
59
60
  return "ffmpeg not found. Install:\n brew install ffmpeg"
@@ -13,6 +13,7 @@ from trcc.adapters.system._shared import (
13
13
  _copy_assets_to_user_dir,
14
14
  _print_summary,
15
15
  )
16
+ from trcc.core.paths import masks_dir_name, theme_dir_name, web_dir_name
16
17
  from trcc.core.ports import PlatformSetup
17
18
 
18
19
  log = logging.getLogger(__name__)
@@ -42,16 +43,16 @@ class WindowsSetup(PlatformSetup):
42
43
  return os.path.join(Path.home(), '.trcc-user')
43
44
 
44
45
  def theme_dir(self, width: int, height: int) -> str:
45
- return os.path.join(self.data_dir(), f'theme{width}{height}')
46
+ return os.path.join(self.data_dir(), theme_dir_name(width, height))
46
47
 
47
48
  def web_dir(self, width: int, height: int) -> str:
48
- return os.path.join(self.data_dir(), 'web', f'{width}{height}')
49
+ return os.path.join(self.data_dir(), 'web', web_dir_name(width, height))
49
50
 
50
51
  def web_masks_dir(self, width: int, height: int) -> str:
51
- return os.path.join(self.data_dir(), 'web', f'zt{width}{height}')
52
+ return os.path.join(self.data_dir(), 'web', masks_dir_name(width, height))
52
53
 
53
54
  def user_masks_dir(self, width: int, height: int) -> str:
54
- return os.path.join(self.user_content_dir(), 'data', 'web', f'zt{width}{height}')
55
+ return os.path.join(self.user_content_dir(), 'data', 'web', masks_dir_name(width, height))
55
56
 
56
57
  def ffmpeg_install_help(self) -> str:
57
58
  return (
@@ -301,6 +301,14 @@ def start_screencast(
301
301
  global _screencast_proc, _screencast_cast # noqa: PLW0603
302
302
  global _screencast_frames, _screencast_params # noqa: PLW0603
303
303
 
304
+ # Boundary validation — all values are integers from Pydantic,
305
+ # but clamp explicitly so static analysis can verify safety.
306
+ x = max(0, int(x))
307
+ y = max(0, int(y))
308
+ w = max(0, min(int(w), 7680))
309
+ h = max(0, min(int(h), 4320))
310
+ fps = max(1, min(int(fps), 60))
311
+
304
312
  stop_screencast()
305
313
  stop_video_playback()
306
314
  stop_overlay_loop()
@@ -80,9 +80,10 @@ def list_themes(resolution: str) -> list[ThemeResponse]:
80
80
  o = _display_dispatcher.orientation if _display_dispatcher else None
81
81
  td = o.theme_dir if o else None
82
82
  theme_dir = td.path if td else Path(resolve_theme_dir(w, h))
83
- user_content_dir = getattr(_settings, 'user_content_dir', None)
83
+ ucd = getattr(_settings, 'user_content_dir', None)
84
+ user_data_dir = ucd / 'data' if ucd else None
84
85
  themes = ThemeService.discover_local_merged(
85
- theme_dir, user_content_dir, (w, h))
86
+ theme_dir, user_data_dir, (w, h))
86
87
  return [
87
88
  ThemeResponse(
88
89
  name=t.name,
@@ -351,10 +352,11 @@ def export_theme(theme_name: str, resolution: str | None = None) -> Response:
351
352
  o = _display_dispatcher.orientation if _display_dispatcher else None
352
353
  td = o.theme_dir if o else None
353
354
  theme_dir = td.path if td else Path(resolve_theme_dir(w, h))
354
- user_content_dir = getattr(_settings, 'user_content_dir', None)
355
+ ucd = getattr(_settings, 'user_content_dir', None)
356
+ user_data_dir = ucd / 'data' if ucd else None
355
357
 
356
358
  themes = ThemeService.discover_local_merged(
357
- theme_dir, user_content_dir, (w, h))
359
+ theme_dir, user_data_dir, (w, h))
358
360
  match = next((t for t in themes if t.name == theme_name), None)
359
361
  if not match:
360
362
  match = next(
@@ -437,6 +437,10 @@ def resume(builder):
437
437
  print("No themes were sent. Use the GUI to set a theme first.")
438
438
  return 1
439
439
 
440
- print(f" [{lcd.device_path}] Sent")
440
+ is_animated = result.get("is_animated", False)
441
+ if is_animated:
442
+ print(f" [{lcd.device_path}] Restored (animated — start GUI for playback)")
443
+ else:
444
+ print(f" [{lcd.device_path}] Sent")
441
445
  print("Resumed 1 device.")
442
446
  return 0
@@ -37,7 +37,7 @@ def list_themes():
37
37
  print(f"No local themes for {w}x{h}.")
38
38
  return 0
39
39
  themes = ThemeService.discover_local_merged(
40
- Path(theme_dir), settings.user_content_dir, (w, h))
40
+ Path(theme_dir), settings.user_content_dir / 'data', (w, h))
41
41
  print(f"Local themes ({w}x{h}): {len(themes)}")
42
42
  for t in themes:
43
43
  kind = "video" if t.is_animated else "static"
@@ -308,7 +308,7 @@ def export_theme(theme_name, output_path):
308
308
  return 1
309
309
 
310
310
  themes = ThemeService.discover_local_merged(
311
- Path(theme_dir), settings.user_content_dir, (w, h))
311
+ Path(theme_dir), settings.user_content_dir / 'data', (w, h))
312
312
  match = next((t for t in themes if t.name == theme_name), None)
313
313
  if not match:
314
314
  match = next(
@@ -31,7 +31,7 @@ from typing import TYPE_CHECKING, Optional
31
31
 
32
32
  from .__version__ import __version__
33
33
  from .core.models import LEGACY_TO_ISO, LOCALE_TO_LANG
34
- from .core.paths import USER_CONFIG_DIR
34
+ from .core.paths import USER_CONFIG_DIR, USER_CONTENT_DATA_DIR, USER_CONTENT_DIR
35
35
 
36
36
  if TYPE_CHECKING:
37
37
  from .core.ports import PathResolver
@@ -78,6 +78,39 @@ def _migrate_old_config() -> None:
78
78
  log.info("Migrated config from %s to %s", old_dir, CONFIG_DIR)
79
79
 
80
80
 
81
+ def _migrate_user_content_themes() -> None:
82
+ """One-time migration: move custom themes from ~/.trcc-user/theme* to ~/.trcc-user/data/theme*.
83
+
84
+ Aligns user content layout with data dir — both roots now use
85
+ identical subtrees: {root}/data/theme{W}{H}/, {root}/data/web/, etc.
86
+ """
87
+ import shutil
88
+ if not os.path.isdir(USER_CONTENT_DIR):
89
+ return
90
+ for name in os.listdir(USER_CONTENT_DIR):
91
+ if not name.startswith('theme'):
92
+ continue
93
+ old = os.path.join(USER_CONTENT_DIR, name)
94
+ if not os.path.isdir(old):
95
+ continue
96
+ new = os.path.join(USER_CONTENT_DATA_DIR, name)
97
+ if os.path.exists(new):
98
+ # Merge: move individual theme dirs that don't exist in target
99
+ for item in os.listdir(old):
100
+ src = os.path.join(old, item)
101
+ dst = os.path.join(new, item)
102
+ if os.path.isdir(src) and not os.path.exists(dst):
103
+ shutil.move(src, dst)
104
+ try:
105
+ os.rmdir(old)
106
+ except OSError:
107
+ pass
108
+ else:
109
+ os.makedirs(USER_CONTENT_DATA_DIR, exist_ok=True)
110
+ shutil.move(old, new)
111
+ log.info("Migrated user themes: %s → %s", old, new)
112
+
113
+
81
114
  def _migrate_device_keys(config: dict) -> bool:
82
115
  """Migrate device keys from '0:vid_pid' to '0' with vid_pid inside dict.
83
116
 
@@ -584,6 +617,7 @@ def init_settings(path_resolver: 'PathResolver') -> Settings:
584
617
  platform adapter via ControllerBuilder.build_setup().
585
618
  """
586
619
  global _settings, settings # noqa: PLW0603
620
+ _migrate_user_content_themes()
587
621
  _settings = Settings(path_resolver)
588
622
  settings = _settings
589
623
  return settings