Skip to content

Commit

Permalink
2024.09.15 (1.54k; Release version)
Browse files Browse the repository at this point in the history
  • Loading branch information
rasband committed Sep 16, 2024
1 parent 662feed commit 8dc9bdc
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
6 changes: 6 additions & 0 deletions functions.html
Original file line number Diff line number Diff line change
Expand Up @@ -4081,6 +4081,12 @@ <h1>Built-in Macro Functions</h1>
Requires 1.54a.
<br>

<a name="RoiManager.delete"></a>
<b>RoiManager.delete(index)</b><br>
Deletes the ROI at 'index' and updates the display.
Requires 1.54k.
<br>

</blockquote>

<a name="round"></a>
Expand Down
2 changes: 1 addition & 1 deletion ij/ImageJ.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
1 change: 1 addition & 0 deletions ij/plugin/frame/RoiManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
12 changes: 6 additions & 6 deletions release-notes.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@
</head>
<body>

<li> <u>1.54k23 14 September 2024</u>
<li> <u>1.54k 15 September 2024</u>
<ul>
<li> Thanks to 'Carlos', added the RoiManager.delete(index) macro function DOC
<li> Thanks to 'Carlos', added the RoiManager.delete(index) macro function
and the RoiManager.delete(index) method.
<li> Thanks to Michael Schmid, the dialog shown for <i>Image&gt;Overlay&gt;Add Selection</i>
with the ALT key down has an additional "Show on all slices" checkbox.
Using "Apply" in the <i>Image&gt;Overlay&gt;Overlay Options</i> 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 <i>Image&gt;Overlay&gt;Overlay Options</i> and removing an
overlay are undoable operations (ctrl+z).
<li> Thanks to Michael Schmid, the stack positions of multi-point ROIs can be set in
in the <i>Edit&gt;Selection&gt;Properties</i> dialog or in the ROI Manager's
the <i>Edit&gt;Selection&gt;Properties</i> dialog or in the ROI Manager's
Properties dialog. The ROI Manager's More&gt;&gt;Remove Positions command also works
for multi-point ROIs.
<li> Thanks to 'nicole3432', restored the particle analyzers's "Record starts" option.
Expand All @@ -43,7 +43,7 @@
not remove previous selections.
<li> 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.
<li> Thanks to Jonathan Cottet, fixed bug with
IJ.openImage(path,n) opening .ome.tif files.
<li> Thanks to Fred Demen and Michael Schmid, fixed bug
Expand All @@ -52,7 +52,7 @@
option was presendt.
<li> Thanks to Fred Demen, fixed bug with the
<i>Image&gt;Adjust&gt;Window/Level</i> "Set" dialog
using inadequate precision when displaying values.
using inadequate precision when displaying float values.
<li> Thanks to Michael Schmid, fixed <i>Undo</i> exception
after using <i>Image&gt;Adjust&gt;Size</i> on
a stack.
Expand Down

0 comments on commit 8dc9bdc

Please sign in to comment.