Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-03-17 | core: fix typos in many comments and some strings | Sebastien Helleu | |
2013-03-12 | irc: rename option irc.network.lag_disconnect to irc.network.lag_reconnect, ↵ | Sebastien Helleu | |
value is now a number of seconds | |||
2013-02-17 | irc: unmask smart filtered join if nick speaks in channel some minutes after ↵ | Sebastien Helleu | |
the join, new option irc.look.smart_filter_join_unmask (task #12405) The nick changes are tracked and will be unmasked with the join. Events triggering the unmask of join are: a message (can be CTCP), a notice or an update of topic. | |||
2013-02-16 | irc: fix type of values in hashtables join_manual/join_noswitch, fix delay ↵ | Sebastien Helleu | |
for purge | |||
2013-02-16 | irc: fix memory leak in purge of hashtables with joins (it was done only for ↵ | Sebastien Helleu | |
the first server in the list) | |||
2013-01-26 | core: use size of 32 for hashtables (instead of 4, 8 or 16) | Sebastien Helleu | |
A size of 32 will use a little more memory but will reduce collisions in key hashs, and then length of linked lists inside hash structure (faster search in hashtable). | |||
2013-01-01 | core: update copyright dates | Sebastien Helleu | |
2012-12-15 | core: move comments with description of C file to top of files | Sebastien Helleu | |
2012-12-13 | core: reformat comments for functions | Sebastien Helleu | |
2012-12-08 | api: allow creation of structure with hdata_update (allowed for hdata "history") | Sebastien Helleu | |
2012-11-27 | xfer: display remote IP address for DCC chat/file (task #12289) (patch from ↵ | Sebastien Helleu | |
Nils Görs) | |||
2012-11-23 | irc: add support of tags in messages, add support of "server-time" ↵ | Sebastien Helleu | |
capability (task #12255) For a server called "znc" in WeeChat, following command will enable the "server-time" capability: /set irc.server.znc.capabilities "znc.in/server-time" | |||
2012-11-14 | irc: fix crash on /upgrade (free channels before server data when a server ↵ | Sebastien Helleu | |
is destroyed) (bug #37736) | |||
2012-11-02 | irc: add option irc.network.alternate_nick to disable dynamic nick ↵ | Nils Görs | |
generation when all nicks are already in use on server (task #12281) | |||
2012-11-02 | irc: fix compilation when gnutls is disabled (bug #37639) | Sebastien Helleu | |
2012-10-16 | irc: remove local variable "away" in server/channels buffers after server ↵ | Sebastien Helleu | |
disconnection (bug #37582) | |||
2012-10-14 | irc: fix cancel of auto-reconnection to server with /disconnect | Sebastien Helleu | |
This bug was introduced by commit 5931eed85da2086a26fd14b01810ba4b481348f7 | |||
2012-10-14 | api: connect with IPv6 by default in hook_connect (with fallback to IPv4), ↵ | Simon Arlott | |
shuffle list of hosts for a same address (task #11205) | |||
2012-10-09 | irc: add option "-noswitch" for command /join (task #12275) | Sebastien Helleu | |
2012-10-06 | irc: remove unneeded server disconnect when server buffer is closed and ↵ | Sebastien Helleu | |
server is already disconnected This commit fixes a problem with the script autoconnect.py: the script hooks signal "irc_server_disconnected", and this signal was sent 2 times for each server on /quit: one time when servers are disconnected, and one time when servers are destroyed (because buffer is closed, and then server disconnected again). The script forces save of irc.conf on each disconnection, so some servers were lost in irc.conf, when some servers have already been destroyed. | |||
2012-09-18 | irc: fix rejoin of channels with a key, ignore value "*" sent by server for ↵ | Peter Boström | |
key (bug #24131) | |||
2012-09-03 | irc: switch to next address after a timeout when connecting to server (bug ↵ | Simon Arlott | |
#37216) | |||
2012-09-03 | irc: fix bug when changing server option "addresses" with less addresses ↵ | Simon Arlott | |
(bug #37215) | |||
2012-09-03 | irc: add network prefix in some irc/gnutls messages | Sebastien Helleu | |
2012-08-27 | api: allow update for some variables of hdata, add new functions ↵ | Sebastien Helleu | |
hdata_update and hdata_set | |||
2012-08-23 | irc: add network prefix in irc (dis)connection messages | Sebastien Helleu | |
2012-08-22 | irc: generate alternate nicks dynamically when all nicks are already in use ↵ | Sebastien Helleu | |
(task #12209) | |||
2012-08-08 | irc: set non-blocking socket before connecting to server (fix freeze with ↵ | Sebastien Helleu | |
SSL after connection error) | |||
2012-07-23 | irc: replace calls to config_search_with_string with weechat_config_get | Sebastien Helleu | |
2012-07-20 | core: add support of arrays in hdata variables | Sebastien Helleu | |
2012-07-15 | irc: fix format of message "USER" (according to RFC 2812) (bug #36825) | Sebastien Helleu | |
Old format was: USER username username address :real name New format is : USER username 0 * :real name And now spaces are automatically replaced by underscores in username (since no space is allowed here). | |||
2012-07-14 | relay: fix freeze when writing on relay socket (use non-blocking sockets in ↵ | Sebastien Helleu | |
relay for irc and weechat protocols) (bug #36655) | |||
2012-06-09 | irc: fix freeze when reading on socket with SSL enabled (bug #35097) | Sebastien Helleu | |
2012-05-15 | irc: update channel modes by using chanmodes from message 005 (do not send ↵ | Sebastien Helleu | |
extra command "MODES" to server), fix parsing of modes (bug #36215) | |||
2012-03-23 | core: add a connection timeout for child process in hook_connect (bug #35966) | Sebastien Helleu | |
2012-03-17 | irc: do not allow the creation of two servers with same name but different ↵ | Sebastien Helleu | |
case (fix error when writing file irc.conf) (bug #35840) | |||
2012-03-12 | irc: fix redirection of message when message is queued for sending on server | Sebastien Helleu | |
2012-02-29 | irc: do not close server buffer and disconnect when server is destroyed ↵ | Sebastien Helleu | |
during /upgrade | |||
2012-02-29 | irc: fix typo in a comment | Sebastien Helleu | |
2012-02-29 | irc: add support of "external" SASL mechanism (task #11864) | Kyle Fuller | |
2012-02-29 | irc: close server buffer when server is deleted | Sebastien Helleu | |
2012-02-19 | irc: rename server option "cap" to "capabilities" | Sebastien Helleu | |
2012-02-19 | irc: fix memory leak when a server is deleted | Sebastien Helleu | |
2012-02-19 | irc: add option "cap" in servers to enable capabilities on connection | Sebastien Helleu | |
2012-02-09 | irc: add signal "irc_server_opened" | Sebastien Helleu | |
2012-02-05 | irc: add signal "xxx,irc_out1_yyy" and modifier "irc_out1_xxx" (outgoing ↵ | Sebastien Helleu | |
message before automatic split to fit in 512 bytes) | |||
2012-01-22 | core: add support of flags in regular expressions and highlight options, add ↵ | Sebastien Helleu | |
irc options to customize/disable default nick highlight (task #11128) New functions in C plugin API: - string_regex_flags - string_regcomp New irc options: - irc.look.highlight_server - irc.look.highlight_channel - irc.look.highlight_pv Regex flags are supported in following options/commands: - option weechat.look.highlight - option weechat.look.highlight_regex - options irc.look.highlight_{server|channel|pv} - option relay.network.allowed_ips - core command /filter - irc command /list - irc command /ignore - rmodifier command /rmodifier | |||
2012-01-08 | core: update copyright dates | Sebastien Helleu | |
2011-12-25 | irc: add optional server in info "irc_is_channel" (before channel name) (bug ↵ | Sebastien Helleu | |
#35124), add optional server in info_hashtable "irc_message_parse" | |||
2011-12-19 | core: add type "hashtable" for hdata, new api functions: hdata_hashtable and ↵ | Sebastien Helleu | |
hashtable_map_string |