Skip to content

Commit 6018d70

Browse files
committed
changed version and fixed warn message spam
1 parent 1a6ab9d commit 6018d70

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

openrgb-plugin/dependency-reduced-pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>OpenRGB-Plugin</artifactId>
55
<groupId>de.lars</groupId>
6-
<version>1.3</version>
6+
<version>1.3.1</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>openrgb-plugin</artifactId>

openrgb-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>OpenRGB-Plugin</artifactId>
99
<groupId>de.lars</groupId>
10-
<version>1.3</version>
10+
<version>1.3.1</version>
1111
</parent>
1212

1313
<artifactId>openrgb-plugin</artifactId>

openrgb-plugin/src/main/java/de/lars/openrgbplugin/OutputHandler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ public void updateOpenRgbDevices() {
8484
if (deviceId < controllerCount) {
8585
// add to cache list
8686
cachedDeviceControllers.add(plugin.getOpenRGB().getControllerData(deviceId));
87-
} else {
88-
// print error message and remove device id from list
87+
} else if(!enabled) { // prevent spamming the error message; show only on activation
88+
// print error message and ignore device id
8989
OpenRgbPlugin.print(String.format("(%s) Found invalid device ID: %d There are only %d OpenRGB devices (max device ID: %d). Removing device from list.",
9090
getName(), deviceId, controllerCount, controllerCount - 1));
9191
OpenRgbPlugin.getInstance().getInterface().getNotificationManager().addNotification(

openrgb-plugin/src/main/resources/plugin.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ main=de.lars.openrgbplugin.OpenRgbPlugin
22
name=OpenRGB-Plugin
33
displayname=OpenRGB Plugin
44
author=Lars (~Drumber)
5-
version=1.3
5+
version=1.3.1
66
scope=swing
77
minVersion=v0.2.4-rc2

openrgb-wrapper/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>OpenRGB-Plugin</artifactId>
99
<groupId>de.lars</groupId>
10-
<version>1.3</version>
10+
<version>1.3.1</version>
1111
</parent>
1212

1313
<artifactId>openrgb-wrapper</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>de.lars</groupId>
88
<artifactId>OpenRGB-Plugin</artifactId>
99
<packaging>pom</packaging>
10-
<version>1.3</version>
10+
<version>1.3.1</version>
1111

1212
<modules>
1313
<module>openrgb-wrapper</module>

0 commit comments

Comments
 (0)