Sébastien Helleu
e2ce3dfc1b
doc: fix name of file AUTHORS.adoc in Polish man page
2016-05-15 09:04:03 +02:00
Sébastien Helleu
adf6ed3f67
doc: fix source-highlighter in autotools (issue #722 )
2016-05-15 09:01:49 +02:00
Sébastien Helleu
b7bdbbdc50
core: rename .asciidoc files to .adoc (issue #722 )
2016-05-15 08:52:19 +02:00
Sébastien Helleu
81fa60a23a
doc: fix styles in auto-generated doc files (issue #722 )
2016-05-14 23:44:36 +02:00
Sébastien Helleu
c5f6aad66f
core: require asciidoctor 1.5.4 instead of 1.5.0 (issue #722 )
2016-05-14 09:42:57 +02:00
Sébastien Helleu
5f8ae3e12e
doc: increase toclevels and sectnumlevels in user's guide (issue #722 )
2016-05-14 09:42:57 +02:00
Sébastien Helleu
b05382e6f2
doc: enable section numbering in tester's guide (issue #722 )
2016-05-14 09:42:57 +02:00
Sébastien Helleu
bc98d43c08
doc: fix styles in user's guide (issue #722 )
2016-05-14 09:42:57 +02:00
Sébastien Helleu
c2c3ecb3f7
doc: fix style in tip about mouse events (user's guide) (issue #722 )
2016-05-14 09:42:57 +02:00
Sébastien Helleu
4180ddff0f
doc: use a table for input of IRC color codes in user's guide (issue #722 )
2016-05-14 09:42:57 +02:00
Sébastien Helleu
f8f313569c
doc: fix style of key bindings in user's guide (issue #722 )
2016-05-14 09:42:57 +02:00
Sébastien Helleu
b11d1408aa
doc: improve source of table with dependencies in user's guide
2016-05-14 09:42:57 +02:00
Sébastien Helleu
67250aa2bb
doc: replace asciidoc by asciidoctor in user's guide (issue #722 )
2016-05-14 09:42:57 +02:00
Sébastien Helleu
8cb857cedb
doc: make list of functions/constants more readable in scripting guide
2016-05-14 09:42:57 +02:00
Sébastien Helleu
9a3da9a4a3
doc: enable section numbering in scripting guide (issue #722 )
2016-05-14 09:42:57 +02:00
Sébastien Helleu
c5c7539406
doc: fix styles in scripting guide (issue #722 )
2016-05-14 09:42:57 +02:00
Sébastien Helleu
048ad82672
doc: fix styles in tester guide (issue #722 )
2016-05-14 09:42:57 +02:00
Sébastien Helleu
93b71769cd
doc: fix styles in quickstart guide (issue #722 )
2016-05-14 09:42:57 +02:00
Sébastien Helleu
171f9a9fc8
doc: fix styles in FAQ (issue #722 )
2016-05-14 09:42:57 +02:00
Sébastien Helleu
de24a7cb7b
doc: fix styles in man page (issue #722 )
2016-05-14 09:42:57 +02:00
Sébastien Helleu
220bd837ae
doc: use asciidoctor instead of asciidoc (issue #722 )
2016-05-14 09:42:57 +02:00
Sébastien Helleu
5968460671
doc: add a question about security in FAQ
2016-05-03 21:42:24 +02:00
Sébastien Helleu
31864f562d
doc: update Ruby and Lua versions in user's guide
2016-05-02 21:02:22 +02:00
Sébastien Helleu
881f258d3e
doc: update auto-generated files with URL options
2016-05-01 08:46:46 +02:00
Sébastien Helleu
e65d17eaf6
doc: update Polish auto-generated files
2016-04-27 19:59:08 +02:00
Krzysztof Korościk
7233fa7dc4
doc: update polish translation
2016-04-27 18:50:02 +02:00
Sébastien Helleu
54151a3480
core: update email of Krzysztof Korościk
2016-04-20 19:39:43 +02:00
Sébastien Helleu
ca80d4fae7
doc: convert a note into asciidoc "[NOTE]" in tester's guide
2016-04-17 14:34:03 +02:00
Sébastien Helleu
906c6ebb61
doc: mask SASL mechanisms dh-blowfish and dh-aes as "insecure"
2016-04-14 07:30:49 +02:00
Sébastien Helleu
24c035ae9d
doc: convert a note into asciidoc "[NOTE]" in user's guide
2016-04-11 07:40:57 +02:00
Sébastien Helleu
5b62903772
core: set default value "djb2" for option weechat.look.nick_color_hash
2016-04-06 07:29:50 +02:00
Sébastien Helleu
fabd48cc6c
core: move nick coloring from irc plugin to core ( closes #262 )
...
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-04-05 07:56:43 +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
2da58ea2b7
exec: fix example in /help exec
2016-03-13 18:29:19 +01:00
Sébastien Helleu
f51b4219eb
doc: remove unneeded parentheses in quickstart guide
2016-03-10 21:52:14 +01:00
Sébastien Helleu
0be8e0828a
logger: add note on buffer local variables to use in /help logger.file.mask
2016-03-09 18:45:07 +01:00
Sébastien Helleu
3cdecb08a2
doc: add command /disconnect in quickstart guide
2016-03-08 07:53:31 +01:00
Sébastien Helleu
5936272b4c
irc: complete help of SASL fail options
2016-02-25 07:35:12 +01:00
Sébastien Helleu
81ee0f43bb
core: update translations
2016-02-24 07:52:52 +01:00
Sébastien Helleu
c2aed4dd78
doc: translate instructions for CA file on Mac OS X in other languages (FAQ)
2016-02-17 15:10:53 +01:00
Sébastien Helleu
5554e40210
doc: update Polish auto-generated files
2016-02-16 19:39:38 +01:00
Krzysztof Korościk
3e7b1fa86c
doc: update polish quickstart guide
2016-02-16 18:03:04 +01:00
Sébastien Helleu
0e6a6a0334
core: move irc bar item "away" and two options to core ( closes #692 )
...
Options moved:
* "irc.look.item_away_message" --> "weechat.look.item_away_message"
* "irc.color.item_away" --> "weechat.color.item_away".
2016-02-15 13:36:16 +01:00
Sébastien Helleu
d05beeff0e
core: add note about options to save config/layout on exit in help of commands /layout, /save and /quit ( closes #687 )
2016-02-12 07:39:38 +01:00
Sébastien Helleu
45a1174000
relay: fix the max number of clients connected on a port, allow value 0 for "no limit" ( closes #669 )
2016-02-08 21:14:48 +01:00
Sébastien Helleu
de35dbab99
doc: add secured data in quickstart guide
2016-01-29 07:44:19 +01:00
Sébastien Helleu
59e326da65
core: update translations
2016-01-17 08:54:23 +01:00
Sébastien Helleu
8e280f8e4e
doc: update Polish auto-generated files
2016-01-08 07:33:18 +01:00
Sébastien Helleu
3b89c8cf44
doc: remove trailing whitespace in Polish docs
2016-01-08 07:32:34 +01:00
Sébastien Helleu
77589756aa
doc: update copyright dates in Polish docs
2016-01-08 07:31:49 +01:00