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

Commit 97af80e

Browse files
committed
Add .bat launcher for .jar
1 parent 5b92cc5 commit 97af80e

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

build.xml

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<property name="dist.dir" value="dist" />
77
<property name="build.dir" value="build" />
88
<property name="lib.dir" value="lib" />
9+
<property name="extra.dir" value="extra" />
910
<property name="launch4j.dir" location="launch4j" />
1011
<property name="main.class" value="io.github.brunorex.JMkvpropedit" />
1112

@@ -30,6 +31,10 @@
3031
<copy todir="${dist.dir}">
3132
<fileset dir="." includes="*.txt" />
3233
</copy>
34+
35+
<copy todir="${dist.dir}">
36+
<fileset dir="${extra.dir}" includes="*.*" />
37+
</copy>
3338
</target>
3439

3540
<target name="compile" depends="init" >

extra/JMkvpropedit.bat

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
@ECHO OFF
2+
3+
CD /D "%~dp0"
4+
start javaw -jar JMkvpropedit.jar
5+
6+
IF '%ERRORLEVEL%'=='0' GOTO :OK
7+
PAUSE
8+
9+
:OK
10+
EXIT

readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
JMkvpropedit v1.5.1
1+
JMkvpropedit v1.5.2
22

33
A batch GUI for mkvpropedit (part of MKVToolNix) written in Java.
44
It should work on Windows, Linux and other *nixes (not tested).

src/io/github/brunorex/JMkvpropedit.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696

9797
public class JMkvpropedit {
9898

99-
private static final String VERSION_NUMBER = "1.5.1";
99+
private static final String VERSION_NUMBER = "1.5.2";
100100
private static final int MAX_STREAMS = 200;
101101
private static String[] argsArray;
102102

0 commit comments

Comments
 (0)