From b9a20767228ff836454aeb2c3b48961032ffc50c Mon Sep 17 00:00:00 2001 From: Richard Herman Date: Thu, 18 Apr 2024 11:06:21 +0100 Subject: [PATCH 1/3] feat: add new device types --- barraider-sdtools/StreamDeckInfo/DeviceType.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/barraider-sdtools/StreamDeckInfo/DeviceType.cs b/barraider-sdtools/StreamDeckInfo/DeviceType.cs index af05a84..87dfe94 100644 --- a/barraider-sdtools/StreamDeckInfo/DeviceType.cs +++ b/barraider-sdtools/StreamDeckInfo/DeviceType.cs @@ -48,5 +48,15 @@ public enum DeviceType /// Stream Deck+ /// StreamDeckPlus = 7, + + /// + /// Scuf Gamepad. + /// + ScufGamepad = 8, + + /// + /// Stream Deck Neo. + /// + StreamDeckNeo = 9 } } From e8d512acc9b95f95be04742329e597eb74e11067 Mon Sep 17 00:00:00 2001 From: Richard Herman Date: Thu, 18 Apr 2024 15:21:20 +0100 Subject: [PATCH 2/3] refactor: rename ScufGamepad --- barraider-sdtools/StreamDeckInfo/DeviceType.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/barraider-sdtools/StreamDeckInfo/DeviceType.cs b/barraider-sdtools/StreamDeckInfo/DeviceType.cs index 87dfe94..b823803 100644 --- a/barraider-sdtools/StreamDeckInfo/DeviceType.cs +++ b/barraider-sdtools/StreamDeckInfo/DeviceType.cs @@ -50,9 +50,9 @@ public enum DeviceType StreamDeckPlus = 7, /// - /// Scuf Gamepad. + /// Scuf Controller. /// - ScufGamepad = 8, + ScufController = 8, /// /// Stream Deck Neo. From 33adca180aad5b56b64dc23dd7738b58c20edf99 Mon Sep 17 00:00:00 2001 From: Richard Herman Date: Thu, 18 Apr 2024 15:37:11 +0100 Subject: [PATCH 3/3] fix: capitlization of SCUF --- barraider-sdtools/StreamDeckInfo/DeviceType.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/barraider-sdtools/StreamDeckInfo/DeviceType.cs b/barraider-sdtools/StreamDeckInfo/DeviceType.cs index b823803..02fc565 100644 --- a/barraider-sdtools/StreamDeckInfo/DeviceType.cs +++ b/barraider-sdtools/StreamDeckInfo/DeviceType.cs @@ -50,9 +50,9 @@ public enum DeviceType StreamDeckPlus = 7, /// - /// Scuf Controller. + /// SCUF Controller. /// - ScufController = 8, + SCUFController = 8, /// /// Stream Deck Neo.