jcs
/subtext
/amendments
Amendments on April 26, 2022
jcs made amendment
96
over 2 years ago
Amendments on April 21, 2022
jcs made amendment
95
over 2 years ago
Amendments on April 19, 2022
jcs made amendment
94
over 2 years ago
jcs made amendment
93
over 2 years ago
Amendments on April 14, 2022
focusable: Move code to separate file, fix a bunch of bugs here
Fix drawing on the wrong window, drawing in the wrong font, crash at
exit, etc.
Amendments on March 31, 2022
jcs made amendment
91
over 2 years ago
jcs made amendment
90
over 2 years ago
Amendments on March 29, 2022
jcs made amendment
89
over 2 years ago
Amendments on March 17, 2022
jcs made amendment
88
over 2 years ago
jcs made amendment
87
over 2 years ago
jcs made amendment
86
over 2 years ago
Amendments on March 3, 2022
jcs made amendment
85
over 2 years ago
jcs made amendment
84
over 2 years ago
Amendments on March 1, 2022
session: Persist session logs to a separate bile db, add recent command
This file will get a lot of activity, so put it in a separate file for
easy rotation and to avoid corruption of the important user database
bile: Correct error message
Would be nice if THINK C supported __func__...
Amendments on February 21, 2022
session: Handle arrow keys in session_field_input
Handle backspace and character insertion when cursor is not at the end
of a field.
Have session_input_char return a short so we can return custom codes
> 255 for keys or other events.
console: Pass arrow keys through as VT100 arrow key sequences
Or at least the keycodes generated on the M0110A
jcs made amendment
79
over 2 years ago
settings: Fix storage of short fields
THINK C is treating "&new_config + 32" as
"&new_config + (sizeof(struct config) * 32)" so cast it to char *
Amendments on February 18, 2022
session: Support template variables in ternary expressions
Instead of only supporting hard-coded strings, we can now output the
value of a variable based on the conditional.
Since we're using ?: for ternary conditionals, switch variable length
character from : to | (e.g., "username|10")