Skip to content

Commit 312d6c7

Browse files
committed
fixed AbstractMethodError appearing in combination with version >= v0.2.5-beta
1 parent 6018d70 commit 312d6c7

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

openrgb-plugin/dependency-reduced-pom.xml

Lines changed: 2 additions & 2 deletions
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.1</version>
6+
<version>1.3.2</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>openrgb-plugin</artifactId>
@@ -52,7 +52,7 @@
5252
<dependency>
5353
<groupId>com.github.Drumber</groupId>
5454
<artifactId>RemoteLight</artifactId>
55-
<version>v0.2.4-rc2</version>
55+
<version>f25326a231</version>
5656
<scope>compile</scope>
5757
</dependency>
5858
</dependencies>

openrgb-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
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.1</version>
10+
<version>1.3.2</version>
1111
</parent>
1212

1313
<artifactId>openrgb-plugin</artifactId>
@@ -19,7 +19,7 @@
1919
<dependency>
2020
<groupId>com.github.Drumber</groupId>
2121
<artifactId>RemoteLight</artifactId>
22-
<version>v0.2.4-rc2</version>
22+
<version>f25326a231</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>de.lars</groupId>

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public VirtualOutput getVirtualOutput() {
140140
}
141141

142142
@Override
143-
public void receivedPixelData(java.awt.Color[] colors) {
143+
public void receivedPixelData(de.lars.remotelightcore.utils.color.Color[] colors) {
144144
// check if client was reconnected
145145
if(awaitingReconnect && plugin.getOpenRGB().isConnected()) {
146146
enabled = true;
@@ -189,11 +189,11 @@ public void receivedPixelData(java.awt.Color[] colors) {
189189
}
190190

191191
/**
192-
* Convert {@link java.awt.Color} Array to {@link de.lars.openrgbwrapper.models.Color} Array.
192+
* Convert {@link de.lars.remotelightcore.utils.color.Color} Array to {@link de.lars.openrgbwrapper.models.Color} Array.
193193
* @param awtColors AWT Color array
194194
* @return OpenRGB color model
195195
*/
196-
protected Color[] convertColors(java.awt.Color[] awtColors) {
196+
protected Color[] convertColors(de.lars.remotelightcore.utils.color.Color[] awtColors) {
197197
return Arrays.stream(awtColors).map(c -> new Color(c.getRed(), c.getGreen(), c.getBlue())).toArray(Color[]::new);
198198
}
199199

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

Lines changed: 2 additions & 2 deletions
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.1
5+
version=1.3.2
66
scope=swing
7-
minVersion=v0.2.4-rc2
7+
minVersion=v0.2.5-beta

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.1</version>
10+
<version>1.3.2</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.1</version>
10+
<version>1.3.2</version>
1111

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

0 commit comments

Comments
 (0)