aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Factor out socket_io_try_{read,write}()Přemysl Janouch2016-01-072-80/+113
| | | | To be reused in Lua connection API.
* degesch: fix handling of input editor deathPřemysl Janouch2016-01-071-4/+12
|
* Fix a memory leak in SOCKS connectorPřemysl Janouch2016-01-071-1/+0
|
* degesch: fix switching of buffers by commandPřemysl Janouch2016-01-071-8/+27
| | | | | | Readline used to erase the new buffer's contents. Defer processing.
* degesch: Lua: fix a resource leakPřemysl Janouch2016-01-061-2/+6
|
* degesch: refactor LuaPřemysl Janouch2016-01-051-93/+62
| | | | And fix handling of nil returns from filter callbacks.
* degesch: Lua: halfplement a connector wrapperPřemysl Janouch2016-01-051-5/+237
| | | | You can't do anything reasonable with the socket now.
* Fix build of testsPřemysl Janouch2016-01-051-1/+1
|
* degesch: Lua: allow arbitrary userdata propertiesPřemysl Janouch2016-01-041-2/+35
|
* degesch: Lua: use references for hook callbacksPřemysl Janouch2016-01-041-10/+8
| | | | | Don't associate the callback with the full userdata object, we'll need this for something else.
* degesch: add basic autocomplete for /topicPřemysl Janouch2016-01-042-1/+30
|
* CleanupPřemysl Janouch2016-01-041-2/+2
|
* Bump liberty, enable TLS SNIPřemysl Janouch2016-01-047-53/+52
| | | | | | | Involves some rewrites to fit the new APIs. SNI has been implemented Mostly just because we can, I don't think it's widely in use and kike doesn't support this feature of the protocol either.
* ZyklonB: fix tls_ca_{path,file} config. optionsPřemysl Janouch2016-01-011-2/+2
|
* degesch: fix a memory leak under libeditPřemysl Janouch2016-01-011-14/+19
|
* Bump versionv0.9.2Přemysl Janouch2015-12-312-2/+2
|
* degesch: fix segfault on /quit under libeditPřemysl Janouch2015-12-311-5/+5
|
* Update READMEPřemysl Janouch2015-12-311-2/+2
|
* CleanupPřemysl Janouch2015-12-311-1/+1
|
* degesch: Alt-Tab switch to the last bufferPřemysl Janouch2015-12-312-0/+33
|
* degesch: avoid fileno() after fork()Přemysl Janouch2015-12-311-4/+4
| | | | | It's not guaranteed to be async-signal-safe, which may matter once we start using threads. And it's also cleaner to just pass the FD.
* degesch: typosPřemysl Janouch2015-12-311-2/+2
|
* degesch: enable configuration in Lua pluginsPřemysl Janouch2015-12-282-5/+320
|
* degesch: little step towards localisationPřemysl Janouch2015-12-251-7/+16
| | | | | | | | | | We don't use LC_MESSAGES, though, so it doesn't really matter as of now. liberty currently isn't prepared for non-ASCII errors or filenames, and just silently expects everything to be in the same all-compatible encoding. degesch further expects the encoding to be UTF-8. All strings should ideally be converted to UTF-8 as soon as possible.
* degesch: allow launching an editor for inputPřemysl Janouch2015-12-253-47/+250
| | | | | | Useful for editing multiline text (such as making it single-line). Some refactoring and cleanup.
* degesch: better handling of terminal suspensionPřemysl Janouch2015-12-251-2/+2
|
* degesch: refactoringPřemysl Janouch2015-12-251-17/+19
|
* Bump libertyPřemysl Janouch2015-12-132-66/+1
|
* Bump libertyPřemysl Janouch2015-12-113-1122/+4
|
* Refactor config schema initializationPřemysl Janouch2015-12-111-30/+46
| | | | Now the configuration module seems to be fit for inclusion in liberty.
* CleanupPřemysl Janouch2015-12-111-11/+5
|
* utm-filter.lua: filter out "gclid" as wellPřemysl Janouch2015-12-101-0/+2
|
* degesch: add a test for configurationPřemysl Janouch2015-12-102-13/+76
|
* degesch: add more tests, bump libertyPřemysl Janouch2015-12-102-9/+35
| | | | | | The UTF-8 common prefix test discovered a bug in UTF-8 parsing. Made $[1-9] in aliases insert nothing if there's no argument at that index.
* Update Travis CI and bump CMakePřemysl Janouch2015-12-092-8/+7
|
* Fix Travis CIPřemysl Janouch2015-12-091-0/+6
|
* degesch: add a unit test for message wrapping algoPřemysl Janouch2015-12-093-1/+54
|
* degesch: compactify word wrapping algorithmPřemysl Janouch2015-12-081-14/+5
|
* degesch: clarify text wrapping algorithmPřemysl Janouch2015-12-081-3/+8
|
* degesch: fix timer hook resource leakPřemysl Janouch2015-11-291-0/+3
|
* degesch: Lua: add a "server" property to buffersPřemysl Janouch2015-11-241-60/+78
|
* degesch: Lua: add a "buffer" property to serversPřemysl Janouch2015-11-241-11/+46
|
* ping-timeout.lua: simplifyPřemysl Janouch2015-11-241-1/+1
|
* degesch: readline fixupsPřemysl Janouch2015-11-241-6/+7
| | | | | When a new buffer was created automatically (channel was joined), we didn't bother to erase the current line buffer.
* degesch: fix a segfault-inducing typo in hooksPřemysl Janouch2015-11-241-1/+1
|
* degesch: add a URL cleaning Lua pluginPřemysl Janouch2015-11-241-0/+61
|
* degesch: make auto-away less spammyPřemysl Janouch2015-11-231-24/+10
|
* degesch: implement auto-awayPřemysl Janouch2015-11-223-3/+103
|
* Fix searching for Lua 5.3 on OpenBSDPřemysl Janouch2015-11-221-1/+1
|
* degesch: optimize prompt changesPřemysl Janouch2015-11-221-2/+12
| | | | We used to do lots of unnecessary redisplays.