Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Add C-t transpose | June McEnroe | 2020-02-12 |
| | | | | Also in emacs, weechat. | ||
* | Add C-v and M-v | June McEnroe | 2020-02-12 |
| | | | | | I figure there should be some way to scroll without keypad, and apparently this is what emacs offers... | ||
* | Allow for arguments to open/copy utilities | June McEnroe | 2020-02-12 |
| | |||
* | Handle RPL_AWAY | June McEnroe | 2020-02-12 |
| | |||
* | Support monochromatic terminals | June McEnroe | 2020-02-11 |
| | | | | Oops, division by zero! | ||
* | Add .gz to chroot-man script | June McEnroe | 2020-02-11 |
| | |||
* | Add -R restricted flag | June McEnroe | 2020-02-11 |
| | |||
* | Add chroot target | June McEnroe | 2020-02-11 |
| | |||
* | Exit focus and paste modes on err exit | June McEnroe | 2020-02-11 |
| | |||
* | Add startup GPLv3 note and URL | June McEnroe | 2020-02-11 |
| | | | | I am a degenerate. | ||
* | Make sure -D_GNU_SOURCE ends up in CFLAGS on Linux | June McEnroe | 2020-02-11 |
| | |||
* | Add note about setting PKG_CONFIG_PATH | June McEnroe | 2020-02-11 |
| | |||
* | Rename query ID on nick change | June McEnroe | 2020-02-11 |
| | |||
* | Call completeClear when closing a window | June McEnroe | 2020-02-11 |
| | |||
* | Don't insert color codes for non-mentions | June McEnroe | 2020-02-11 |
| | |||
* | Take first two words in colorMentions | June McEnroe | 2020-02-11 |
| | | | | | This lets phrases like "hi june" get colored, but still doesn't get carried away. | ||
* | Use time_t for save signature | June McEnroe | 2020-02-11 |
| | | | | | | | It's actually more likely to be 64-bit than size_t anyway, and it eliminates some helper functions. Also don't error when reading an empty save file. | ||
* | Set self.nick to * initially | June McEnroe | 2020-02-11 |
| | | | | | | | Allows removing a bunch of checks that self.nick is set, and it's what the server usually calls you before registration. Never highlight notices as mentions. | ||
* | Define ColorCap instead of hardcoding 100 | June McEnroe | 2020-02-11 |
| | |||
* | Move hash to top of chat.h | June McEnroe | 2020-02-11 |
| | |||
* | Move base64 out of chat.h | June McEnroe | 2020-02-11 |
| | |||
* | Move XDG_SUBDIR out of chat.h | June McEnroe | 2020-02-11 |
| | |||
* | Fix whois idle unit calculation | June McEnroe | 2020-02-11 |
| | | | | Rookie mistake. | ||
* | Cast towupper to wchar_t | June McEnroe | 2020-02-11 |
| | | | | For some reason it takes and returns wint_t... | ||
* | Cast set but unused variables to void | June McEnroe | 2020-02-11 |
| | |||
* | Declare strlcat | June McEnroe | 2020-02-11 |
| | |||
* | Check if VDSUSP exists | June McEnroe | 2020-02-11 |
| | |||
* | Fix completeReplace iteration | June McEnroe | 2020-02-11 |
| | |||
* | Use pkg(8) to configure on FreeBSD | June McEnroe | 2020-02-11 |
| | |||
* | Merge branch 'rewrite' | June McEnroe | 2020-02-11 |
|\ | |||
| * | Add INSTALLING section to README | June McEnroe | 2020-02-11 |
| | | |||
| * | Add README | June McEnroe | 2020-02-11 |
| | | | | | | | | Still missing: build requirements and instructions. | ||
| * | Invalidate title on uiShow | June McEnroe | 2020-02-10 |
| | | |||
| * | Only write out title if it has changed | June McEnroe | 2020-02-10 |
| | | |||
| * | Only write out title on uiDraw | June McEnroe | 2020-02-10 |
| | | |||
| * | Manually raise SIGINT from C-c | June McEnroe | 2020-02-10 |
| | | | | | | | | | | | | This allows it to still work, but makes C-z C-c insert the color code rather than exit, and in the future, will allow pasting in text with color codes. | ||
| * | Split on <> in colorMentions | June McEnroe | 2020-02-10 |
| | | | | | | | | | | | | This allows it to color the nick in the common case of pasting "<nick> something they said" into the chat. Technically it should color the brackets too but that would be too much work. | ||
| * | Replace alignment tabs with spaces in bufferList | June McEnroe | 2020-02-10 |
| | | |||
| * | Add C-o as alias of M-/ | June McEnroe | 2020-02-10 |
| | | | | | | | | M-/ is from weechat. C-o is like in vim. | ||
| * | Only automatically switch to expected joins | June McEnroe | 2020-02-10 |
| | | |||
| * | Delegate to commandPrivmsg from commandMsg | June McEnroe | 2020-02-10 |
| | | |||
| * | Synthesize a QUIT message to handle on exit | June McEnroe | 2020-02-10 |
| | | | | | | | | So that the end of a saved buffer contains the self quit. | ||
| * | Factor out XDG base directory code | June McEnroe | 2020-02-10 |
| | | | | | | | | | | And add warnings to configOpen, since that's the only way to be accurate if a weird error occurs. | ||
| * | Leave a blank line after loaded buffer | June McEnroe | 2020-02-10 |
| | | |||
| * | Add -s to save and load buffers | June McEnroe | 2020-02-10 |
| | | |||
| * | Show heat and other unread in title | June McEnroe | 2020-02-10 |
| | | |||
| * | Eliminate array in hash | June McEnroe | 2020-02-10 |
| | | | | | | | | | | I expected to have to remove some arbitrary colors, but it seems like just the range 2-75 works fine. | ||
| * | Add -H | June McEnroe | 2020-02-10 |
| | | |||
| * | Hash to colors in the range 2-75 | June McEnroe | 2020-02-10 |
| | | | | | | | | | | Colors 76-87 seem too light, some almost appearing white. Colors 88-98 are shades of gray. | ||
| * | Improve color fudging | June McEnroe | 2020-02-10 |
| | | | | | | | | | | | | Prevent fudged colors from ever being pure black. Distribute fudged colors between normal and bold if COLORS is 8. Fudge colors before checking if it's a pre-allocated pair. |