Skip to content

Commit 17fd6ae

Browse files
author
Jürgen Moßgraber
committed
* Fixed: Application could not be closed if it was installed for the first time.
* Kontakt * Fixed: Prevent a crash when InternalModulator cannot be read.
1 parent f8501a8 commit 17fd6ae

40 files changed

Lines changed: 630 additions & 41 deletions

documentation/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changes
22

3+
## 16.1.1
4+
5+
* Fixed: Application could not be closed if it was installed for the first time.
6+
* Kontakt
7+
* Fixed: Prevent a crash when InternalModulator cannot be read.
8+
39
## 16.1.0
410

511
* Added support for reading Akai MPC XPJ and XTY files.
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
b02fae6b066d199ee96172b9d632d291
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ca5925b36f1669a1745488bfd59aeb23adf36633
Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<artifactId>uitools</artifactId>
7+
<groupId>de.mossgrabers</groupId>
8+
<packaging>jar</packaging>
9+
<name>UiTools</name>
10+
<version>2.0.2</version>
11+
12+
<properties>
13+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14+
</properties>
15+
16+
<repositories>
17+
<repository>
18+
<id>MavenCentral</id>
19+
<name>Maven Central Repository</name>
20+
<url>https://mvnrepository.com</url>
21+
</repository>
22+
</repositories>
23+
24+
<dependencies>
25+
<dependency>
26+
<groupId>org.openjfx</groupId>
27+
<artifactId>javafx-controls</artifactId>
28+
<version>25.0.2</version>
29+
</dependency>
30+
<dependency>
31+
<groupId>org.junit.jupiter</groupId>
32+
<artifactId>junit-jupiter-api</artifactId>
33+
<version>6.0.3</version>
34+
<scope>test</scope>
35+
</dependency>
36+
</dependencies>
37+
38+
<build>
39+
<plugins>
40+
41+
<!-- Enforce a minimum Maven version -->
42+
<plugin>
43+
<groupId>org.apache.maven.plugins</groupId>
44+
<artifactId>maven-enforcer-plugin</artifactId>
45+
<version>3.6.2</version>
46+
<executions>
47+
<execution>
48+
<id>enforce-maven</id>
49+
<goals>
50+
<goal>enforce</goal>
51+
</goals>
52+
<configuration>
53+
<rules>
54+
<requireMavenVersion>
55+
<version>3.8.1</version>
56+
</requireMavenVersion>
57+
</rules>
58+
</configuration>
59+
</execution>
60+
</executions>
61+
</plugin>
62+
63+
<plugin>
64+
<groupId>org.apache.maven.plugins</groupId>
65+
<artifactId>maven-compiler-plugin</artifactId>
66+
<version>3.15.0</version>
67+
<configuration>
68+
<fork>true</fork>
69+
<source>25</source>
70+
<target>25</target>
71+
<encoding>UTF-8</encoding>
72+
</configuration>
73+
</plugin>
74+
75+
<plugin>
76+
<groupId>org.apache.maven.plugins</groupId>
77+
<artifactId>maven-source-plugin</artifactId>
78+
<version>3.4.0</version>
79+
<executions>
80+
<execution>
81+
<goals>
82+
<goal>jar-no-fork</goal>
83+
</goals>
84+
</execution>
85+
</executions>
86+
</plugin>
87+
88+
<!-- Check for outdated libraries -->
89+
<plugin>
90+
<groupId>org.codehaus.mojo</groupId>
91+
<artifactId>versions-maven-plugin</artifactId>
92+
<version>2.21.0</version>
93+
<configuration>
94+
<ignoredVersions>.*-M.*,.*-alpha.*,.*-beta.*,.*-ea.*</ignoredVersions>
95+
<generateBackupPoms>false</generateBackupPoms>
96+
</configuration>
97+
</plugin>
98+
99+
<!-- Plugins without configuration but for version settings. -->
100+
<plugin>
101+
<groupId>org.apache.maven.plugins</groupId>
102+
<artifactId>maven-clean-plugin</artifactId>
103+
<version>3.5.0</version>
104+
</plugin>
105+
<plugin>
106+
<groupId>org.apache.maven.plugins</groupId>
107+
<artifactId>maven-deploy-plugin</artifactId>
108+
<version>3.1.4</version>
109+
</plugin>
110+
<plugin>
111+
<groupId>org.apache.maven.plugins</groupId>
112+
<artifactId>maven-install-plugin</artifactId>
113+
<version>3.1.4</version>
114+
</plugin>
115+
<plugin>
116+
<groupId>org.apache.maven.plugins</groupId>
117+
<artifactId>maven-jar-plugin</artifactId>
118+
<version>3.5.0</version>
119+
</plugin>
120+
<plugin>
121+
<groupId>org.apache.maven.plugins</groupId>
122+
<artifactId>maven-resources-plugin</artifactId>
123+
<version>3.4.0</version>
124+
</plugin>
125+
<plugin>
126+
<groupId>org.apache.maven.plugins</groupId>
127+
<artifactId>maven-site-plugin</artifactId>
128+
<version>3.21.0</version>
129+
</plugin>
130+
<plugin>
131+
<groupId>org.apache.maven.plugins</groupId>
132+
<artifactId>maven-surefire-plugin</artifactId>
133+
<version>3.5.4</version>
134+
</plugin>
135+
136+
</plugins>
137+
138+
</build>
139+
140+
</project>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
d475e5b48a833d5a4d5e7943b6ee1155
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1a2f2626a74f2d5ebed7a16f2976debd9be1f667

maven-local-repository/de/mossgrabers/uitools/maven-metadata.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
<groupId>de.mossgrabers</groupId>
44
<artifactId>uitools</artifactId>
55
<versioning>
6-
<release>2.0.1</release>
6+
<release>2.0.2</release>
77
<versions>
88
<version>2.0.1</version>
9+
<version>2.0.2</version>
910
</versions>
10-
<lastUpdated>20251202145119</lastUpdated>
11+
<lastUpdated>20260218153251</lastUpdated>
1112
</versioning>
1213
</metadata>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
a84fef14ee6ca7e524e265dbed7b3a1e
1+
c48f73efbb4a66fd2fc8f15a664c7e53
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2a17556d88ac79e1c54b3afe172aa9d25062d1e8
1+
75f63b0873057c4cb4f0e5c44583fcee7207dd89

0 commit comments

Comments
 (0)