Skip to content

Commit 4affe35

Browse files
committed
* Updated some libraries.
* Kontrol MkI * Fixed: Scale could not be changed. * Remote SL Mk2 * Fixed: Turning relative knobs to the left did reset the value.
1 parent c95376e commit 4affe35

File tree

44 files changed

+207
-194
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+207
-194
lines changed

DrivenByMoss-Manual.pdf

2.02 KB
Binary file not shown.

dependency-reduced-pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>de.mossgrabers</groupId>
55
<artifactId>DrivenByMoss</artifactId>
66
<name>DrivenByMoss</name>
7-
<version>24.7.0</version>
7+
<version>24.7.1</version>
88
<licenses>
99
<license>
1010
<name>LGPL-2.1-or-later</name>

maven-local-repository/de/mossgrabers/nativefilechooser/1.3.1/nativefilechooser-1.3.1.jar.md5

Lines changed: 0 additions & 1 deletion
This file was deleted.

maven-local-repository/de/mossgrabers/nativefilechooser/1.3.1/nativefilechooser-1.3.1.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.

maven-local-repository/de/mossgrabers/nativefilechooser/1.3.1/nativefilechooser-1.3.1.pom.md5

Lines changed: 0 additions & 1 deletion
This file was deleted.

maven-local-repository/de/mossgrabers/nativefilechooser/1.3.1/nativefilechooser-1.3.1.pom.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.

maven-local-repository/de/mossgrabers/nativefilechooser/1.3.1/nativefilechooser-1.3.1.jar renamed to maven-local-repository/de/mossgrabers/nativefilechooser/1.3.2/nativefilechooser-1.3.2.jar

21.4 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
4dcb3ee84a4fec1cb152f507b1662684
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
273e164c3b8fb6b97584686a817af7a5c53db358

maven-local-repository/de/mossgrabers/nativefilechooser/1.3.1/nativefilechooser-1.3.1.pom renamed to maven-local-repository/de/mossgrabers/nativefilechooser/1.3.2/nativefilechooser-1.3.2.pom

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>de.mossgrabers</groupId>
77
<packaging>jar</packaging>
88
<name>NativeFileChooser</name>
9-
<version>1.3.1</version>
9+
<version>1.3.2</version>
1010

1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -32,12 +32,12 @@
3232
<dependency>
3333
<groupId>net.java.dev.jna</groupId>
3434
<artifactId>jna</artifactId>
35-
<version>5.13.0</version>
35+
<version>5.16.0</version>
3636
</dependency>
3737
<dependency>
3838
<groupId>net.java.dev.jna</groupId>
3939
<artifactId>jna-platform</artifactId>
40-
<version>5.13.0</version>
40+
<version>5.16.0</version>
4141
</dependency>
4242
</dependencies>
4343

@@ -48,7 +48,7 @@
4848
<plugin>
4949
<groupId>org.apache.maven.plugins</groupId>
5050
<artifactId>maven-enforcer-plugin</artifactId>
51-
<version>3.0.0-M3</version>
51+
<version>3.5.0</version>
5252
<executions>
5353
<execution>
5454
<id>enforce-maven</id>
@@ -58,7 +58,7 @@
5858
<configuration>
5959
<rules>
6060
<requireMavenVersion>
61-
<version>3.1.0</version>
61+
<version>3.6.3</version>
6262
</requireMavenVersion>
6363
</rules>
6464
</configuration>
@@ -69,7 +69,7 @@
6969
<plugin>
7070
<groupId>org.apache.maven.plugins</groupId>
7171
<artifactId>maven-compiler-plugin</artifactId>
72-
<version>3.8.1</version>
72+
<version>3.13.0</version>
7373
<configuration>
7474
<optimize>true</optimize>
7575
<fork>true</fork>
@@ -82,7 +82,7 @@
8282
<plugin>
8383
<groupId>org.apache.maven.plugins</groupId>
8484
<artifactId>maven-source-plugin</artifactId>
85-
<version>3.2.1</version>
85+
<version>3.3.1</version>
8686
<executions>
8787
<execution>
8888
<goals>
@@ -96,8 +96,9 @@
9696
<plugin>
9797
<groupId>org.codehaus.mojo</groupId>
9898
<artifactId>versions-maven-plugin</artifactId>
99-
<version>2.8.1</version>
99+
<version>2.18.0</version>
100100
<configuration>
101+
<ignoredVersions>.*-M.*,.*-alpha.*,.*-beta.*,.*-ea.*,.*-rc.*</ignoredVersions>
101102
<generateBackupPoms>false</generateBackupPoms>
102103
</configuration>
103104
</plugin>
@@ -106,37 +107,37 @@
106107
<plugin>
107108
<groupId>org.apache.maven.plugins</groupId>
108109
<artifactId>maven-clean-plugin</artifactId>
109-
<version>3.1.0</version>
110+
<version>3.4.0</version>
110111
</plugin>
111112
<plugin>
112113
<groupId>org.apache.maven.plugins</groupId>
113114
<artifactId>maven-deploy-plugin</artifactId>
114-
<version>3.0.0-M1</version>
115+
<version>3.1.3</version>
115116
</plugin>
116117
<plugin>
117118
<groupId>org.apache.maven.plugins</groupId>
118119
<artifactId>maven-install-plugin</artifactId>
119-
<version>3.0.0-M1</version>
120+
<version>3.1.3</version>
120121
</plugin>
121122
<plugin>
122123
<groupId>org.apache.maven.plugins</groupId>
123124
<artifactId>maven-jar-plugin</artifactId>
124-
<version>3.2.0</version>
125+
<version>3.4.2</version>
125126
</plugin>
126127
<plugin>
127128
<groupId>org.apache.maven.plugins</groupId>
128129
<artifactId>maven-resources-plugin</artifactId>
129-
<version>3.2.0</version>
130+
<version>3.3.1</version>
130131
</plugin>
131132
<plugin>
132133
<groupId>org.apache.maven.plugins</groupId>
133134
<artifactId>maven-site-plugin</artifactId>
134-
<version>3.9.1</version>
135+
<version>3.21.0</version>
135136
</plugin>
136137
<plugin>
137138
<groupId>org.apache.maven.plugins</groupId>
138139
<artifactId>maven-surefire-plugin</artifactId>
139-
<version>3.0.0-M5</version>
140+
<version>3.5.2</version>
140141
</plugin>
141142

142143
</plugins>

0 commit comments

Comments
 (0)