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