Skip to content

Commit 93b2d80

Browse files
committed
update version
1 parent 8eef7a5 commit 93b2d80

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

nbproject/private/private.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ do.jlink=false
55
javac.debug=true
66
javadoc.preview=true
77
jlink.strip=false
8-
user.properties.file=C:\\Users\\chris\\AppData\\Roaming\\NetBeans\\12.3\\build.properties
8+
user.properties.file=C:\\Users\\chris\\AppData\\Roaming\\NetBeans\\20\\build.properties

src/ca/cgjennings/apps/librivox/Checker.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public final class Checker extends javax.swing.JFrame {
8181
/**
8282
* Current version number.
8383
*/
84-
public static final String VERSION = "1.1";
84+
public static final String VERSION = "1.2";
8585

8686
/**
8787
* Creates a new Checker application instance.
@@ -1019,7 +1019,7 @@ public static void main(String args[]) {
10191019
for (String f : args) {
10201020
try {
10211021
if (f.startsWith("-")) continue;
1022-
if (f.startsWith("file:") || f.startsWith("http:")) {
1022+
if (f.startsWith("file:") || f.startsWith("http:") || f.startsWith("https:")) {
10231023
mainApp.checkURL(new URL(f));
10241024
} else {
10251025
mainApp.checkFile(new File(f));

0 commit comments

Comments
 (0)