aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* degesch: detect //TRANSLIT support, use cp1252Přemysl Janouch2016-03-263-17/+31
| | | | Now BSDs should have it enabled as well.
* degesch: remap goto-activity to M-aPřemysl Janouch2016-03-262-2/+2
| | | | weechat appears to use this key binding, so let's not reinvent it.
* degesch: add partial matching /buffer gotoPřemysl Janouch2016-03-261-5/+38
|
* degesch: append message count in /buffer listingPřemysl Janouch2016-03-261-1/+10
|
* degesch: retain the unseen markerPřemysl Janouch2016-03-261-37/+50
| | | | | | Don't erase the message counts immediately. Also make the marker visible in the pager.
* degesch: phase 1 of word wrapping implementationPřemysl Janouch2016-03-262-45/+293
|
* Fix Travis CI notificationsPřemysl Janouch2016-03-141-2/+2
|
* Fix git commit trackingPřemysl Janouch2016-03-131-3/+11
|
* kike: fix daemonization on *BSDPřemysl Janouch2016-03-132-0/+2
| | | | Bump liberty.
* degesch: cleanup, fix no-tty mode FWIWPřemysl Janouch2016-03-131-5/+5
| | | | | | | Removed the no color mode that couldn't even be enabled. Not sure why we still support running without a proper terminal but let's at least not make it crash for now.
* Use TMPDIR as a fallback if setPřemysl Janouch2016-03-131-0/+3
|
* Update NEWS, READMEPřemysl Janouch2016-03-122-13/+13
|
* degesch: add a --format switchPřemysl Janouch2016-03-122-0/+24
|
* Don't link kike, ZyklonB against degesch libsPřemysl Janouch2016-03-101-22/+27
|
* Fix manpage generationPřemysl Janouch2016-03-101-1/+1
| | | | The manpages could end up in a wrong directory.
* Update READMEPřemysl Janouch2016-03-101-2/+29
|
* degesch: add unbound commands for buffer movementPřemysl Janouch2016-03-101-28/+58
|
* degesch: fix binding to our own fns from inputrcPřemysl Janouch2016-03-101-4/+16
|
* degesch: add goto activity and highlightPřemysl Janouch2016-03-082-0/+46
|
* degesch: fix mIRC color parsingPřemysl Janouch2016-03-081-0/+4
|
* Update NEWS, cleanupPřemysl Janouch2016-03-072-2/+5
|
* degesch: rewrite input layerPřemysl Janouch2016-03-071-446/+652
| | | | Now with less #ifdefs.
* degesch: use libffi to unify input callbacksPřemysl Janouch2016-03-063-334/+292
| | | | And fuck you both, Readline and Editline.
* Try to use version information from gitPřemysl Janouch2016-03-062-12/+24
|
* Don't force override compile flagsPřemysl Janouch2016-03-061-1/+2
|
* degesch: fix +=/-= to null config itemsPřemysl Janouch2016-03-051-8/+11
|
* factoids: safer DB writesPřemysl Janouch2016-02-291-1/+4
|
* factoids: allow querying definitions by numberPřemysl Janouch2016-02-291-12/+30
|
* factoids: look for duplicates case-insensitivelyPřemysl Janouch2016-02-291-1/+1
|
* degesch: mark a problemPřemysl Janouch2016-02-291-0/+8
|
* ZyklonB: add a factoids pluginPřemysl Janouch2016-02-271-0/+156
|
* ZyklonB: run plugins in a special work directoryPřemysl Janouch2016-02-201-28/+54
| | | | Also small refactoring.
* ZyklonB: revisit error handlingPřemysl Janouch2016-02-201-54/+18
|
* Resolve tls_ca_{file,path} relative to config dirPřemysl Janouch2016-02-192-63/+109
|
* ZyklonB: fix segfault on total SOCKS failurePřemysl Janouch2016-02-121-0/+2
|
* ZyklonB: avoid infinite reexec loopsPřemysl Janouch2016-02-121-0/+3
|
* degesch: fix segfault on sent messages w/o bufferPřemysl Janouch2016-02-121-0/+4
|
* degesch: update screen size when terminal resumedPřemysl Janouch2016-02-101-0/+1
| | | | Apparently we don't receive the events when we give up the terminal.
* degesch: use mkstemp() with a safe umaskPřemysl Janouch2016-02-091-0/+3
|
* degesch: log messages from /quote and pluginsPřemysl Janouch2016-02-092-93/+151
| | | | That is, parse back all output messages and log based on that.
* Fix typosPřemysl Janouch2016-02-092-2/+2
|
* degesch: allow changing the list of used CAPsPřemysl Janouch2016-02-013-7/+18
| | | | Bump liberty.
* degesch: optimize buffer memory usagePřemysl Janouch2016-01-312-35/+41
| | | | | | | | | | | | | We have approximately 5 formatter_items per buffer_line. Let's assume we're on a 64-bit machine. Then there were (5 * 2) + 3 useless pointers (104 bytes) as well as 5 * (4 + 4) = 40 bytes of wasted space because of needless padding. That's 144 bytes already. Compared to that, this change adds 16 bytes of overhead for an array sentinel, i.e. 128B less. With a limit of 1000 lines per buffer, we've saved ~128kB per buffer on completely useless data, and code complexity stays roughly the same. All in all, memory usage for buffers should be about 50% lower.
* kike: add support for IRCv3.2 server-timePřemysl Janouch2016-01-314-3/+40
|
* last-fm.lua: don't use empty album namesPřemysl Janouch2016-01-181-2/+2
|
* degesch: add an assertionPřemysl Janouch2016-01-181-1/+5
| | | | It should never fail with current code.
* degesch: disable TLS compressionPřemysl Janouch2016-01-181-0/+7
|
* degesch: Lua: fix memory leak on load failurePřemysl Janouch2016-01-171-2/+1
|
* degesch: lesser heap fragmentationPřemysl Janouch2016-01-171-11/+7
|
* Bump libertyPřemysl Janouch2016-01-172-46/+1
|