summaryrefslogtreecommitdiff
path: root/src/plugins/irc/irc-config.c
AgeCommit message (Collapse)Author
2018-11-29core: use https for links to GNU GPL licenseSébastien Helleu
2018-11-12core: improve help on option irc.look.server_buffer (closes #1269)Sébastien Helleu
2018-11-04core: replace ellipses by "etc." (in English) and "etc..." by "etc." in FrenchSébastien Helleu
2018-10-14irc: fix colors 14 and 15 in /help irc.color.mirc_remap (closes #1266)Sébastien Helleu
2018-09-20irc: display a warning when the value of option irc.server.xxx.autojoin is ↵Sébastien Helleu
set to an invalid value
2018-05-21Merge remote-tracking branch 'origin/pr/640'Sébastien Helleu
2018-02-05irc: allow ${irc_server.xxx} and ${server} in server evaluated options ↵Sébastien Helleu
(closes #1144) The server option "ssl_fingerprint" is now evaluated when it is used (during SSL connection), instead of when it is set with command /set.
2018-01-14core: reinitialize config file pointer to NULL after an error on section ↵Sébastien Helleu
creation
2018-01-14irc: fix typo in help on server option "split_msg_max_length"Sébastien Helleu
2018-01-13irc: add server option "split_msg_max_length"Sébastien Helleu
2018-01-07core: fix some stylesSébastien Helleu
2018-01-05core: update copyright datesSébastien Helleu
2017-11-06irc: fix help on option irc.look.notice_welcome_redirect (closes #1095)Sébastien Helleu
2017-11-05irc: add smart filtering for chghost messagesSimmo Saan
2017-11-05irc: display chghost messages in buffersSimmo Saan
2017-03-12core: fix typo: refreshs -> refreshesSébastien Helleu
2017-01-01core: update copyright datesSébastien Helleu
2016-12-15irc: add examples in help of usermode server optionSébastien Helleu
2016-12-11irc: evaluate content of server option "usermode"Sébastien Helleu
2016-12-11irc: rename server option "umodes" to "usermode"Sébastien Helleu
2016-12-11Merge remote-tracking branch 'origin/pr/820'Sébastien Helleu
2016-12-03irc: evaluate content of server option "ssl_fingerprint" (closes #858)Sébastien Helleu
2016-10-18irc: change default value of option irc.network.lag_reconnect to 300 (closes ↵Sébastien Helleu
#818)
2016-10-12Add server option umodes (closes #377)Simmo Saan
2016-07-17irc: rename server options "default_msg_*" to "msg_*", evaluate themSébastien Helleu
2016-04-05core: move nick coloring from irc plugin to core (closes #262)Sébastien Helleu
Options moved from irc.conf to weechat.conf: * "irc.look.nick_color_force" moved to "weechat.look.nick_color_force" * "irc.look.nick_color_hash" moved to "weechat.look.nick_color_hash" * "irc.look.nick_color_stop_chars" moved to "weechat.look.nick_color_stop_chars" New info (for API function "info_get"): * "nick_color" (replaces "irc_nick_color") * "nick_color_name" (replaced "irc_nick_color_name") Info "irc_nick_color" and "irc_nick_color_name" are now deprecated. And a bug has been fixed in nick coloring: stop chars are removed before looking at a forced color.
2016-03-21core: add pointer in some callbacks (closes #406)Sébastien Helleu
This pointer is the first argument received by callbacks, and the existing argument "data" is now automatically freed by WeeChat when the object containing the callback is removed. With this new pointer, the linked list of callbacks in scripts has been removed. This will improve speed of scripts (using a lot of hooks), reduce memory used by scripts and reduce time to unload scripts. Following functions are affected in the C API: * exec_on_files * config_new * config_new_section * config_new_option * hook_command * hook_command_run * hook_timer * hook_fd * hook_process * hook_process_hashtable * hook_connect * hook_print * hook_signal * hook_hsignal * hook_config * hook_completion * hook_modifier * hook_info * hook_info_hashtable * hook_infolist * hook_hdata * hook_focus * unhook_all_plugin * buffer_new * bar_item_new * upgrade_new * upgrade_read
2016-02-25irc: complete help of SASL fail optionsSébastien Helleu
2016-02-24core: update translationsSébastien Helleu
2016-02-23irc: add option irc.network.sasl_fail_unavailable (closes #600)Simmo Saan
Previously SASL did not fail when it was set up for the server but wasn't supported by it. This makes no difference when the server's sasl_fail is set to "continue" but might make a difference if set to "disconnect" or "reconnect". To make sure server connection is not made under such circumstances, this patch adds an extra configurable ("on" by default) check to trigger SASL failure when it is set up but not supported by the server. Although not directly a SASL failure, this makes SASL not-authenticated scenarios all handled consistently, while providing extra security by not silently ignoring not being authenticated as requested.
2016-02-15core: move irc bar item "away" and two options to core (closes #692)Sébastien Helleu
Options moved: * "irc.look.item_away_message" --> "weechat.look.item_away_message" * "irc.color.item_away" --> "weechat.color.item_away".
2016-01-02irc: evaluate content of server option "addresses"Sébastien Helleu
2016-01-01core: update copyright datesSébastien Helleu
2015-12-24irc: move option irc.network.alternate_nick into servers (closes #633)Sébastien Helleu
2015-12-20irc: add default color for +y mode prefixChristine Dodrill
2015-08-24irc: add command /cap (closes #8)Sébastien Helleu
2015-08-15irc: update help on option irc.network.channel_encode (issue #218, issue #482)Sébastien Helleu
Remove mention of WeeChat <= 1.2 since the behavior is not exactly the same as old versions (when the option is enabled): only the channel/message are decoded/encoded and not the nick/host.
2015-08-14irc: add option irc.network.channel_encode (issue #218, issue #482)Sébastien Helleu
This is a workaround (disabled by default) to join and chat on ISO encoded channels (or another charset different from UTF-8). This option may be removed in future if a better solution is implemented.
2015-08-07core: update translationsSébastien Helleu
2015-07-20irc: add separate color option for current topic in channel bufferSimmo Saan
2015-07-10irc: evaluate content of server option "nicks"Sébastien Helleu
2015-06-04core: replace "create" by "add" in messages and docs for IRC servers and proxiesSébastien Helleu
2015-05-07irc: display a warning when the option irc.look.display_away is set to "channel"Sébastien Helleu
2015-04-30core: add comments after some #endifSébastien Helleu
2015-04-19core: sort config options by name in sourcesSébastien Helleu
2015-04-18irc: remove compiler warning on isxdigitSébastien Helleu
2015-04-18irc: add support of SHA-256 and SHA-512 algorithms in server option ↵Sébastien Helleu
"ssl_fingerprint" (closes #281)
2015-01-25irc: add "account-notify" in help of server option "capabilities"Sébastien Helleu
2015-01-24irc: remove server "freenode" from default config file (closes #309)Sébastien Helleu
2015-01-19irc: add support of "ecdsa-nist256p-challenge" SASL mechanism (closes #251)Sébastien Helleu