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

Commit 874e399

Browse files
committed
Made folder wildcard filter case insensitive.
Bumped version to 1.3.3.1.
1 parent bf35fb8 commit 874e399

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

trunk/readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
JMkvpropedit v1.3.3
1+
JMkvpropedit v1.3.3.1
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).

trunk/src/com/googlecode/jmkvpropedit/JMkvpropedit.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@
3737
import javax.swing.filechooser.FileFilter;
3838
import javax.swing.border.EmptyBorder;
3939

40-
import org.apache.commons.io.FileUtils;
40+
import org.apache.commons.io.*;
4141
import org.apache.commons.io.filefilter.*;
4242
import org.ini4j.*;
4343

4444
public class JMkvpropedit {
4545

46-
private static final String VERSION_NUMBER = "1.3.3";
46+
private static final String VERSION_NUMBER = "1.3.3.1";
4747
private static final int MAX_STREAMS = 30;
4848
private static String[] argsArray;
4949

@@ -85,7 +85,7 @@ public void approveSelection() {
8585
new FileNameExtensionFilter("Matroska files (*.mkv; *.mka; *.mk3d) ", "mkv", "mka", "mk3d");
8686

8787
private IOFileFilter MATROSKA_FILE_FILTER =
88-
new WildcardFileFilter(new String[]{"*.mkv", "*.mka", "*.mk3d"});
88+
new WildcardFileFilter(new String[]{"*.mkv", "*.mka", "*.mk3d"}, IOCase.INSENSITIVE);
8989

9090
private FileFilter TXT_EXT_FILTER =
9191
new FileNameExtensionFilter("Plain text files (*.txt)", "txt");

0 commit comments

Comments
 (0)