This repository was archived by the owner on Jul 31, 2023. It is now read-only.
File tree 4 files changed +17
-2
lines changed
4 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 6
6
<property name =" dist.dir" value =" dist" />
7
7
<property name =" build.dir" value =" build" />
8
8
<property name =" lib.dir" value =" lib" />
9
+ <property name =" extra.dir" value =" extra" />
9
10
<property name =" launch4j.dir" location =" launch4j" />
10
11
<property name =" main.class" value =" io.github.brunorex.JMkvpropedit" />
11
12
30
31
<copy todir =" ${ dist.dir } " >
31
32
<fileset dir =" ." includes =" *.txt" />
32
33
</copy >
34
+
35
+ <copy todir =" ${ dist.dir } " >
36
+ <fileset dir =" ${ extra.dir } " includes =" *.*" />
37
+ </copy >
33
38
</target >
34
39
35
40
<target name =" compile" depends =" init" >
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
- JMkvpropedit v1.5.1
1
+ JMkvpropedit v1.5.2
2
2
3
3
A batch GUI for mkvpropedit (part of MKVToolNix) written in Java.
4
4
It should work on Windows, Linux and other *nixes (not tested).
Original file line number Diff line number Diff line change 96
96
97
97
public class JMkvpropedit {
98
98
99
- private static final String VERSION_NUMBER = "1.5.1 " ;
99
+ private static final String VERSION_NUMBER = "1.5.2 " ;
100
100
private static final int MAX_STREAMS = 200 ;
101
101
private static String [] argsArray ;
102
102
You can’t perform that action at this time.
0 commit comments