Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-04-30 | Increased ABI version | isundil | |
2016-04-29 | Added case-sensitive regexp matching for hilights | isundil | |
2016-04-29 | changed command-line -case to -matchcase | B Thibault | |
2016-04-29 | Ref #421 (Add an option to make /hilight case sensitive) | B Thibault | |
Allow use of /hilight -case exAMPle (compatible with other options) Added matchcase to hilight config file (exemple: { text = exAMPle; matchcase = yes; } ) | |||
2016-04-29 | retab | B Thibault | |
2016-04-07 | net_gethosterror: Handle EAI_SYSTEM ("System error") properly | dequis | |
That error code means "check errno". A few users got it and we never figured out what happened - it usually fixed itself after restarting something - so hopefully with this we'll have more information the next time. | |||
2016-04-05 | Merge pull request #453 from LemonBoy/dcc-quote | ailin-nemui | |
Support quoted filenames in some /DCC commands | |||
2016-03-31 | Merge pull request #455 from ailin-nemui/cutbuffer | ailin-nemui | |
improved cutbuffer handling | |||
2016-03-29 | Revert "Removed the obsolete SQUERY and SERVLIST commands" | ailin-nemui | |
This reverts commit 4beebe3238dda96efd4c3a0a6f6002ad5afc96e7. | |||
2016-03-29 | Improve cutbuffer handling | ailin-nemui | |
* Adds two new keys which you can bind in /bind: yank_next_cutbuffer: Revert to the previous last deleted text append_next_kill: Append next deletion * Consecutive kills are now appended to the current cutbuffer | |||
2016-03-22 | Make use of terminal application keys configurable | ailin-nemui | |
adds a new setting term_appkey_mode which can enable or disable the use of keyboard transmit (application keys) mode. Fixes #430 | |||
2016-03-22 | Merge pull request #452 from LemonBoy/terminfo-cup | ailin-nemui | |
Don't call terminfo_cont() twice on resume | |||
2016-03-22 | Merge pull request #443 from LemonBoy/chatnet | ailin-nemui | |
Throw an error when a chatnet has no available url | |||
2016-03-22 | Merge pull request #457 from ailin-nemui/fix_450 | ailin-nemui | |
fix race condition in terminal init | |||
2016-03-22 | Merge pull request #458 from ailin-nemui/fix_449 | ailin-nemui | |
Properly toggle bracketed paste mode on stop/cont | |||
2016-03-22 | Don't call terminfo_cont() twice on resume | LemonBoy | |
Fixes some weirdness when using ^Z with zsh. | |||
2016-03-22 | Merge pull request #456 from ailin-nemui/fix_454 | ailin-nemui | |
cutbuffer: do not unconditionally use replace when noop was requested | |||
2016-03-22 | Properly toggle bracketed paste mode on stop/cont | ailin-nemui | |
Fixes #449 | |||
2016-03-22 | Support quoted filenames in some /DCC commands | LemonBoy | |
2016-03-22 | Simplify some logic in server_create_conn | LemonBoy | |
2016-03-22 | Merge pull request #446 from ailin-nemui/fix_445 | ailin-nemui | |
strip less whitespace from commands | |||
2016-03-22 | fix race condition in terminal init | ailin-nemui | |
remove the tcgetattr call to a single time on irssi load instead of querying it each time. Fixes #450 | |||
2016-03-22 | cutbuffer: do not unconditionally use replace when noop was requested | ailin-nemui | |
2016-03-21 | Merge pull request #437 from vague666/glob_matching | ailin-nemui | |
Use glob matching for activity_hide_targets | |||
2016-03-20 | strip less whitespace from commands | ailin-nemui | |
fixes #445 | |||
2016-03-20 | Merge pull request #442 from LemonBoy/fix-435 | ailin-nemui | |
Do not assume any default value for statusmsg. | |||
2016-03-20 | Use 0 as a sentinel value for sasl_timeout | LemonBoy | |
If sasl_timeout is never initialized with a valid timeout id then calling /disconnect on the server calls g_source_remove() with 0 as tag, causing an harmless error message to be printed. Beside that, the sasl_timeout field is defined as a unsigned int. We can use 0 as sentiel since g_timeout_add returns tags that are always greater than zero. | |||
2016-03-20 | Bump the ABI version | LemonBoy | |
Since a new format has been added. | |||
2016-03-19 | Throw an error when a chatnet has no available url | LemonBoy | |
If you type /connect <CN> and the chatnet <CN> has no url available let's just throw an error instead of trying to process <CN> as a url. | |||
2016-03-19 | Make ischannel_func return false for empty strings | LemonBoy | |
2016-03-17 | Don't use glob matching, just regular string comparisons | Jari Matilainen | |
2016-03-17 | Do not assume any default value for statusmsg. | LemonBoy | |
If the server didn't send it then just skip the check, the old value it defaulted to was possibly overlapping with the CHANTYPES leading to an incorrect behaviour. Fixes #435. | |||
2016-03-17 | Merge pull request #439 from horgh/ssl-errors | TheLemonMan | |
Clear error queue before SSL I/O operations | |||
2016-03-17 | Merge pull request #438 from dequis/sasl-timeout-disconnect | ailin-nemui | |
Remove sasl timeout source when the server disconnects | |||
2016-03-14 | Replace spaces with tabs | KindOne | |
2016-03-14 | Use glob matching for activity_hide_targets | Jari Matilainen | |
spaces vs tabs! strarray_find* needs to return -1 if no index found | |||
2016-03-14 | Return -1 from null-test to comply with the rest of strarray_find | Jari Matilainen | |
2016-03-13 | Add clear error calls to irssi_ssl_get_iochannel | Will Storey | |
2016-03-13 | Clear error queue before SSL I/O operations | Will Storey | |
Otherwise we can see errors that are not related to the operation we check for. SSL_get_error() inspects the thread's error queue. See https://www.openssl.org/docs/manmaster/ssl/SSL_get_error.html for more information. | |||
2016-03-11 | Remove sasl timeout source when the server disconnects | dequis | |
2016-03-08 | Merge pull request #432 from grawity/fix-external | Giuseppe | |
fix SASL EXTERNAL | |||
2016-03-08 | Merge pull request #426 from Manishearth/paste-split | ailin-nemui | |
Make pasting warning appear when long pastes are going to be split into many lines | |||
2016-03-08 | Fix SASL EXTERNAL authentication | Mantas Mikulėnas | |
The "AUTHENTICATE" command is always required – it's part of the IRCv3 SASL framing. RFC 4422 only documents the Base64 payload. | |||
2016-03-02 | irssi proxy: allow listening on unix sockets | Lukas Mai | |
2016-03-02 | reindent | Lukas Mai | |
2016-02-26 | fix proxy server name | Lukas Mai | |
2016-02-24 | Make pasting warning appear when long pastes are going to be split into many ↵ | Manish Goregaokar | |
lines | |||
2016-02-24 | use a #define'd LINE_SPLIT_LIMIT instead of hardcoding 400 | Manish Goregaokar | |
2016-02-18 | remove redundant check | Lukas Mai | |
2016-02-18 | make pointer check explicit | Lukas Mai | |