- May 10, 2013
- May 09, 2013
-
-
deuce authored
-
rswindell authored
by whomever wrote js_internal_charfunc().
-
rswindell authored
string).
-
rswindell authored
9999 messages (and an 80 column terminal). Deuce will have to merge in his previous commit which is currently missing from the ctrl/text.dat file in CVS.
-
rswindell authored
-
rswindell authored
rev 1.140 - this is why Synchronet boards started displaying "PW:" instead of "Password:" for the password prompt (see exec/login.js for details why).
-
- May 07, 2013
-
-
rswindell authored
allowing external JS message editors to accurately use the bbs.smb_sub* properties to get information about the current sub-board being posted to.
-
rswindell authored
-
mcmlxxix authored
added bbs.rlogin_gate method: bbs.rlogin(addr,user,pass,mode); disable "raw input" mode for rlogin_gate connections. not sure why this is the fix or why it was the problem, but no side effects are noted at this time.
-
mcmlxxix authored
-
- May 06, 2013
-
-
mcmlxxix authored
-
- May 04, 2013
- May 03, 2013
- Apr 29, 2013
-
-
deuce authored
super-strangeness with the previously unfucked matchuser().
-
- Apr 27, 2013
-
-
deuce authored
char. Thanks for the bug reports.
-
- Mar 16, 2013
-
-
rswindell authored
slightly improved JSDOC descriptions. Updated JSDOC description of the 'js' object to be more general.
-
deuce authored
-
deuce authored
-
deuce authored
This is to deal with the fact that when you concatenate JS strings, the JS engine simply notes that they are concatenated, but keeps all the original strings around until something flattens them. This code: for(;;) { str += ascii(random(256)); log(str.length); } Fails when str reaches about 256KiB then crashes with out of memory but this code: for(;;) { str += ascii(random(256)); log(str.length); } Reaches a size of 4MB without stopping. Any time you actually paw through the string, it gets flattened, but when you do a bunch of concatenation, manually flattening can be a Good Thing.
-
- Feb 28, 2013
-
-
deuce authored
-
- Feb 17, 2013
-
-
rswindell authored
work-around door game bug reported by DeliriumTremens.
-
- Feb 14, 2013
-
-
rswindell authored
messages in the terminal server.
-
- Feb 13, 2013
- Feb 11, 2013
- Feb 10, 2013