diff --git a/README.md b/README.md index c4601c6..ec3c7ae 100644 --- a/README.md +++ b/README.md @@ -14,8 +14,12 @@ It is intended for the (at the time of writing) not-yet-released QuPath v0.3, an ## Installing -To install the StarDist extension, download the latest `qupath-extension-stardist-[version].jar` file and drag it onto QuPath when it is running. -You will then be prompted to ask whether you want to copy the file to the appropriate folder. +To install the StarDist extension, download the latest `qupath-extension-stardist-[version].jar` file from [releases](https://github.com/qupath/qupath-extension-stardist/releases) and drag it onto the main QuPath window. + +If you haven't installed any extensions before, you'll be prompted to select a QuPath user directory. +The extension will then be copied to a location inside that directory. + +You might then need to restart QuPath (but not your computer). ## Running diff --git a/build.gradle b/build.gradle index 0c606b6..986a796 100644 --- a/build.gradle +++ b/build.gradle @@ -26,10 +26,10 @@ ext.moduleName = 'qupath.extension.stardist' description = 'QuPath extension to use StarDist' -version = "0.3.0-SNAPSHOT" +version = "0.3.0-rc2" dependencies { - def qupathVersion = "0.3.0-SNAPSHOT" // For now + def qupathVersion = "0.3.0-rc2" // For now shadow "io.github.qupath:qupath-gui-fx:${qupathVersion}" shadow "org.slf4j:slf4j-api:1.7.30" diff --git a/src/main/java/qupath/ext/stardist/StarDistExtension.java b/src/main/java/qupath/ext/stardist/StarDistExtension.java index ffe6da0..f18db05 100644 --- a/src/main/java/qupath/ext/stardist/StarDistExtension.java +++ b/src/main/java/qupath/ext/stardist/StarDistExtension.java @@ -51,7 +51,7 @@ public String getDescription() { @Override public Version getQuPathVersion() { - return Version.parse("0.3.0-SNAPSHOT"); + return Version.parse("0.3.0-rc2"); } @Override