Skip to content

Commit 31d8a00

Browse files
authored
feat: add Stream Deck Studio device type (#21)
Co-authored-by: Richard Herman <[email protected]>
1 parent 2033b13 commit 31d8a00

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@
1111

1212
# Change Log
1313

14+
## 0.4.5
15+
16+
### ✨ New
17+
18+
- Add `StreamDeckStudio` device type and manifest hint.
19+
1420
## 0.4.4
1521

1622
### ✨ New

src/streamdeck/plugins/device-type.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,10 @@ export enum DeviceType {
5050
/**
5151
* Stream Deck Neo, comprised of 8 customizable LCD keys in a 4 x 2 layout, an info bar, and 2 touch points for page navigation.
5252
*/
53-
StreamDeckNeo = 9
53+
StreamDeckNeo = 9,
54+
55+
/**
56+
* Stream Deck Studio, comprised of 32 customizable LCD keys in a 16 x 2 layout, and 2 dials (1 on either side).
57+
*/
58+
StreamDeckStudio = 10
5459
}

src/streamdeck/plugins/manifest/latest.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -694,6 +694,7 @@ export type Profile = {
694694
* - Stream Deck + (7)
695695
* - SCUF Controller (8)
696696
* - Stream Deck Neo (9)
697+
* - Stream Deck Studio (10)
697698
*/
698699
DeviceType: (typeof DeviceType)[keyof typeof DeviceType];
699700

0 commit comments

Comments
 (0)