aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Bump libertyPřemysl Janouch2016-01-162-1/+0
|
* kike: more cleanupPřemysl Janouch2016-01-161-12/+8
|
* kike: allow messages before protocol establishmentPřemysl Janouch2016-01-161-9/+4
| | | | We can just queue them.
* kike: asynchronous address resolutionPřemysl Janouch2016-01-162-60/+134
| | | | As well as some refactoring and cleanup.
* degesch: fix backlog limitPřemysl Janouch2016-01-151-1/+1
| | | | It was effectively infinite.
* degesch: fix and simplify screen handlingPřemysl Janouch2016-01-151-18/+6
| | | | Now with less madness.
* degesch: enforce fullscreen buffersPřemysl Janouch2016-01-152-12/+6
| | | | | | Probably long overdue. Now we actually look like something resembling a regular IRC client.
* degesch: option for fullscreen buffersPřemysl Janouch2016-01-151-6/+31
|
* degesch: make backlog limit configurablePřemysl Janouch2016-01-152-11/+36
|
* degesch: Lua: add autocomplete hooksPřemysl Janouch2016-01-151-26/+156
|
* degesch: Lua: finish the last-fm pluginPřemysl Janouch2016-01-141-14/+39
|
* degesch: Lua: allow simulating user inputPřemysl Janouch2016-01-141-1/+23
| | | | Also added UTF-8 validation to buffer:log() while I'm at it.
* Bump liberty, shuffle some codePřemysl Janouch2016-01-142-94/+94
|
* degesch: add a last-fm "now playing" pluginPřemysl Janouch2016-01-092-1/+160
|
* degesch: Lua: pass hostname to on_connectedPřemysl Janouch2016-01-091-3/+3
|
* degesch: Lua: set sockets to nonblockingPřemysl Janouch2016-01-091-0/+1
|
* Bump libertyPřemysl Janouch2016-01-092-1/+0
|
* degesch: Lua: actually allow filtering out inputPřemysl Janouch2016-01-091-0/+4
|
* degesch: Lua: provide a traceback on load errorPřemysl Janouch2016-01-091-4/+9
|
* degesch: Lua: fix plugin configuration namesPřemysl Janouch2016-01-091-1/+10
|
* degesch: Lua: fix luaL_ref() usagePřemysl Janouch2016-01-091-11/+10
|
* degesch: Lua: fix configuration loadingPřemysl Janouch2016-01-091-6/+11
| | | | Not the cleanest solution but it has to do for now.
* degesch: make sure newlines are output correctlyPřemysl Janouch2016-01-081-0/+8
|