summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-03-20Bump the ABI versionLemonBoy
Since a new format has been added.
2016-03-19Throw an error when a chatnet has no available urlLemonBoy
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-19Make ischannel_func return false for empty stringsLemonBoy
2016-03-17Don't use glob matching, just regular string comparisonsJari Matilainen
2016-03-17Do 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-17Merge pull request #439 from horgh/ssl-errorsTheLemonMan
Clear error queue before SSL I/O operations
2016-03-17Merge pull request #438 from dequis/sasl-timeout-disconnectailin-nemui
Remove sasl timeout source when the server disconnects
2016-03-16Merge pull request #441 from KindOne-/masterailin-nemui
Replace spaces with tabs
2016-03-14Replace spaces with tabsKindOne
2016-03-14Merge pull request #440 from vague666/strarray_find_bugfixGiuseppe
Return -1 from null-test to comply with the rest of strarray_find
2016-03-14Use glob matching for activity_hide_targetsJari Matilainen
spaces vs tabs! strarray_find* needs to return -1 if no index found
2016-03-14Return -1 from null-test to comply with the rest of strarray_findJari Matilainen
2016-03-13Add clear error calls to irssi_ssl_get_iochannelWill Storey
2016-03-13Clear error queue before SSL I/O operationsWill 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-11Remove sasl timeout source when the server disconnectsdequis
2016-03-08Merge pull request #432 from grawity/fix-externalGiuseppe
fix SASL EXTERNAL
2016-03-08Merge pull request #426 from Manishearth/paste-splitailin-nemui
Make pasting warning appear when long pastes are going to be split into many lines
2016-03-08Fix SASL EXTERNAL authenticationMantas 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-02Merge pull request #427 from mauke/irssiproxy-unix-socketsailin-nemui
irssi proxy: allow listening on unix sockets
2016-03-02irssi proxy: allow listening on unix socketsLukas Mai
2016-03-02reindentLukas Mai
2016-02-29Merge tag '0.8.18'ailin-nemui
master now on 0.8.19-head
2016-02-26Merge pull request #428 from mauke/irssiproxy-multiplex-2ailin-nemui
fix proxy server name
2016-02-26fix proxy server nameLukas Mai
2016-02-24Merge pull request #425 from mauke/irssiproxy-multiplexailin-nemui
irssi proxy: allow multiplexing multiple networks over a single port
2016-02-24Make pasting warning appear when long pastes are going to be split into many ↵Manish Goregaokar
lines
2016-02-24use a #define'd LINE_SPLIT_LIMIT instead of hardcoding 400Manish Goregaokar
2016-02-18remove redundant checkLukas Mai
2016-02-18make pointer check explicitLukas Mai
2016-02-18add some documentationLukas Mai
2016-02-18irssi proxy: allow multiplexing multiple networks over a single portLukas Mai
2016-02-18fix formattingLukas Mai
2016-02-18Merge pull request #414 from toddpratt/masterailin-nemui
add an append operation to cut buffer handling
2016-02-10fix whitespaceTodd A. Pratt
2016-02-10Merge branch 'master' of github.com:irssi/irssiTodd A. Pratt
2016-02-08tag as 0.8.18ailin-nemui
2016-02-08sync docsailin-nemui
2016-02-08sync scriptassist.plailin-nemui
2016-02-07Merge pull request #415 from lanurmi/gitattributesailin-nemui
Add .gitattributes to ensure all shell scripts have LF as eol-style.
2016-02-05Merge pull request #413 from dequis/completion-list-crash-fixailin-nemui
completion: Fix crash when the complist provided by a script has nulls
2016-02-04Merge branch 'master' of github.com:irssi/irssiTodd A. Pratt
2016-02-03Merge pull request #410 from LemonBoy/getaddrinfo-v6-flagailin-nemui
Getaddrinfo v6 flag
2016-01-31Add .gitattributes to ensure all shell scripts have LF as eol-style.Lauri Nurmi
Some Git clients on Windows may use CRLF otherwise, which effectively prevents running such scripts.
2016-01-30remove memory allocation check, spaces to tabsTodd A. Pratt
2016-01-30add an append operation to cut buffer handlingTodd A. Pratt
2016-01-29completion: Fix crash when the complist provided by a script has nullsdequis
Can be reproduced with aspell_complete.pl 1.00 by setting an invalid dictionary with "/set spell_dict a"
2016-01-29Merge pull request #409 from LemonBoy/reverse-lookup-flagsailin-nemui
Reverse lookup flags
2016-01-29Merge pull request #407 from irssi/ailin-nemui-perl-bugsailin-nemui
Mention known Perl Bugs in perl.txt
2016-01-29Merge pull request #408 from LemonBoy/delete-ipv6-ifdefailin-nemui
Delete the HAVE_IPV6 ifdef.
2016-01-27Add AI_ADDRCONFIG to the getaddrinfo hints.LemonBoy
A first step to untangle the ipv4 vs ipv6 mess. At the time of writing Linux, OpenBSD and FreeBSD all support the AI_ADDRCONFIG flag.