- May 23, 2021
-
-
Rob Swindell authored
-
Rob Swindell authored
Just include the total files in the listing, not the current display. Fixes #268.
-
Rob Swindell authored
Resolve error reported on irc with Ubuntu (don't know what version): <rjwboys> ok now i get filedat.c:896:3: error: unknown type name ‘la_int64_t’
-
Deucе authored
For programs that don't specify a scaling type (scfg, syncdraw) use blocky scaling.
-
- May 22, 2021
-
-
Deucе authored
-
Deucе authored
Setting the scaling and size before changing modes does weird things. Those things should be fixed, but at least this makes the problem go away in SyncTERM for now.
-
Rob Swindell authored
-
Rob Swindell authored
Now IS_WHITESPACE() will return true for that char and this allows things like truncsp() to truncate trailing white-space (e.g. from a FILE_ID.DIZ), even if it contains a terminating 0xFF character for some unknown reason.
-
Randy Sommerfeld authored
-
Deucе authored
-
Deucе authored
He's old, and should keep his blood pressure down. Do not walk on his lawn.
-
Deucе authored
-
Deucе authored
-
Rob Swindell authored
IRCd 1.9b See merge request !126
-
-
Deucе authored
-
Deucе authored
-
Deucе authored
-
Rob Swindell authored
Issue reported by plt2 via IRC.
-
Deucе authored
This is basically just a scratchpad for things I want to have in the future ciolib.
-
- May 21, 2021
-
-
Deucе authored
Currently, this has RIP.supported which returns true if RIP is supported by the client, and rip.loadicons(archive) which sends all the icons (and .RIP files) in the specified archive (either an Arcive object or a filename) to the remote if they don't already have them. If you have a RIP enabled door, a small JS script as a pre-run command like this: require("rip.js", "RIP"); rip.loadicons('/sbbs/xtrl/lord/lordicns.zip'); Will automatically send all the icon files in the arcive to the user if the user doesn't already have them. For SyncTERM as of this commit, they will be placed in the cache directory for that BBS (and only be available for that BBS). On *nix, the cache dir is ~/.syncterm/cache/<bbsname> On Win32 it's something like: C:\Users\User\AppData\Local\Microsoft\Windows\INetCache\SyncTERM\cache\<bbsname> No ideal what it is on macOS.
-
Deucе authored
I was going to start keeping the old rect around again, but that idea didn't pan out. This massive memory leak is what I get for not doing more commits while tuning.
-
Deucе authored
-
Deucе authored
-
Deucе authored
Reported by Booch (Thanks!)
-
Rob Swindell authored
-
Rob Swindell authored
This has the effect of the file being listed as absent/deleted in the listing that's in memory. As requested by Phil, plt via irc. Moving a file after this change did result in a crash once, but I couldn't reproduce it with a debugger attached.
-
Deucе authored
Pixes set via setpixels() were only set in the "blink off" screen and not in the "blink on" screen... so they all reverse blinked.
-
Deucе authored
1) Keep a rectangle updated per-screen rather than regenerate each time 2) Strip palette info when putting pixels into rectangles rather than during scaling 3) Tighten up the screen locks a bit 4) Don't require a full resend of both screens on an update request 5) Only force a redraw for cursor movement when the cursor is visible (And force it whenever the cursor changes) 6) Avoid doubles in interpolation 7) Heavily optimize interpolate_height() interpolate_width() likely doesn't need it because it's generally not used and also it reads from the next pixel in memory making the prefetchers job easier. 8) Fix some memory-leak-on-error issues 9) For ARGB8 XImages, manipulate the data directly rather than through XPutPixel() At this point, the scaling and X11 output time is heavily dominated by cache misses. The only really effective way to reduce this hit is to spread the work across all the L3 caches in the system or move it into the GPU. With the latest updates, at the SyncTERM menu, over 90% of the time is spent in the rendering pipeline, and over 90% of that time is spent thrashing the caches... the only real easy win left is vectorizing, but that's highly compiler specific. To that end, I've switched to -O3 for release builds. There was a comment that -finline-functions broke Baja "badly", but that's clearly false since -f-inline-functions has been part of -O2 for quite a while now, and Baja doesn't seem any more broken that it ever was.
-
- May 20, 2021
-
-
Rob Swindell authored
SBBSecho uses mkstemp() now (instead of tempnam()) - so we need this POSIX function wrapper for Windows builds to succeed.
-
Rob Swindell authored
Since we're cleaning up warnings... this will break the Windows build for now.
-
Deucе authored
-
Rob Swindell authored
-
Deucе authored
It will be used in the future, so the code shouldn't be deleted, but not using it causes a warning.
-
Deucе authored
reply on. Make it harder to merge this code from upstream in the future instead.
-
Deucе authored
At least the warnings are gone.
-
Rob Swindell authored
Deuce doesn't want to add "useless parenthesis" to xbr.c. Hopefully Clang will just ignore this -Wno-* option? warning: suggest parentheses around ‘&&’ within ‘||’
-
Rob Swindell authored
warning: always_inline function might not be inlinable [-Wattributes]
-
Deucе authored
While we're doing that, actually use it in SyncTERM so the offline scrollback retains fonts. Also, fix an issue where the current mode would be updated with the custom parameters when you changed them. Finally, remove some unused variables.
-
Rob Swindell authored
-