summary refs log tree commit diff
path: root/.gdbinit
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2015-11-02 15:51:10 -0500
committerJune McEnroe <june@causal.agency>2015-11-02 15:51:10 -0500
commitb1db5f87d95e86f615c06c0a3d5f86d128b28c57 (patch)
treebce07690e5681fd9eb4029b81d4789b2c3b51f51 /.gdbinit
parentNewline before prompt and start at bottom of terminal (diff)
downloadsrc-b1db5f87d95e86f615c06c0a3d5f86d128b28c57.tar.gz
src-b1db5f87d95e86f615c06c0a3d5f86d128b28c57.zip
Remove first prompt placement
Diffstat (limited to '.gdbinit')
0 files changed, 0 insertions, 0 deletions
| | | | | | catgirl has no reconnect feature and generally must not do anything but read/write from/to the connected socket which does not require "inet" or "dns" promises. * Call pledge(2) after unveil(2)Klemens Nanni2021-01-23 | | | | | | Simplify logic, be more idiomatic and finalize by pledging after all unveiling is done by omitting the "unveil" promise and thereby not allowing further calls to it. * Separate kiosk mode from restrict modeJune McEnroe2021-01-23 | | | | | | | | | | | Restrict mode will focus on sandboxing, while kiosk will continue to restrict IRC access through a public kiosk. Kiosk mode without restrict mode allows execution of man 1 catgirl with /help, assuming external sandboxing. The /list and /part commands are also added to the list of disabled commands in kiosk mode, since they are pointless without access to /join. * Add -I highlight option and /highlightJune McEnroe2021-01-16 | * Rename ignore code to filterJune McEnroe2021-01-16 | * Sandbox with unveil(2) on OpenBSD in restricted modeJune McEnroe2021-01-10 | | | | I wrote all this in vi and it was nice. * Print chain to stdout with -oJune McEnroe2021-01-10 | * Exit immediately when using -oJune McEnroe2021-01-10 | * Add -o and -t options to trust self-signed certificatesJune McEnroe2021-01-09 | * Allow configuring the upper bound of the hash functionJune McEnroe2021-01-09 | | | | | | | This allows limiting the nick colors used to the 16-color terminal set without modifying the TERM environment variable. Produces different results from just using the default configuration in a 16-color terminal, but what can you do? * Sandbox with pledge(2) on OpenBSDJune McEnroe2021-01-06 | * Split /exec lines by \r as well as \nJune McEnroe2020-11-24 | | | | | This fixes local rendering of /exec toilet --irc, which outputs \r\n line endings. * Avoid eating C-c while connectingJune McEnroe2020-10-12 | | | | | Split UI initialization into two steps either side of the call to connect, so that C-c works as interrupt while it's blocked. * Use configPath to load TLS cert/privJune McEnroe2020-08-20 | * Say "OpenSSL" in additional permission noticesJune McEnroe2020-08-04 | | | | LibreSSL is "a modified version of that library". * Bump ParamCap to 254June McEnroe2020-06-24 | | | | | | | | | | | | Apparently IRCds have decided that the 15-parameter limit doesn't matter anymore. 254 is the maximum number of single-byte parameters (following a single-byte command) which fit in a 512-byte CR-LF-terminated line. When everyone decides that the 512-byte line length limit doesn't matter either, I will delete my software and people can use some JavaScript garbage instead. This makes struct Message 2080 bytes, but there's only ever one or two of them around at once. Avoid passing it by value to handle. * Add additional permission for linking with LibreSSL