Skip to content

Commit 566655f

Browse files
Merge pull request #12 from qupath/strings-not-found
Fix align strings problem
2 parents 4f07371 + 91d58e2 commit 566655f

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44

55
qupathExtension {
66
name = "qupath-extension-align"
7-
version = "0.5.0-SNAPSHOT"
7+
version = "0.5.0"
88
group = "io.github.qupath"
99
description = "QuPath extension for interactive image alignment"
1010
automaticModule = "qupath.extension.align"

src/main/java/qupath/ext/align/AlignExtension.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,15 @@ public class AlignExtension implements QuPathExtension, GitHubProject {
3939

4040
public static class ExperimentalCommands {
4141

42-
@ActionConfig(value = "alignAction", bundle = "qupath/ext/align/strings")
4342
@ActionMenu("Menu.Analyze>Alignment")
4443
public final Action actionInteractiveAlignment;
4544

4645
private ExperimentalCommands(QuPathGUI qupath) {
4746
var interactiveAlignment = new InteractiveImageAlignmentCommand(qupath);
4847
actionInteractiveAlignment = qupath.createProjectAction(project -> interactiveAlignment.run());
48+
actionInteractiveAlignment.setText("Interactive image alignment");
49+
actionInteractiveAlignment.setLongText("Experimental command to interactively align images using an Affine transform. \n" +
50+
"This is currently not terribly useful in itself, but may be helpful as part of more complex scripting workflows");
4951
}
5052

5153
}

src/main/resources/qupath/ext/align/strings.properties

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)