Skip to content

Commit

Permalink
2023.01.08 (1.54b; Release version)
Browse files Browse the repository at this point in the history
  • Loading branch information
rasband committed Jan 9, 2023
1 parent 1c6ff02 commit a1d6cb9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ij/IJ.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class IJ {
/** Image display modes */
public static final int COMPOSITE=1, COLOR=2, GRAYSCALE=3;

public static final String URL = "http://imagej.net/ij";
public static final String URL = "http://imagej.nih.gov/ij"; //"http://imagej.net/ij"
public static final int ALL_KEYS = -1;

/** Use setDebugMode(boolean) to enable/disable debug mode. */
Expand Down
6 changes: 3 additions & 3 deletions ij/ImageJ.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ public class ImageJ extends Frame implements ActionListener,
MouseListener, KeyListener, WindowListener, ItemListener, Runnable {

/** Plugins should call IJ.getVersion() or IJ.getFullVersion() to get the version string. */
public static final String VERSION = "1.54a";
public static final String BUILD = ""; //37
public static final String VERSION = "1.54b";
public static final String BUILD = ""; //5
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 Expand Up @@ -793,7 +793,7 @@ else if (delta>0 && DEFAULT_PORT+delta<65536)
IJ.open(file.getAbsolutePath());
}
}
if (IJ.debugMode && IJ.getInstance()==null)
if (IJ.debugMode && IJ.getInstance()==null && !GraphicsEnvironment.isHeadless())
new JavaProperties().run("");
if (noGUI) System.exit(0);
}
Expand Down
6 changes: 6 additions & 0 deletions release-notes.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
</head>
<body>

<li> <u>1.54b 08 January 2023</u>
<ul>
<li> Fixed a 1.54a regression (changing IJ.URL to "http://imagej.net/ij")
that caused the sample images to fail to load on Fiji.
</ul>

<li> <u>1.54a 05 January 2023</u>
<ul>
<li> Thanks to Herbie Gluender, added the
Expand Down

0 comments on commit a1d6cb9

Please sign in to comment.