Skip to content

Commit bfa3a41

Browse files
committed
Release v0.4.1
1 parent 1ecf925 commit bfa3a41

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "razer-macos",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "Open source color effects manager for Razer peripherals on macOS",
55
"license": "GPL-2.0-only",
66
"main": "src/main/index.js",

src/main/menu/menubuilderdevice.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,8 @@ function getFeatureRipple(application, device, feature) {
198198

199199
if(feature.configuration == null || feature.configuration.rows === -1 || feature.configuration.cols === -1) {
200200
return {
201-
label: 'Ripple (missing rows, cols config)',
201+
// device missing rows, cols config
202+
label: 'Ripple',
202203
enabled: false
203204
};
204205
}
@@ -231,7 +232,8 @@ function getFeatureWheel(application, device, feature) {
231232

232233
if(feature.configuration == null || feature.configuration.rows === -1 || feature.configuration.cols === -1) {
233234
return {
234-
label: 'Wheel (missing rows, cols config)',
235+
// device missing rows, cols config
236+
label: 'Wheel',
235237
enabled: false
236238
};
237239
}
@@ -501,4 +503,4 @@ function getFeatureMouseBrightness(application, device, feature) {
501503
label: 'Brightness',
502504
submenu: submenu.filter(s => s!= null),
503505
};
504-
}
506+
}

0 commit comments

Comments
 (0)