- Nov 13, 2023
-
-
Rob Swindell authored
Also use sbbs_t::newline() as the underlying implementation of console.newline() rather than a hard-coded CR/LF output loop. Added new console methods: cond_newline() - equivalent of Ctrl-A/ cond_blankline() - equivlaent of Ctrl-A? cond_contline() - equivalent of Ctrl-A\ ... so a JS script author doesn't have to output Ctrl-A codes to invoke those functions.
-
Rob Swindell authored
-
- Nov 12, 2023
-
-
Rob Swindell authored
... from the other Synchronet servers and services. For advanced uses/debugging.
-
Rob Swindell authored
To enable a server that's disabled in the sbbs.ini file, just use the <server>+ option (e.g. 't+' to enable the terminal server). To run *only* that server (and no other servers), use the '<server>!' option (e.g. 'w!' to run *only* the web server).
-
Rob Swindell authored
DDFileLister: On start, if console.aborted is true (due to the user pressing Ctrl-C, etc.), then return -1 to stop a file scan in progress. See merge request !362
-
DDFileLister: On start, if console.aborted is true (due to the user pressing Ctrl-C, etc.), then return -1 to stop a file scan in progress.
-
- Nov 11, 2023
-
-
Rob Swindell authored
js_init() failures are now logged with a critical error level (instead of just "error").
-
Rob Swindell authored
js_execxtrn() now returns -1 if a JS context can't be created. This eliminates redundant error messages from calling js_execfile with a NULL context.
-
Rob Swindell authored
-
Rob Swindell authored
These functions were causing enumeration issues with JSDOC builds (before the recent refactor that fixes that enumertion order problem), but really these calls should've been conditional anyway.
-
Rob Swindell authored
Just a blank string instead.
-
Rob Swindell authored
Ctrl-A? is a conditional new-line sequence (often used in prompts). This was a feature in yesnobar/noyesbar.bin and missing in this new JS port. Oops.
-
Randy Sommerfeld authored
-
Randy Sommerfeld authored
-
Randy Sommerfeld authored
-
- Nov 10, 2023
-
-
Randy Sommerfeld authored
-
Randy Sommerfeld authored
-
Randy Sommerfeld authored
-
Randy Sommerfeld authored
-
- Nov 09, 2023
-
-
Rob Swindell authored
DDMsgReader: Indexed mode: Added 'mark all read' for a sub-board with the R key. Fixed message list colors for messages to the user in the message lists. Fix for continuous newscan. Fix for DDLIghtbarMenu numbered mode item text in traditional UI. See merge request !361
-
DDMsgReader: Indexed mode: Added 'mark all read' for a sub-board with the R key. Fixed message list colors for messages to the user in the message lists. Fix for continuous newscan. Fix for DDLIghtbarMenu numbered mode item text in traditional UI.
-
Randy Sommerfeld authored
-
Randy Sommerfeld authored
-
Randy Sommerfeld authored
-
- Nov 08, 2023
-
-
Randy Sommerfeld authored
-
Randy Sommerfeld authored
-
- Nov 07, 2023
-
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
Replaced _property_ver_list (array of numbers) with _property_ver_list (array of objects) with a "ver" and (optional) "desc" property. This solves the enumeration order problem with objects that have both manual and table-based properties. Object's property tables (arrays of jsSyncPropertySpec) can now (optionally) contain the property descriptions. For properties defined in this manner, there will never be another mismatch between ther name/type and description/version in the jsobjs.html (a problem has re-occurred several times through the years with nebulous work-arounds). We still use _property_desc_list arrays for additional (e.g. manually defined) properties in such objects or just objects that only use one method of property definition and are not subject to the enumeration order problem. Fixed numerous typos. Using more consistent terminology and HTML mark-up. Some beautification and enhancement of readability, but nothing too major.
-
- Nov 06, 2023
-
-
Rob Swindell authored
-
Rob Swindell authored
We don't need the carriage returns and they cause Git warnings: warning: in the working copy of 'src/sbbs3/text.h', CRLF will be replaced by LF the next time Git touches it
-
Rob Swindell authored
DD Message Area Chooser: Fix for a copy & paste error - Added the canViewDeletedMsgs() function See merge request !360
-
Eric Oulashin authored
-
Rob Swindell authored
New: ddmr_cfg.js is a menu-based configurator for Digital Distortion Message Reader. Also, refactored slyedcfg.js a bit to make it a little simpler. See merge request !359
-
Eric Oulashin authored
New: ddmr_cfg.js is a menu-based configurator for Digital Distortion Message Reader. Also, refactored slyedcfg.js a bit to make it a little simpler.
-
- Nov 03, 2023
-
-
Rob Swindell authored
This is a menu-driven configuration program/script for SlyEdit. See merge request !358
-
-
- Nov 02, 2023
-
-
Rob Swindell authored
DD Msg Reader: Mark personal email as read if the user is just reading personal email See merge request !357
-
- Nov 01, 2023
-
-
Eric Oulashin authored
-
Rob Swindell authored
Fixes issue #670
-