summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-07-25Replace \n with \r\n in irssiproxy source, fixes bugblha303
2015-07-19Add expandos for hostnamekyak
See http://bugs.irssi.org/index.php?do=details&task_id=829
2015-07-09Introduce check for git commands in autogenAilin Nemui
This avoids a misleading compile error when users try to `make` an incomplete (or non-git) check-out.
2015-06-14Fix 'address already in use' when changing irssiproxy_portsdequis
When changing the value of irssiproxy_ports to use a different network name in a port that was already bound (so like changing from asd=6667 to sdf=6667) it would throw "address already in use". This fixes it by delaying the add_listen() calls after all the remove_listen() were called.
2015-06-14Rename /proxy command to /irssiproxy for claritydequis
2015-06-14Merge branch 'master' into irssiproxydequis
Conflicts: src/irc/proxy/listen.c
2015-06-121k+ windows are now the default formatting (#223)Geert Hauwaerts
1k+ windows are now the default formatting (#223)
2015-06-12Merge pull request #257 from GeertHauwaerts/masterGeert Hauwaerts
Clarify the help for /LIST (#228)
2015-06-12Proper removal of sb_search.pl (#143)Geert Hauwaerts
Proper removal of sb_search.pl (#143)
2015-06-12Updated the man page (#251)Geert Hauwaerts
Updated the man page (#251)
2015-06-12Updated the bundled scripts to their latest version (#143)Geert Hauwaerts
Updated the bundled scripts to their latest version (#143) Removed sb_search.pl which is not contributed into the script archive, I will poke coekie about it.
2015-06-12Merge pull request #258 from irssi/revert-232-masterGeert Hauwaerts
Revert "Bug fix - docdir is ignored during installation."
2015-06-12Revert "Bug fix - docdir is ignored during installation."Geert Hauwaerts
2015-06-12Add server check in irc_server_connect (#208)Geert Hauwaerts
Fail instead of crash, if irc_server_connect is called without object. (#208)
2015-06-12Clarify the help for /LIST (#228)Geert Hauwaerts
Clarify the help for /LIST (#228)
2015-06-12Merge pull request #247 from FreeFull/patch-1Geert Hauwaerts
lastlog doc fix
2015-06-12Merge pull request #252 from ailin-nemui/patch-2Geert Hauwaerts
Update sb_search.pl
2015-05-31Improve ischannel_func (#253)LemonBoy
The function now skips all the leading characters that are in the STATUSMSG. If the server didn't send the STATUSMSG option then it's assumed to be "@+" for compatibility with bahamut 2.4 (sic).
2015-05-29Update sb_search.plailin-nemui
make it easier to bind sb search to a key
2015-05-15Implement CHANTYPES supportLemonBoy
2015-05-14lastlog doc fixFilip Szczepański
Only the filename can come right after `-file`. Having `-force` in that position causes an `Irssi: Could not open lastlog: No such file or directory` error.
2015-05-05Implement support for IRCv3.1 CAP negotiationLemonBoy
2015-04-21Merge pull request #241 from pstray/masterAlexander Færøy
Change a hash lookup so it compiles
2015-04-21Merge pull request #232 from dimkr/masterAlexander Færøy
Bug fix - docdir is ignored during installation.
2015-04-20Change g_hash_table_contains() for compatibility with glib < 2.32Peder Stray
2015-04-18Merge pull request #240 from hloeung/masterAlexander Færøy
trivial: Minor cosmetic changes fixing docs as per review from ahf.
2015-04-18trivial: Minor cosmetic changes fixing docs as per review from ahf.Haw Loeung
2015-04-17Merge pull request #199 from ailin-nemui/config-parserAlexander Færøy
Make config parser more robust
2015-04-17Merge pull request #235 from dequis/g_strcmp0Alexander Færøy
Change all strcmp() to g_strcmp0() to handle nulls gracefully
2015-04-17Merge pull request #238 from hloeung/masterAlexander Færøy
ssl: Add option to specify SSL cipher suite preference list
2015-04-15ssl: Fixed call to SSL_CTX_set_cipher_list() only when ssl_ciphers specified ↵Haw Loeung
and warn when no cipher suite could be selected.
2015-04-14ssl: Add option to specify SSL cipher suite preference.Haw Loeung
2015-04-11Handle nulls properly in the g_strcmp0() for glib<2.16dequis
I wrote some tests to compare the behavior but I don't know where to put them, so i'm including them here: assert(g_strcmp0("a", "b") == -1); assert(g_strcmp0(NULL, "a") == -1); assert(g_strcmp0("a", NULL) == 1); assert(g_strcmp0("b", "a") == 1); assert(g_strcmp0("a", "a") == 0); assert(g_strcmp0(NULL, NULL) == 0);
2015-04-07Define g_strcmp0 to strcmp if the glib version is older than 2.16dequis
2015-04-07Change all strcmp() to g_strcmp0() to handle nulls gracefullydequis
Just a string replacement (but i did check every one of them) sed -i 's/strcmp(/g_strcmp0(/g' **/*.c
2015-04-08Merge pull request #233 from dgl/hilight-fixAlexander Færøy
Make sure NO_ACT isn't cleared when -actcolor %n is used
2015-04-07Merge pull request #234 from Adam-/master+sniAlexander Færøy
Add SNI support
2015-04-07Add SNI supportAdam
2015-04-07Make sure NO_ACT isn't cleared when -actcolor %n is usedDavid Leadbeater
Fixes issue #227.
2015-04-07Bug fix - docdir is ignored during installation.Dima Krasner
2015-03-01Merge pull request #217 from Lohhari/lastlog-dateAlexander Færøy
Added a -date parameter to /lastlog to prepend each row with the ...
2015-02-24Add help files for proxy moduleHans Nielsen
2015-02-24Fix whitespaceHans Nielsen
2015-02-24Add port to proxy client struct for Perl scriptsHans Nielsen
2015-02-24Update proxy documentation with changesHans Nielsen
2015-02-24Add boolean toggle for irssiproxy being enabledHans Nielsen
2015-02-24Make proxy messages include more detail and add status commandHans Nielsen
2015-02-24Change around connection signals in proxy moduleHans Nielsen
Change "proxy client connected" to "proxy client connecting" to avoid being confused by clients that have connected but not necessarily authenticated. Emit "proxy client connected" once authenticated, keeping the name for backwards compatibility.
2015-02-21Merge pull request #226 from ailin-nemui/scriptassistAlexander Færøy
Sync from scripts: Fix scriptassist broken on unload
2015-02-20Fix scriptassist broken on unloadAilin Nemui
This is a regression introduced in c5ad61b4b0166f7cb769f23dfece2a5d4e62bd6e where one `defined' statement got removed in error while cleaning up warnings.