Skip to content

Commit

Permalink
made a link pop up when no JRE found
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdcramer committed Jan 16, 2024
1 parent f8124fd commit ddb8a8c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
10 changes: 9 additions & 1 deletion dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>net.oijon</groupId>
<artifactId>algonquin</artifactId>
<name>algonquin</name>
<version>0.4.1</version>
<version>0.4.3</version>
<description>A text-to-speech program meant to handle the International Phonetic Alphabet (IPA)</description>
<url>http://github.com/alexdcramer/Algonquin-TTS</url>
<developers>
Expand Down Expand Up @@ -150,6 +150,10 @@
<internalName>algonquin</internalName>
<originalFilename>algonquin-cli.exe</originalFilename>
</versionInfo>
<messages>
<jreVersionErr>JRE 11 or later was not found, and is required to run this application. Please download the latest version from https://www.oracle.com/java/technologies/downloads</jreVersionErr>
<jreNotFoundErr>JRE 11 or later was not found, and is required to run this application. Please download the latest version from https://www.oracle.com/java/technologies/downloads</jreNotFoundErr>
</messages>
</configuration>
</execution>
<execution>
Expand Down Expand Up @@ -181,6 +185,10 @@
<internalName>algonquin</internalName>
<originalFilename>algonquin.exe</originalFilename>
</versionInfo>
<messages>
<jreVersionErr>JRE 11 or later was not found, and is required to run this application. Please download the latest version from https://www.oracle.com/java/technologies/downloads</jreVersionErr>
<jreNotFoundErr>JRE 11 or later was not found, and is required to run this application. Please download the latest version from https://www.oracle.com/java/technologies/downloads</jreNotFoundErr>
</messages>
</configuration>
</execution>
</executions>
Expand Down
10 changes: 9 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.oijon</groupId>
<artifactId>algonquin</artifactId>
<version>0.4.2</version>
<version>0.4.3</version>
<packaging>jar</packaging>
<name>algonquin</name>
<description>A text-to-speech program meant to handle the International Phonetic Alphabet (IPA)</description>
Expand Down Expand Up @@ -207,6 +207,10 @@
<internalName>algonquin</internalName>
<originalFilename>algonquin-cli.exe</originalFilename>
</versionInfo>
<messages>
<jreVersionErr>JRE 11 or later was not found, and is required to run this application. Please download the latest version from https://www.oracle.com/java/technologies/downloads</jreVersionErr>
<jreNotFoundErr>JRE 11 or later was not found, and is required to run this application. Please download the latest version from https://www.oracle.com/java/technologies/downloads</jreNotFoundErr>
</messages>
</configuration>
</execution>
<execution>
Expand Down Expand Up @@ -238,6 +242,10 @@
<internalName>algonquin</internalName>
<originalFilename>algonquin.exe</originalFilename>
</versionInfo>
<messages>
<jreVersionErr>JRE 11 or later was not found, and is required to run this application. Please download the latest version from https://www.oracle.com/java/technologies/downloads</jreVersionErr>
<jreNotFoundErr>JRE 11 or later was not found, and is required to run this application. Please download the latest version from https://www.oracle.com/java/technologies/downloads</jreNotFoundErr>
</messages>
</configuration>
</execution>
</executions>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/oijon/algonquin/info/Info.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/
public class Info {

private static String versionNum = "0.4.2";
private static String versionNum = "0.4.3";
private static String fullVersion = "AlgonquinTTS - v" + versionNum;

/**
Expand Down

0 comments on commit ddb8a8c

Please sign in to comment.