Skip to content

Commit

Permalink
Small fix with regards to running on opened file
Browse files Browse the repository at this point in the history
Bump minor version number to indicate mostly-done-ness
  • Loading branch information
DrNjitram committed Feb 3, 2021
1 parent 5f6f246 commit c5fa440
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ One can get the Plugin by using the download link below, or by subscribing to th
You can subscribe by going to Help > Update... > Manage Update Sites and checking the Hohlbein lab site.
It will automatically be downloaded and updated.

Current Version: 0.9.9.9
Current Version: 0.10
Download [Here](https://github.com/HohlbeinLab/FTM2/releases/latest)
Once downloaded it can be installed by launching ImageJ > Plugins > Install... Selecting the downloaded jar and restarting ImageJ.
The plugin should then show up in the Plugins menu under "Faster Temporal Median".
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<groupId>com.wurgobes</groupId>
<artifactId>FTM_2</artifactId>
<version>0.9-SNAPSHOT</version>
<version>0.10-SNAPSHOT</version>


<name>Faster Median Temporal</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/wurgobes/ftm2/About.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class About implements Command {
public void run() {
log.info("Faster Temporal Median About");
String content = "Developed by Martijn Gobes at the Holhbein Lab.\nMore information can be found at https://github.com/HohlbeinLab/FTM2\n" +
"Current Version: 0.9.9.9";
"Current Version: 0.10";

GenericDialog gd = new GenericDialog("About");
gd.addMessage(content);
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/wurgobes/ftm2/FTM2.java
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ public int setup(ImagePlus imp) {



if(!concat){
if(!concat && type != 3){
// this is hacky, but works

File[] listOfFiles = {}; //Will contain the list of File objects from either the file select or the folder select
Expand Down
Binary file not shown.
Binary file added target/FTM_2-0.10-SNAPSHOT.jar
Binary file not shown.
Binary file removed target/FTM_2-0.9-SNAPSHOT.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion target/maven-archiver/pom.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
artifactId=FTM_2
groupId=com.wurgobes
version=0.9-SNAPSHOT
version=0.10-SNAPSHOT

0 comments on commit c5fa440

Please sign in to comment.