- Sep 07, 2020
-
-
Rob Swindell authored
-
Rob Swindell authored
The file is state.bin.lock. Just ignore it (let Deuce debug the reason why).
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
Also, add the Pickels IGM to the LORD installer. It's *really* cool that many of the full-screen/color JS games do work (mostly) fine with PETSCII. Some still need a little TLC in this area, but its way better than assuming or requiring ANSI.
-
Rob Swindell authored
-
- Sep 06, 2020
-
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
Allows a new BBS to import all of DOVE-Net by default. This probably should be a separate setting for users and QWKnet hubs.
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
running SCFG on the repo.
-
Rob Swindell authored
-
Rob Swindell authored
This is a "forever bug". I guess at one time I stored each file's extended description in a separate file? I don't know, but this remove() call is clearly wrong.
-
echicken authored
If you have a local XML document containing an RSS or Atom feed, you can point to it like: file:///this/is/where/it/is.xml. For Dan_C, a variation on nelgin's proposed solution.
-
- Sep 05, 2020
-
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
So we can display ¯\_(ツ)_/¯ in ASCII. It's really important.
-
Rob Swindell authored
-
Rob Swindell authored
¯\_(ツ)_/¯ <- also, UTF-8 test commit message test. :-)
-
Rob Swindell authored
Also optimization of spinning cursor: don't call strlen() for each spin
-
- Sep 04, 2020
-
-
Rob Swindell authored
-
Stephen Hurd authored
-
Rob Swindell authored
-
Rob Swindell authored
I stole one of these patterns from 'git-size'.
-
Rob Swindell authored
Inspired by the cool progress cursor displayed by 'git-size', the spinning cursors in the Synchronet terminal server are now configurable via text.dat strings (SpinningCursor0 - 9), no maximum length. Increased the cursor "spin" rate from 4 to 5 times per second. The first character of the spin pattern is chosen at random between 0 and 4 but the direction of increment is also from left to right.
-
Rob Swindell authored
-
Rob Swindell authored
- as requested (and insured) by Nelgin
-
- Sep 01, 2020
-
-
Rob Swindell authored
-
- Aug 30, 2020
-
-
Rob Swindell authored
-
Rob Swindell authored
Run-time dirs are ctrl, text, docs, exec, xtrn, web, node1
-
Rob Swindell authored
One can't have too many semicolons.
-
Rob Swindell authored
Rather than introduce yet-another-external-program/config flag to enable the "new JS run-time/context" per invocation of any particular JS command, I'm using the XTRN/EX_SH ("Use Shell") option as it had no function for JavaScript command-lines and the concept is similar. So if you want to invoke a JS external program/timed-event in its own "sandbox", enable the "Use Shell / New Context" option for that program/command in SCFG. There may be performance penalties when running JS mods in this way, but you get the benefit of isolating one JS module from all others, if/when necessary.
-
Rob Swindell authored
So revert the order back to the way it was in aa2bcd61 (don't you love these git references?). Also, the previous fix for js_execfile() calls for global hot-key events also fixed the EX_JS_CX feature I was working on (js_execmodule)!
-
Rob Swindell authored
Add another "get cryptlib error string" (at least, that's what I assume GCES stands for) that allows the log level to be specified, rather than derived from Cryptlib thinks the log level should be. Do this rather than adding one (lowering the severity) of every cryptlib log message as I did in the previous commit to this file.
-
Rob Swindell authored
As reported by Ragnarok and The Lizard Master, invoking a JS global hot-key handler (e.g. hitting Ctrl-U or Ctrl-P with the privatemsg or nodelist modules installed as handlers) would lead to the global object being cleared/corrupted so other scripts would then fail to run correctly (e.g. Error: can't open sbbsdefs.js: No such file or directory) This probably explains the JS_GC/JS_ENDREQUEST change needed when the hotkey-specific JS runtime/context/scope was introduced last year. Should revisit that too.
-