diff --git a/functions.html b/functions.html
index 37f9caed..664d768b 100644
--- a/functions.html
+++ b/functions.html
@@ -4081,6 +4081,12 @@
Built-in Macro Functions
Requires 1.54a.
+
+RoiManager.delete(index)
+Deletes the ROI at 'index' and updates the display.
+Requires 1.54k.
+
+
diff --git a/ij/ImageJ.java b/ij/ImageJ.java
index 90b24c92..7bd5819b 100644
--- a/ij/ImageJ.java
+++ b/ij/ImageJ.java
@@ -79,7 +79,7 @@ public class ImageJ extends Frame implements ActionListener,
/** Plugins should call IJ.getVersion() or IJ.getFullVersion() to get the version string. */
public static final String VERSION = "1.54k";
- public static final String BUILD = "23";
+ public static final String BUILD = "";
public static Color backgroundColor = new Color(237,237,237);
/** SansSerif, 12-point, plain font. */
public static final Font SansSerif12 = new Font("SansSerif", Font.PLAIN, 12);
diff --git a/ij/plugin/frame/RoiManager.java b/ij/plugin/frame/RoiManager.java
index aa87ba2b..0cf787e6 100644
--- a/ij/plugin/frame/RoiManager.java
+++ b/ij/plugin/frame/RoiManager.java
@@ -591,6 +591,7 @@ boolean delete(boolean replacing) {
return true;
}
+ /** Deletes the ROI at 'index' and updates the display. */
public void delete(int index) {
int count = getCount();
if (count==0 || index>=count)
diff --git a/release-notes.html b/release-notes.html
index d2dd15d4..7a66ff06 100644
--- a/release-notes.html
+++ b/release-notes.html
@@ -5,21 +5,21 @@
- 1.54k23 14 September 2024
+ 1.54k 15 September 2024
-- Thanks to 'Carlos', added the RoiManager.delete(index) macro function DOC
+
- Thanks to 'Carlos', added the RoiManager.delete(index) macro function
and the RoiManager.delete(index) method.
- Thanks to Michael Schmid, the dialog shown for Image>Overlay>Add Selection
with the ALT key down has an additional "Show on all slices" checkbox.
Using "Apply" in the Image>Overlay>Overlay Options dialog
can be also used to remove the stack positions for the current overlay
-("Set stack positions" off, equivalent to "Show on all slices"). With
+("Set stack positions" off is equivalent to "Show on all slices"). With
"Set stack positions" on, the stack position of the overlay elements is set
to the current slice if it was previously unspecified. Modifying an overlay
with "Apply" in Image>Overlay>Overlay Options and removing an
overlay are undoable operations (ctrl+z).
- Thanks to Michael Schmid, the stack positions of multi-point ROIs can be set in
-in the Edit>Selection>Properties dialog or in the ROI Manager's
+the Edit>Selection>Properties dialog or in the ROI Manager's
Properties dialog. The ROI Manager's More>>Remove Positions command also works
for multi-point ROIs.
- Thanks to 'nicole3432', restored the particle analyzers's "Record starts" option.
@@ -43,7 +43,7 @@
not remove previous selections.
- Thanks to Oleg Dobrokhotov, fixed bug with the
"non-antialiased" option of the setFont() macro
-function to not work as expected.
+function not working as expected.
- Thanks to Jonathan Cottet, fixed bug with
IJ.openImage(path,n) opening .ome.tif files.
- Thanks to Fred Demen and Michael Schmid, fixed bug
@@ -52,7 +52,7 @@
option was presendt.
- Thanks to Fred Demen, fixed bug with the
Image>Adjust>Window/Level "Set" dialog
-using inadequate precision when displaying values.
+using inadequate precision when displaying float values.
- Thanks to Michael Schmid, fixed Undo exception
after using Image>Adjust>Size on
a stack.