Skip to content
This repository has been archived by the owner on Feb 6, 2022. It is now read-only.

Commit

Permalink
* Fixed dialog box being in the top-left
Browse files Browse the repository at this point in the history
* Changed TravisCI to only build for tags
  • Loading branch information
vs49688 committed Dec 13, 2016
1 parent c1788ca commit 5149181
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ deploy:
secure: YBc2iUEZSFo9mQtoKhg2LQlofXIBED1Yw9/snL2NrOEqAYYvgB9D+GGQonFZ+6rQgUtA4bLrNYwyuYc8FrThLwYFk+QIE57CeUwMD+ifEX3mhHJcf8aUImp1gMUrWQhwn8CJ72zp+wcKM2PWQ/tB2pL2aLsyngdKYefEqrE05H11HAFERtIET0TxJzyPNyF02+TUWJk45bHB0xk8qt9h3Vj714PkaFLrlyNRUPWObbfWmIKidcYmQLBxIWtDScjmGBv5jpwr/A/XK4/Xyq8KZoI7imfjXqeXyGmNk0dfiRQw5dIGr0j0ycYgasjcrYR+7lA1KH6buefJJdQnpWgGI1OWHQMo+6vlOHFeQ6+UJnbBkkydDtS71GLKDhS9GcJW+/baDYjjBNOY6oE9Md9+Ayu0NV8ZZjIGmI4+PiGe4QfncYfRNBvGs02GMBsPlSsNy+NVKFA9Krb8QKS2/5eMEamEyHLaJbn0ein+FBcYyr1SlVI0BJc3KyLT+2/oEjK/oUX9Wn1YJXTPCmJR728gDiLyugIULWz3r7k8PxcHWdCBlZd/9SNqCIHGaeYLVcoQj419NmlgP9PzytqKzvXma/Txkw34y++JtNlgxo1XdtiXE6clWWVOT8BUnNP7aX9tQYyHEvotgmKqAwe3WN5FLW7quecNszvVq9DuOtNtV/g=
file: build/libs/RAFTools.jar
on:
repo: vs49688/RAFTools
tags: true
skip_cleanup: true
2 changes: 1 addition & 1 deletion src/main/java/net/vs49688/rafview/cli/Model.java
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ private static boolean validatePairs(List<Path> files) {
}

public static String getVersionString() {
return String.format("0.5-alpha~%s", GitInfo.getShortCommitHash());
return String.format("0.5-beta~%s", GitInfo.getShortCommitHash());
}

public static String getApplicationName() {
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/net/vs49688/rafview/gui/AboutDialogCLS.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ public AboutDialogCLS(Frame parent) {
initComponents();

this.getRootPane().setDefaultButton(m_KBtn);
this.pack();
this.setLocationRelativeTo(parent);
}

/**
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/net/vs49688/rafview/gui/AboutDialogGPL.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ public AboutDialogGPL(Frame parent) {
initComponents();

this.getRootPane().setDefaultButton(m_KBtn);
this.pack();
this.setLocationRelativeTo(parent);
}

/**
Expand Down

0 comments on commit 5149181

Please sign in to comment.