summary refs log tree commit diff
path: root/Makefile (follow)
Commit message (Collapse)AuthorAge
* Rewrite configure script for all platforms, add OpenBSDJune McEnroe2020-07-24
|
* Rewrite build and install like pounce 1.3June McEnroe2020-05-20
| | | | man pages are no longer compressed!
* Use . as ${LDLIBS.$@} separatorJune McEnroe2020-04-20
|
* Only set RCS on FreeBSDJune McEnroe2020-04-05
|
* Check unscoop regexps with make testJune McEnroe2020-04-05
|
* Replace .mk files with configure scriptJune McEnroe2020-03-02
|
* Add FreeBSD rc scriptJune McEnroe2020-01-11
|
* Import getopt_config from pounceJune McEnroe2020-01-04
|
* Add install and uninstall targetsJune McEnroe2020-01-01
|
* Add initial rough version of scoopJune McEnroe2019-12-30
|
* Link litterbox with -ltlsJune McEnroe2019-12-16
|
* Add basic unscoop import toolJune McEnroe2019-12-05
|
* Rename header file to database.hJune McEnroe2019-12-01
|
* Implement database file searchJune McEnroe2019-12-01
ohover-highlight'>| | | | | | While the automatic search via LESS is neat, I don't think it's very useful. Just always open the manual to the COMMANDS section, and fix it to append to LESS rather than replace it. * Use WHO for /opsJune McEnroe2020-09-30 | | | | Accumulate names in a buffer and show away status. * Add /ops commandJune McEnroe2020-09-30 | | | | | | It's pretty awkward with large channels since NAMES isn't sorted by prefixes or anything... But having it accumulate names across many replies would require more reworking. * Switch back to checking for server by nick with '.'June McEnroe2020-09-18 | | | | | | | | | | This fixes a bug where if you send a private message before joining any channels, your message will be routed to the <network> window. That happens because without a JOIN, self.user remains unset, which means that require will copy self.nick (set by echoMessage) to self.host. The easiest solution is to go back to checking for '.' and add a '.' to the default nick, so now if a server sends a NOTICE with no origin it will look like -*.*- which is kinda cute. * Don't call completeTouch for ignored messages