Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-07-04 | core: add missing comments before functions when the result must be freed ↵ | Sébastien Helleu | |
after use | |||
2015-01-25 | irc: add "account" in irc_nick_print_log() | Sébastien Helleu | |
2015-01-25 | irc: add "account" in irc_nick hdata | Sébastien Helleu | |
2015-01-25 | irc: remove useless save of variables in irc_nick_new() when updating nick | Sébastien Helleu | |
2015-01-25 | irc: change type of "account" parameter to "const char *" in irc_nick_new() | Sébastien Helleu | |
2015-01-24 | irc: add support for CAP account-notify | Max Teufel | |
2015-01-01 | core: update copyright dates | Sébastien Helleu | |
2014-11-01 | irc: reformat some code to make it more readable | Sébastien Helleu | |
2014-11-01 | irc: add argument "server_message" in function irc_nick_color_for_msg | Sébastien Helleu | |
2014-08-10 | irc: free nick immediately in case of malloc error | Sébastien Helleu | |
2014-03-30 | irc: allow "$ident" in option irc.network.ban_mask_default (closes #18) | Sébastien Helleu | |
2014-03-30 | irc: add support of "away-notify" capability (closes #12) | Sébastien Helleu | |
2014-01-09 | core: optimize xxx_valid() functions: return immediately if pointer is NULL | Sebastien Helleu | |
2014-01-01 | core: update copyright dates | Sebastien Helleu | |
2013-12-08 | irc: don't return a default ban mask if option is not set or if host is not ↵ | Sebastien Helleu | |
found | |||
2013-12-07 | irc: rename option irc.look.ban_mask_default to irc.network.ban_mask_default | Sebastien Helleu | |
2013-12-07 | irc: add option irc.look.ban_mask_default (bug #26571) | Sebastien Helleu | |
2013-11-07 | irc: fix groups in channel nicklist when reconnecting to a server that ↵ | Sebastien Helleu | |
supports more nick prefixes than the previously connected server | |||
2013-07-19 | irc: fix self nick color in server messages after nick is changed with /nick ↵ | Sebastien Helleu | |
(bug #39415) | |||
2013-06-29 | irc: fix uninitialized variable "color" when hashing nickname to find color | Sebastien Helleu | |
2013-06-02 | irc: add option irc.look.nick_color_hash: hash algorithm to find nick color ↵ | Sebastien Helleu | |
(patch #8062) | |||
2013-04-29 | core: make nick prefix/suffix dynamic (move options from irc plugin to core, ↵ | Sebastien Helleu | |
add logger options) (bug #37531) | |||
2013-04-23 | irc: add support of UHNAMES (capability "userhost-in-names") (task #9353) | Sebastien Helleu | |
2013-03-21 | irc: fix prefix color for nick when the prefix is not in ↵ | Sebastien Helleu | |
irc.color.nick_prefixes: use default color (key "*") Problem was happening on a server which has "PREFIX=(Yqaohv)!~&@%+". Users with prefix "!" were displayed as lightred (color for "~") instead of lightblue (default key "*"). When a prefix was not found, WeeChat was looping on other prefixes (in order). Now if color is not found, WeeChat uses immediately the fallback color. | |||
2013-03-17 | core: fix typos in many comments and some strings | Sebastien Helleu | |
2013-01-25 | irc: add color in output of /names when result is on server buffer (channel ↵ | Sebastien Helleu | |
not joined) (bug #38070) | |||
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-08-27 | api: allow update for some variables of hdata, add new functions ↵ | Sebastien Helleu | |
hdata_update and hdata_set | |||
2012-08-20 | irc: move options weechat.look.nickmode{_empty} to ↵ | Sebastien Helleu | |
irc.look.nick_mode{_empty}, add nick mode for action messages (patch from Nils Görs) The option irc.look.nick_mode has a new type: integer with values: none/prefix/action/both (default is "prefix", which is old behaviour). | |||
2012-07-20 | core: add support of arrays in hdata variables | Sebastien Helleu | |
2012-03-12 | irc: use computed nick color in many messages instead of option ↵ | Sebastien Helleu | |
weechat.color.chat_nick | |||
2012-03-06 | irc: compute hash to find nick color for nick in server message when nick is ↵ | Sebastien Helleu | |
not in nicklist | |||
2012-02-26 | irc: add search for lower case nicks in option irc.look.nick_color_force | Sebastien Helleu | |
2012-01-08 | core: update copyright dates | Sebastien Helleu | |
2011-12-27 | irc: do not use option irc.look.nick_color_stop_chars for forced nick colors ↵ | Sebastien Helleu | |
(bug #33480) | |||
2011-11-12 | irc: add case insensitive string comparison based on casemapping of server ↵ | Sebastien Helleu | |
(rfc1459, strict-rfc1459, ascii) (bug #34239) | |||
2011-10-26 | core: remove unneeded whitespace | Sebastien Helleu | |
2011-09-22 | core: add colors for inactive windows and lines (in merged buffers) | Sebastien Helleu | |
New boolean options to control use of inactive colors: - weechat.look.color_inactive_message - weechat.look.color_inactive_prefix - weechat.look.color_inactive_prefix_buffer - weechat.look.color_inactive_time New "inactive" color options: - weechat.color.chat_inactive_line - weechat.color.chat_inactive_window - weechat.color.chat_prefix_buffer_inactive_line | |||
2011-08-21 | irc: use color "default" for any invalid color in option ↵ | Sebastien Helleu | |
weechat.color.chat_nick_colors | |||
2011-06-26 | core: many improvements on hdata | Sebastien Helleu | |
New features: - add optional hdata name for variables in hdata - add plugin API functions: hdata_get_var_hdata - use hashtable to store hdata (created by WeeChat and plugins) - free hdata and infolists created by plugin on plugin unload - free all hdata on exit - add "free" option to command /debug hdata - remove hdata for hooks | |||
2011-06-13 | core: add "hdata" (direct access to WeeChat/plugin data) | Sebastien Helleu | |
2011-04-11 | irc: use nick color for users outside the channel | Sebastien Helleu | |
2011-03-23 | irc: return empty color name for nick prefix when no mode is set (instead of ↵ | Sebastien Helleu | |
"chat") | |||
2011-03-23 | irc: replace options irc.color.nick_prefix_{op|halfop|voice|user} by a ↵ | Sebastien Helleu | |
single option irc.color.nick_prefixes (task #10888) | |||
2011-02-24 | Refresh nicks colors in nicklist when changing option ↵ | Sebastien Helleu | |
weechat.color.chat_nick_colors | |||
2011-02-23 | Add new option irc.look.color_nicks_in_nicklist | Sebastien Helleu | |
2011-01-01 | Update copyright dates | Sebastien Helleu | |