Skip to content

Commit

Permalink
Release-0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthur Breurkes committed Jun 10, 2016
1 parent 5cb7a92 commit a2082fb
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 9 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>Context</groupId>
<artifactId>Context</artifactId>
<packaging>jar</packaging>
<version>0.6.2</version>
<version>0.7</version>

<build>
<plugins>
Expand Down
Binary file added releases/DART-N-0.7.jar
Binary file not shown.
30 changes: 22 additions & 8 deletions src/main/java/application/controllers/MainController.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.geometry.Pos;
import javafx.scene.image.ImageView;
import javafx.scene.control.*;
import javafx.scene.layout.*;

import java.io.*;
import javafx.scene.image.ImageView;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.HBox;
import javafx.scene.layout.StackPane;
import javafx.scene.layout.VBox;

import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.net.URL;
import java.util.*;

Expand Down Expand Up @@ -64,10 +69,19 @@ public MainController() {
this.mostRecentGFA = new LinkedList<>();
this.mostRecentNWK = new LinkedList<>();

checkMostRecent("/mostRecentGFF.txt", mostRecentGFF);
checkMostRecent("/mostRecentMetadata.txt", mostRecentMetadata);
checkMostRecent("/mostRecentGFA.txt", mostRecentGFA);
checkMostRecent("/mostRecentNWK.txt", mostRecentNWK);
if (!mostRecentGFA.isEmpty()) {
checkMostRecent("/mostRecentGFA.txt", mostRecentGFA);
}
if (!mostRecentGFF.isEmpty()) {
checkMostRecent("/mostRecentGFF.txt", mostRecentGFF);
}
if (!mostRecentMetadata.isEmpty()) {
checkMostRecent("/mostRecentMetadata.txt", mostRecentMetadata);
}
if (!mostRecentNWK.isEmpty()) {
checkMostRecent("/mostRecentNWK.txt", mostRecentNWK);
}


createMenu(false);

Expand Down

0 comments on commit a2082fb

Please sign in to comment.