Simmo Saan
d77e1ea499
irc: add indexed ban list, add completion for /unban and /unquiet ( closes #597 , task #11374 , task #10876 )
2018-03-24 17:01:50 +01:00
Sébastien Helleu
be3634f22f
irc: add server option "split_msg_max_length"
2018-01-13 22:17:13 +01:00
Sébastien Helleu
7ee88fb46c
core: fix some styles
2018-01-07 09:11:45 +01:00
Sébastien Helleu
ed4837b2f6
core: update copyright dates
2018-01-05 00:54:18 +01:00
Sébastien Helleu
d427fc0549
irc: do not clear nicklist when joining an already joined channel if the option irc.look.buffer_open_before_join is on ( closes #1081 , closes #1082 )
2017-10-13 07:44:52 +02:00
Sébastien Helleu
aeeec38d6f
core: fix cast of time_t (to "long long" instead of "long") ( closes #1051 )
2017-08-12 18:36:45 +02:00
Sébastien Helleu
d73b54758c
irc: add option "open" in command /server ( closes #966 )
2017-05-02 07:38:45 +02:00
Sébastien Helleu
a4dffb1915
irc: fix double decoding of IRC colors in messages sent/displayed by commands /msg and /query (issue #943 )
2017-04-07 22:28:48 +02:00
Sébastien Helleu
12e2d9995c
irc: add function irc_server_get_max_modes
2017-02-18 17:34:06 +01:00
Sébastien Helleu
e1eeb22945
irc: update error message, update translations
2017-02-18 14:48:02 +01:00
Sébastien Helleu
51b2352786
irc: send current modes/masks if next mask doesn't fit in the string
2017-02-18 14:41:52 +01:00
Sébastien Helleu
06d73e4b96
Merge remote-tracking branch 'origin/pr/579'
2017-02-18 14:31:49 +01:00
Sébastien Helleu
1adb6075fa
irc: compact some code
2017-02-18 13:14:50 +01:00
Sébastien Helleu
cf1010e177
irc: move initialization of variables "inclusive"
2017-02-18 13:09:27 +01:00
Sébastien Helleu
ac007a1efd
Merge remote-tracking branch 'origin/pr/572'
2017-02-18 13:04:00 +01:00
Sébastien Helleu
fe7f92c4d8
irc: fix option "-temp" in command /server ( closes #880 )
2017-01-06 22:44:13 +01:00
Sébastien Helleu
5429381cb6
irc: fix name of option "-temp" in /help server
2017-01-06 22:13:43 +01:00
Sébastien Helleu
705d86e684
core: update copyright dates
2017-01-01 11:32:04 +01:00
Sébastien Helleu
ab490e10c7
irc: rename server option "umodes" to "usermode"
2016-12-11 13:43:34 +01:00
Sébastien Helleu
50a50d0339
Merge remote-tracking branch 'origin/pr/820'
2016-12-11 13:06:05 +01:00
Sébastien Helleu
377fad22db
irc: add tag "self_msg" on self messages ( closes #840 )
2016-11-26 13:58:16 +01:00
Sébastien Helleu
cfc22c700c
irc: add missing tags on CTCP message sent
2016-11-26 13:49:34 +01:00
Sébastien Helleu
4a2cd9d034
irc: fix help on mask in command /ignore
2016-11-09 20:48:35 +01:00
Simmo Saan
03fbb4ffdc
Add server option umodes ( closes #377 )
2016-10-12 21:38:49 +03:00
Sébastien Helleu
34ccf3fd81
irc: rename server options "default_msg_*" to "msg_*", evaluate them
2016-07-17 09:29:14 +02:00
Sébastien Helleu
20c86db0d8
api: remove functions printf_date() and printf_tags()
2016-06-18 08:49:35 +02:00
Sébastien Helleu
cf6aca1619
core: add pointer in some callbacks ( closes #406 )
...
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-03-21 18:11:21 +01:00
Sébastien Helleu
f2214da118
irc: add missing completion "*" for target in command /msg
2016-01-17 09:07:23 +01:00
Sébastien Helleu
3c953780f0
irc: fix /msg command with multiple targets including "*"
2016-01-17 09:06:17 +01:00
Sébastien Helleu
9d4554e805
irc: add examples in /help ctcp
2016-01-17 08:51:22 +01:00
Sébastien Helleu
99ff5813d9
irc: add a constant with list of supported CTCPs for completion in command /ctcp
2016-01-17 08:36:00 +01:00
Sébastien Helleu
aee4871083
irc: add missing completion "*" for target in command /ctcp
2016-01-17 08:32:44 +01:00
Sébastien Helleu
efb23016fe
irc: do not exit from function in case of error with "ctcp *"
...
When "*" is a target in the middle of a list, for example
"#chan1,*,#chan2", if there's an error with "*", the CTCP should be sent
to #chan1 and #chan2, even if "*" fails (and not only #chan1 like it was
previously).
2016-01-17 08:24:53 +01:00
Sébastien Helleu
68b70fb185
irc: free allocated memory in case of early exit from the function
2016-01-17 08:21:45 +01:00
Sébastien Helleu
b0725c2b9b
irc: fix code style
2016-01-17 08:20:14 +01:00
Sébastien Helleu
a7695f7201
Merge remote-tracking branch 'origin/pr/493'
2016-01-17 08:11:23 +01:00
Sébastien Helleu
3d0a7451d8
irc: remove argument "clear" from command /cap (issue #8 , closes #641 )
2016-01-03 09:01:43 +01:00
Sébastien Helleu
3330724574
core: update copyright dates
2016-01-01 11:09:53 +01:00
Sébastien Helleu
08d22a948f
irc: fix typo
2015-12-24 22:20:12 +01:00
Sébastien Helleu
ed32302011
irc: move option irc.network.alternate_nick into servers ( closes #633 )
2015-12-24 20:36:05 +01:00
Simmo Saan
c205aae269
irc: disallow /quiet, /unquiet on servers without support
2015-11-07 14:53:29 +02:00
Simmo Saan
2ef5d654dc
irc: make /ban, /unban, /quiet, /unquiet send multiple at once ( closes #15 )
...
irc: make /quiet, /unquiet honor ban_mask_default (closes #577 )
2015-11-07 14:21:00 +02:00
Simmo Saan
e1f296857e
irc: add inclusive behavior to /allchan, /allpv, /allserv
2015-11-03 12:49:21 +02:00
Sébastien Helleu
995eb1f004
irc: add "cap-notify" in list of supported capabilities (/help cap)
2015-10-18 19:19:03 +02:00
Sébastien Helleu
c8ac75601f
irc: fix typos in /help ban and /help quiet
2015-08-24 10:07:44 +02:00
Sébastien Helleu
350938181b
irc: add command /cap ( closes #8 )
2015-08-24 10:02:38 +02:00
Simmo Saan
c813f3a296
irc: add multiple targets and -server option to /ctcp ( closes #204 )
2015-08-18 10:45:38 +03:00
Sébastien Helleu
cc774d099b
irc: do not allow command /query with a channel name ( closes #459 )
2015-07-09 20:35:27 +02:00
Sébastien Helleu
7c1b7df2cf
irc: fix crash with commands /allchan, /allpv and /allserv if the executed command closes buffers ( closes #445 )
2015-06-16 20:28:50 +02:00
Sébastien Helleu
7c6c450662
core: replace "create" by "add" in messages and docs for IRC servers and proxies
2015-06-04 22:00:10 +02:00