From f6be3a4c9881090d45c65a347cb1f259b2a1cfc6 Mon Sep 17 00:00:00 2001 From: pete Date: Sat, 7 Aug 2021 21:25:34 +0100 Subject: [PATCH 1/2] Bump version to rc2 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 0c606b6..cf12166 100644 --- a/build.gradle +++ b/build.gradle @@ -26,7 +26,7 @@ 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 From 681d8cd238bbd08c882c338324b63e6dd4203dbe Mon Sep 17 00:00:00 2001 From: pete Date: Sun, 8 Aug 2021 12:34:05 +0100 Subject: [PATCH 2/2] Update for QuPath v0.3.0-rc2 --- README.md | 8 ++++++-- build.gradle | 2 +- src/main/java/qupath/ext/stardist/StarDistExtension.java | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) 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 cf12166..986a796 100644 --- a/build.gradle +++ b/build.gradle @@ -29,7 +29,7 @@ description = 'QuPath extension to use StarDist' 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