Skip to content

Commit

Permalink
16.4.2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Wisser committed Oct 4, 2024
1 parent e14c2ab commit 2066002
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 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 = "16.4.2.10";
public static final String VERSION = "16.4.2.12";

/**
* The Jailer working tables version.
Expand Down
9 changes: 3 additions & 6 deletions src/main/gui/net/sf/jailer/ui/Environment.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,10 @@ public static String[] init(String[] args) {
if (args != null) {
List<String> aList = new ArrayList<String>(Arrays.asList(args));
boolean remove = aList.remove("-jpack");

JOptionPane.showMessageDialog(null, "env! " + aList, "Error", JOptionPane.ERROR_MESSAGE);
// TODO
if (aList.remove("-jpackrpm")) {
remove = true;
rpm = true;
}
JOptionPane.showMessageDialog(null, "env! " + rpm, "Error", JOptionPane.ERROR_MESSAGE);
// TODO
if (remove) {
args = aList.toArray(new String[0]);
jpack = true;
Expand Down Expand Up @@ -258,6 +253,8 @@ public void warn(Throwable t) {
LogUtil.warn(toBeLogged);
}
state += rpmOffset();
JOptionPane.showMessageDialog(null, "env! " + rpm + state, "Error", JOptionPane.ERROR_MESSAGE);
//TODO
return args;
}

Expand All @@ -266,7 +263,7 @@ public void warn(Throwable t) {
private static int rpmOffset() {
int offset = 0;
if (rpm) {
offset = 900;
offset = 40;
}
return offset;
}
Expand Down

0 comments on commit 2066002

Please sign in to comment.