Skip to content

Commit

Permalink
Added version information
Browse files Browse the repository at this point in the history
  • Loading branch information
dannovikov committed Feb 1, 2024
1 parent 5d3b2fa commit fd3cd45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified SeqRuler.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions modules/gui-app/src/main/java/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import static javax.swing.JOptionPane.showMessageDialog;

@CommandLine.Command(name = "SeqRuler", mixinStandardHelpOptions = true, version = "3.0")
@CommandLine.Command(name = "SeqRuler", mixinStandardHelpOptions = true, version = "4.4")
public class Main implements Runnable{
@CommandLine.Option(names={"-i", "--inFile"}, description="input file with sequences",
paramLabel = "FILE")
Expand Down Expand Up @@ -157,7 +157,7 @@ public static void main(String[] args) {

private static void createAndShowGUI() {
//Create and set up the window.
JFrame frame = new JFrame("SeqRuler");
JFrame frame = new JFrame("SeqRuler" + " v4.4");
JPanel mainPane = new JPanel();
mainPane.setLayout(new BoxLayout(mainPane, BoxLayout.Y_AXIS));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Expand Down

0 comments on commit fd3cd45

Please sign in to comment.