diff --git a/pom.xml b/pom.xml index c054cc0..236978f 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ ca.mcgill Sholl_Analysis - 3.4.6-SNAPSHOT + 3.4.6 Sholl Analysis An ImageJ 1.x plugin that uses automated Sholl to perform neuronal morphometry directly from bitmap images diff --git a/src/main/java/Sholl_Analysis.java b/src/main/java/Sholl_Analysis.java index 0ff6fdf..70e99d5 100644 --- a/src/main/java/Sholl_Analysis.java +++ b/src/main/java/Sholl_Analysis.java @@ -76,7 +76,7 @@ public class Sholl_Analysis implements PlugIn, DialogListener { /* Plugin Information */ /** The Plugin's version */ - public static final String VERSION = "3.4.6-DEV"; + public static final String VERSION = "3.4.6"; private static final String URL = "http://imagej.net/Sholl"; /* Sholl Type Definitions */ @@ -967,7 +967,7 @@ private boolean bitmapPrompt(final double chordAngle, final boolean is3D, final // We'll use the "units" label of the GenericDialog's numeric field to // provide some feedback on the usage of multi-point counters - // (http://imagej.net/Sholl#InitialROIs). This is obviously extremely + // (http://imagej.net/Sholl#Startup_ROI). This is obviously extremely // hacky, but we are already at the limit of customization allowed by // GenericDialogs final String mpTip = (primaryFromPointRoi) diff --git a/src/main/java/Sholl_Utils.java b/src/main/java/Sholl_Utils.java index cb13038..8f56df3 100644 --- a/src/main/java/Sholl_Utils.java +++ b/src/main/java/Sholl_Utils.java @@ -58,7 +58,7 @@ */ public class Sholl_Utils implements PlugIn { - private static final String BUILD = "2016.03"; + private static final String BUILD = "2016.02"; private static final String SRC_URL = "https://github.com/tferr/ASA"; private static final String DOC_URL = "http://imagej.net/Sholl";