Skip to content

Commit

Permalink
2015.11.16 (1.50e31)
Browse files Browse the repository at this point in the history
  • Loading branch information
rasband committed Nov 17, 2015
1 parent 834d809 commit 655ab6c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ij/ImageJ.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,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.50e";
public static final String BUILD = "30";
public static final String BUILD = "31";
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
2 changes: 1 addition & 1 deletion ij/plugin/frame/Recorder.java
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ static String trimKey(String key) {
public static void saveCommand() {
String name = commandName;
if (name!=null) {
if (commandOptions==null && (name.equals("Fill")||name.equals("Clear")))
if (commandOptions==null && (name.equals("Fill")||name.equals("Clear")||name.equals("Draw")))
commandOptions = "slice";
if (!fgColorSet && (name.equals("Fill")||name.equals("Draw")))
setForegroundColor(Toolbar.getForegroundColor());
Expand Down
8 changes: 5 additions & 3 deletions release-notes.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
</head>
<body>

<li> <u>1.50e 15 November 2015</u>
<li> <u>1.50e 16 November 2015</u>
<ul>
<li> On Macs, thanks to Curtis Rueden and Brandon Hurr, the <i>Stack to Images</i>,
<i>Window&gt;Tile</i> and <i>Window&gt;Cascade</i> commands, and non-batch mode
macros that process multiple images, run faster
(<a href="macros/SetMenuBarBenchmark.txt">test macro</a>).
<li> Pressing "i" (<i>Image&gt;Show Info</i>) when no images are open now
displays use information.
displays useful information.
<li> Thanks to Peter Haub, the <i>Selection Rotator</i> tool, available in
the toolbar's "&gt;&gt;" menu, now rotates about the selection centroid and is recordable.
<li> Added a "Show all" checkbox and a "Help" button to the multi-point
Expand All @@ -29,10 +29,12 @@
<li> Thanks to Michael Schmid, fixed a bug that caused the
<i>Brightness/Contrast</i> adjuster to hang with RGB images
when there was a non-rectangular selection extending beyond image boundary.
<li> Thanks to Bob Hamilton, fixed bugs that caused the <i>Run to Insertion Point</e>
<li> Thanks to Bob Hamilton, fixed bugs that caused the <i>Run to Insertion Point</i>
macro debugger command to fail and the debugger to sometimes behave erratically.
<li> Thanks to David Gault, fixed a potential memory leak by adding a close()
method to the CompositeImage class.
<li> Thanks to Jan Eglinger, fixed a bug the the "d" (<i>Draw</i>) keyboard shortcut
to not be correctly recorded.
<li> Thanks to Saibal Mitra, fixed a v1.50d regression that caused the
<i>Process&gt;Math&gt;Macro</i> command to not work correctly with 32-bit images.
<li> Thanks to Michael Schmid, fixed a v1.49 regression that caused NaN values to
Expand Down

0 comments on commit 655ab6c

Please sign in to comment.