Commit Graph

5123 Commits

Author SHA1 Message Date
Adam Honse
012c6c45f1 Profile editor dialog 2026-02-17 22:47:05 -06:00
Adam Honse
91994d95e6 Rework API interface passed into plugins from ResourceManagerInterface to OpenRGBPluginAPIInterface 2026-02-15 22:24:43 -06:00
Adam Honse
efd740463e [next] Active profile tracking 2026-02-15 22:24:43 -06:00
Adam Honse
4d903ad3db Apply profiles server-side rather than client-side, signal active profile update, forward loaded profile to local client for plugins 2026-02-15 22:24:43 -06:00
Adam Honse
ae06411a01 Split HID and wrapped HID detector lists into specific detectors (with exact VID/PID matching) and generic detectors (with only IPU matching) and prioritize specific detectors when detecting HID devices 2026-02-15 22:24:43 -06:00
Adam Honse
6ddcb16787 Move RGBController base destructor functionality into RGBController::Shutdown() so that update thread can be stopped before deleting the controller. Shutdown() must be called in every RGBController implementation before deleting the controller. Also some fixes to the NetworkServer to avoid deadlocking and disconnect issues 2026-02-15 22:24:43 -06:00
Adam Honse
e8ed3616bd Add detectors for filtering on IPU only (no VID/PID) 2026-02-15 22:24:43 -06:00
Adam Honse
68387f0400 Drop support for old hidapi versions that don't support usage information 2026-02-15 22:24:43 -06:00
Adam Honse
3bb3d8907d Add some validity checks to mode setters and getters in RGBController 2026-02-15 22:24:27 -06:00
Adam Honse
d24b9a43f8 [next] SDK v6: Implement client and server flags to indicate capabilities and... 2026-02-15 22:21:28 -06:00
Adam Honse
42744cafd4 SDK documentation updates 2026-02-15 22:21:28 -06:00
Adam Honse
1964b4eb1b Expose LogManager in ResourceManager so that plugins can use it 2026-02-15 22:21:28 -06:00
Adam Honse
5227bcf170 Update NetworkClient to use log manager and use common name constant in server logs 2026-02-15 22:21:28 -06:00
Adam Honse
2ab2247b79 Use std::string.assign when setting strings in the SDK protocol and description handlers so that string size limit is enforced, then strip out null terminators 2026-02-15 22:21:28 -06:00
Adam Honse
3611c01c7b Add optional HID device hotplug support (requires https://gitlab.com/OpenRGBDevelopers/hidapi-hotplug) 2026-02-15 22:21:28 -06:00
Adam Honse
dc343cbf2a SDK v6: Use unique IDs for identifying RGBControllers in SDK protocol 2026-02-15 22:21:28 -06:00
Adam Honse
e0bab59a10 Rework list handling in ResourceManager by having NetworkClient own its own list rather than sharing ResourceManager's list 2026-02-15 22:21:28 -06:00
Adam Honse
66d8f5f6a8 Move HID detector calls to RunHIDDetector/RunHIDWrappedDetector functions and return controller list from detector functions 2026-02-15 22:21:25 -06:00
Adam Honse
7471159c77 Detection progress SDK integration, NetworkClient callback rework 2026-02-15 22:20:28 -06:00
Adam Honse
96a9efc48b Split out detection system from ResourceManager into DetectionManager
* Split detection system out into its own class, DetectionManager
    * Clean up ResourceManger's many callbacks into just two, one for detection and one general purpose
2026-02-15 22:20:28 -06:00
Adam Honse
66cd46dc4c SDK Version 6 Updates
* SDK Protocol
    * Server sends its name to client
    * ProfileManager
      * Rename existing profile commands
      * Add Upload Profile, Download Profile, and Get Active Profile commands
    * SettingsManager
      * Add Get, Set, and Save Settings commands
    * Add zone::active_mode, zone::mode fields for zone-specific modes
    * Add NET_PACKET_ID_RGBCONTROLLER_UPDATEZONEMODE packet for updating zone modes
    * Add segment::matrix_map to segment packet
    * Add NET_PACKET_ID_RGBCONTROLLER_SIGNALUPDATE packet for passing SignalUpdate signal from server to clients
  * NetworkServer
    * Formatting cleanup
    * Use per-controller threads for handling NetworkServer controller-specific packets to avoid delays from controller mutexes
  * NetworkClient
    * Formatting cleanup
  * RGBController
    * Clean up and modularize descriptor functions
2026-02-15 22:20:28 -06:00
Adam Honse
c4b0e680b2 Rework Profiles to use JSON format
* Update OpenRGB Plugin Interface to include functions for loading/saving profile JSON data into OpenRGB profiles
    * Update ProfileManager to handle auto-load profiles (Exit, Open, Resume, Suspend) and move their settings to ProfileManager section
    * Update ProfileManager to store profiles in "profiles" folder in .json format
    * Update ProfileManager to store size profile in sizes.json
    * Update ProfileManager to perform device UpdateMode/UpdateColors when loading profile
    * Code cleanup of ProfileManager and profile-related code
2026-02-15 22:20:28 -06:00
Adam Honse
2bf805fecc RGBController API Overhaul
* Reorganize and clean up RGBController API functions
    * Add functions to get protected RGBController member values
    * Make NetworkClient, ProfileManager, and ResourceManager friend classes so they can access protected members
    * Protected previously-public RGBController members
        * Information strings (name, vendor, description, version, serial location)
        * Device type
        * Active mode
        * Flags
        * LEDs vector
        * LED alternate names vector
        * Modes vector
        * Colors vector
        * Zones vector
    * Add CONTROLLER_FLAG_HIDDEN to allow plugins to hide controllers from control GUI
    * Add update reason codes to RGBController update callback and signal updates on more RGBController events
    * Add loop zone types and segmented zone type
    * Add matrix map field to segments
    * Rework matrix_map_type from using pointers to vector to prevent memory leaks
    * Rework KeyboardLayoutManager to return new matrix_map_type
    * Add access mutex to RGBController API
    * Add per-zone modes ot RGBController API
    * Add JSON description functions to RGBController API
2026-02-15 22:20:28 -06:00
Adam Honse
080d22cbd5 Move plugin SDK integration from callback into plugin API and PluginManager 2026-02-15 22:20:28 -06:00
Adam Honse
1f2b00b192 Update Plugin API to 5 and SDK Protocol to 6 2026-02-15 22:20:28 -06:00
Adam Honse
71680e18ae Update default builds to Qt6
* Update Debian packages to use Qt6
  * Update Fedora packages to use Qt6
  * Update default AppImage builds to use Qt6
  * Update default Windows builds to use Qt6
  * Update default MacOS builds to use Qt6
2026-02-15 22:20:28 -06:00
gozzarda
7ec1e8ddfa PowerColor GPU: Accept V1 magic from V2 controller. 2026-02-15 14:05:32 -06:00
Adam Honse
880dc1450d PNY ARGB Epic-X GPU: Add additional modes 2026-02-13 16:27:30 -06:00
Daenney
801e655c09 Add support for MSI MPG X870E EDGE TI WiFi 2026-02-13 13:36:54 -06:00
Adam Honse
5e269dd089 Add support for the PNY Epic-X ARGB 5070, 5080, and 5090 variants 2026-02-13 11:25:42 -06:00
John360Boxer
476f81d5e8 Initial commit for Redragon K686 Eisa Pro 2026-02-09 07:39:40 -06:00
storto
66dfb5f6fd Add/Fix support for the Gigabyte AORUS 5080 MASTER GPU 2026-02-08 12:45:02 -06:00
Michał Przytarski
a2f2991192 feat: support MSI GeForce RTX 4060 GAMING X NV Edition 8G 2026-02-07 14:42:15 -06:00
Adam Honse
cfedcd2180 Add Razer Blackwidow V4 Pro 75% wireless mode and add missing underglow LEDs to the matrix 2026-02-07 00:14:36 -06:00
Arthur de Groot
cc06c62164 Rename Setting RunZoneChecks -> run_zone_checks 2026-02-05 17:20:14 -06:00
bernibaer
b4ca000402 Initial support for Corsair K70 CORE TKL Keyboard ID 1b1c:2b01. Volume knob... 2026-01-30 13:49:48 -06:00
eriosgamer
b78a6f4418 Fixed incorrect PID and device name. 2026-01-29 20:18:55 -06:00
Kirill Khakimov
d5693b7a08 Add PCI device ID for Palit GeForce RTX 5070 Ti GamingPro-S 2026-01-29 16:54:41 -06:00
Werner Sembach
cae0670065 Add new keynames 2026-01-29 16:18:13 -06:00
Adam Honse
f2d1188fdd Fix swatches not resizing properly when maximized 2026-01-28 18:35:22 -06:00
Yohan
70be81c92d Merge: Add CDC Check in JGINYUE Usb Controller #5128 2026-01-27 10:54:51 -06:00
rszyma
5d5af93401 Add support for MSI PRO X870-P WIFI (MS-7E47) motherboard 2026-01-27 01:30:11 -06:00
superstrom
74cbdcce55 New Device: Razer Kraken Kitty V2 Pro 2026-01-25 17:40:54 -06:00
John Smith
96d19a76cc Add support for Sapphire Radeon RX 9060 XT Pure 2026-01-25 12:01:23 +03:00
Kyle Cascade
55d2d44371 Convert the ClevoKeyboardController to use KLM 2026-01-24 18:11:26 -06:00
Koosha Hosseiny
c6b05f5e3c Add support for 'OC' version of Astral card 2026-01-24 19:37:31 +01:00
Adam Honse
ba91bf4d2e Silence codecvt deprecation warning in StringUtils.cpp 2026-01-23 09:14:01 -06:00
Adam Honse
c1e5f7bb1b Use mbedtls@3 for MacOS as homebrew updated mbedtls to 4 and it breaks hueplusplus 2026-01-23 01:18:42 -06:00
Kyle Cascade
4855628d7a Added Effects for Clevo Lightbar 2026-01-21 16:55:46 -06:00
Muhamad Visat
e48908573a add support for the Lian Li UniHub SL v1.8 2026-01-20 19:49:01 -06:00