Skip to content

Commit 7942b1f

Browse files
committed
STABLE A1.1.0
stable alpha known issues - cyan turns green under ansi4bit mode - server and client won't shut down due to PID isAlive lib not created yet
1 parent a53a498 commit 7942b1f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/jml/ot/OTConstants.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
public class OTConstants {
88

9-
public static final String OTVERSION = "alpha-1.0.1";
9+
public static final String OTVERSION = "alpha-1.1.0";
1010
public static final String illegals = "\"';:$@";
1111
public static final String pauseMsg = "Press ENTER to continue...";
1212
public static final File home = new File(TerminalUtil.getAppData().getAbsoluteFile(), "OpenTerminal");

src/jml/ot/OTMain.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ public static void main(String[] args)
4040
app.loadSession();
4141
app.startPipeManager();
4242
app.sendColors();
43-
System.exit(-1);
43+
// System.exit(-1);
4444
boolean hostIsAlive = true;
4545
// System.out.println("OTMAIN:" + System.getProperty("ot.app"));
46-
// while(hostIsAlive)
47-
// {
46+
while(hostIsAlive)
47+
{
4848
// TODO:PID keep alive check here
49-
// }
49+
}
5050
// JREUtil.sleep(3000);
5151

5252
//ensure final printlines happen before shutting down the client

0 commit comments

Comments
 (0)