Skip to content

Commit

Permalink
15.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Wisser committed Sep 21, 2023
1 parent 8f9ad3b commit f544812
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/engine/net/sf/jailer/JailerVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class JailerVersion {
/**
* The Jailer version.
*/
public static final String VERSION = "15.2.1.4";
public static final String VERSION = "15.2.2";

/**
* The Jailer working tables version.
Expand Down
5 changes: 4 additions & 1 deletion src/main/gui/net/sf/jailer/ui/util/UpdateInfoManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
public class UpdateInfoManager {

private static final String[] versionURL = new String[] {
"http://jailer.sourceforge.net/currentVersion.php",
"https://jailer.sourceforge.net/currentVersion.php",
"https://jailer.sourceforge.io/currentVersion.php",
"http://jailer.sourceforge.net/currentVersion.php",
};
private static final String downloadURL = "https://sourceforge.net/projects/jailer/files/";
private static final long CHECK_INTERVALL = 1000L * 60 * 60 * 46;
Expand Down Expand Up @@ -95,6 +95,9 @@ public void run() {
BufferedReader in = new BufferedReader(new StringReader(content));
inputLine = in.readLine();
in.close();
if (inputLine != null && inputLine.equals("403")) {
continue;
}
if (inputLine != null && !inputLine.trim().isEmpty()) {
break;
}
Expand Down

0 comments on commit f544812

Please # to comment.