Skip to content
This repository has been archived by the owner on Jul 31, 2023. It is now read-only.

Commit

Permalink
Make Java 8 the minimum supported version
Browse files Browse the repository at this point in the history
Oracle still offers downloads for this ancient version on Windows
  • Loading branch information
BrunoReX committed Dec 4, 2021
1 parent b8fef8b commit a38062b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</target>

<target name="compile" depends="init" >
<javac includeantruntime="false" target="9" source="9" srcdir="${src.dir}" destdir="${build.dir}" debug="false" encoding="UTF-8">
<javac includeantruntime="false" target="8" source="8" srcdir="${src.dir}" destdir="${build.dir}" debug="false" encoding="UTF-8">
<classpath refid="lib.classpath" />
</javac>
</target>
Expand Down
2 changes: 1 addition & 1 deletion launch4j/config/exe-standalone.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<icon>java.ico</icon>
<jre>
<path></path>
<minVersion>9</minVersion>
<minVersion>8</minVersion>
<maxVersion></maxVersion>
</jre>
</launch4jConfig>
2 changes: 1 addition & 1 deletion launch4j/config/exe-with-jar.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<icon>java.ico</icon>
<jre>
<path></path>
<minVersion>9</minVersion>
<minVersion>8</minVersion>
<maxVersion></maxVersion>
</jre>
</launch4jConfig>
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
JMkvpropedit v1.5
JMkvpropedit v1.5.1

A batch GUI for mkvpropedit (part of MKVToolNix) written in Java.
It should work on Windows, Linux and other *nixes (not tested).
Requires Java 9 or newer.
Requires Java 8 or newer.

Source and downloads at:
https://github.com/BrunoReX/jmkvpropedit
Expand Down
2 changes: 1 addition & 1 deletion src/io/github/brunorex/JMkvpropedit.java
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@

public class JMkvpropedit {

private static final String VERSION_NUMBER = "1.5";
private static final String VERSION_NUMBER = "1.5.1";
private static final int MAX_STREAMS = 200;
private static String[] argsArray;

Expand Down

0 comments on commit a38062b

Please sign in to comment.