5126 Commits

Author SHA1 Message Date
Adam Honse
069b0d1d3e Add autonomous mode as a selectable mode 2026-02-02 20:03:43 -06:00
saad-script
d004408fb6 rework report id parsing to be more consistent 2026-02-02 17:43:47 -06:00
Adam Honse
0ac1af8018 Units are in micrometers not millimeters 2026-02-02 17:31:25 -06:00
Adam Honse
6c4e2bf251 Get vendor and device names from HID descriptors 2026-02-02 17:31:25 -06:00
Adam Honse
7a8941f3cb Switch to PU ONLY detector 2026-02-02 17:31:25 -06:00
Adam Honse
329e2f0210 Use HID serial number 2026-02-02 17:31:25 -06:00
Adam Honse
74f8de9ed8 Determine device type from LampArray kind 2026-02-02 17:31:25 -06:00
Werner Sembach
181e79987b Dynamically parse report IDs 2026-02-02 17:31:25 -06:00
Werner Sembach
ed75d72a55 Prepare LampArray report IDs being parsed dynamically 2026-02-02 17:31:25 -06:00
Werner Sembach
d7500940b5 Properly setup key names 2026-02-02 17:31:25 -06:00
Werner Sembach
fcf3a25c80 Automatically create matrix 2026-02-02 17:31:25 -06:00
Werner Sembach
8fec600a90 Add meta information for udev rule to be generated automatically 2026-02-02 17:31:25 -06:00
Adam Honse
b4372b82bc Rework to use only a single hid_device and DetectionManager API 2026-02-02 17:31:25 -06:00
Adam Honse
93fc206dec Multi update packet working for proof of concept direct mode 2026-02-02 17:31:25 -06:00
Adam Honse
dd156d93d2 Implement getting lamp attributes for each lamp and disabling autonomous mode, work on multi update 2026-02-02 17:31:25 -06:00
Adam Honse
ee4cdacd6f Begin implementing the HID LampArray protocol for Arduino test device 2026-02-02 17:31:25 -06:00
Adam Honse
7a853faf15 Initial commit for HID LampArray Controller 2026-02-02 17:31:25 -06:00
Adam Honse
c4dd171397 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-02 17:10:37 -06:00
Adam Honse
693a8e5541 Add detectors for filtering on IPU only (no VID/PID) 2026-01-31 22:57:58 -06:00
Adam Honse
8ad7ae11ed Drop support for old hidapi versions that don't support usage information 2026-01-31 22:14:20 -06:00
Adam Honse
116f9f1c54 Add some validity checks to mode setters and getters in RGBController 2026-01-31 22:05:39 -06:00
Adam Honse
0913ae719e [next] SDK v6: Implement client and server flags to indicate capabilities and... 2026-01-31 22:05:39 -06:00
Adam Honse
feb1813e4e SDK documentation updates 2026-01-31 22:05:39 -06:00
Adam Honse
4e246ca5c4 Expose LogManager in ResourceManager so that plugins can use it 2026-01-31 22:05:39 -06:00
Adam Honse
bb20f3629a Update NetworkClient to use log manager and use common name constant in server logs 2026-01-31 22:05:39 -06:00
Adam Honse
d8fb4897a1 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-01-31 22:05:39 -06:00
Adam Honse
df67332a30 Add optional HID device hotplug support (requires https://gitlab.com/OpenRGBDevelopers/hidapi-hotplug) 2026-01-31 22:05:39 -06:00
Adam Honse
c8820e9309 SDK v6: Use unique IDs for identifying RGBControllers in SDK protocol 2026-01-31 22:05:38 -06:00
Adam Honse
9e44b7780a Rework list handling in ResourceManager by having NetworkClient own its own list rather than sharing ResourceManager's list 2026-01-31 22:05:38 -06:00
Adam Honse
7a5783559b Move HID detector calls to RunHIDDetector/RunHIDWrappedDetector functions and return controller list from detector functions 2026-01-31 22:05:38 -06:00
Adam Honse
cca380775a Detection progress SDK integration, NetworkClient callback rework 2026-01-31 22:05:38 -06:00
Adam Honse
ca72e084eb 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-01-31 22:05:38 -06:00
Adam Honse
42a321084a 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-01-31 22:05:38 -06:00
Adam Honse
d19d5928a4 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-01-31 22:05:38 -06:00
Adam Honse
403ea4e6a6 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-01-31 22:05:38 -06:00
Adam Honse
79875099af Move plugin SDK integration from callback into plugin API and PluginManager 2026-01-31 22:05:38 -06:00
Adam Honse
1569293983 Update Plugin API to 5 and SDK Protocol to 6 2026-01-31 22:05:38 -06:00
Adam Honse
dae234fbbe 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-01-31 22:05:38 -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