Skip to content

Commit c63180e

Browse files
committed
Build "2025-1.16-02x62" - Release 1.16 LTS
1 parent 9ed99d5 commit c63180e

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

assets/root/build.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,4 +125,5 @@
125125
[2025-1.16-02x58] Moved Sessions Map<> into Virtual Process
126126
[2025-1.16-02x59] Improved ITEM's
127127
[2025-1.16-02x60] (1.16-rc2)
128-
[2025-1.16-02x61] Debugging for LTS - Merged Credentials and Monitor, generated (OpenTTY$MIDletControl) class
128+
[2025-1.16-02x61] Debugging for LTS - Merged Credentials and Monitor, generated (OpenTTY$MIDletControl) class
129+
[2025-1.16-02x62] Release 1.16 LTS

src/OpenTTY.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class OpenTTY extends MIDlet implements CommandListener {
2020
public Hashtable attributes = new Hashtable(), paths = new Hashtable(), trace = new Hashtable(),
2121
aliases = new Hashtable(), shell = new Hashtable(), functions = new Hashtable();
2222
public String username = loadRMS("OpenRMS"), nanoContent = loadRMS("nano");
23-
private String logs = "", path = "/home/", build = "2025-1.16-02x61";
23+
private String logs = "", path = "/home/", build = "2025-1.16-02x62";
2424
private Display display = Display.getDisplay(this);
2525
private TextBox nano = new TextBox("Nano", "", 31522, TextField.ANY);
2626
public Form form = new Form("OpenTTY " + getAppProperty("MIDlet-Version"));
@@ -3002,7 +3002,7 @@ else if (MOD == PCALL) {
30023002
}
30033003
return result;
30043004
}
3005-
else if (MOD == GETENV) { if (args.isEmpty()) { } else { String key = toLuaString(args.elementAt(0)); return midlet.attributes.containsKey(key) ? midlet.attributes.get(key) : null; } }
3005+
else if (MOD == GETENV) { if (args.isEmpty()) { return gotbad(1, "getenv", "string expected, got no value"); } else { String key = toLuaString(args.elementAt(0)); return midlet.attributes.containsKey(key) ? midlet.attributes.get(key) : null; } }
30063006
else if (MOD == REQUIRE) {
30073007
if (args.isEmpty() || args.elementAt(0) == null) { return gotbad(1, "require", "string expected, got no value"); }
30083008

0 commit comments

Comments
 (0)