Skip to content

Commit

Permalink
Update for QuPath v0.3.0-rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
petebankhead committed Aug 8, 2021
1 parent f6be3a4 commit 681d8cd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/qupath/ext/stardist/StarDistExtension.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 681d8cd

Please sign in to comment.