summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2019-01-27doc: update German documentationNils Görs
2019-01-27doc: add example with command "/input set_unread" in question about terminal ↵Sébastien Helleu
focus (issue #1295)
2019-01-26core: do not automatically add a space when completing "nick:" at the ↵Sébastien Helleu
beginning of command line The space can be added in option weechat.completion.nick_completer (this is now the default value of the option): /set weechat.completion.nick_completer ": "
2019-01-26doc: fix regex examples to be compatible with FreeBSDSébastien Helleu
The following special sequences are not supported in regular expressions on FreeBSD: - "\w": replaced with "[a-zA-Z0-9_]" - "\S": replaced with "[^ ]" (it should be "[^ \t\n\r\f\v]", but in practice only spaces could be a problem when we use this sequence).
2019-01-20script: add missing input actions "A" and "v" in /help scriptSébastien Helleu
2019-01-20buflist: add default keys ctrl-F1/F2 to scroll up/down one page in buflist ↵Sébastien Helleu
(same action as F1/F2)
2019-01-20core: add default keys ctrl-F11/F12 to scroll up/down one page in nicklist ↵Sébastien Helleu
(same action as F11/F12)
2019-01-13doc: add missing file test-irc-protocol.cpp in developer's guideSébastien Helleu
2019-01-12doc: update German documentationNils Görs
2019-01-12doc: add question about autojoin option in FAQ (closes #1287)Sébastien Helleu
2019-01-11tests: add tests on function irc_config_check_autojoinSébastien Helleu
2019-01-01core: update copyright datesSébastien Helleu
2018-12-22doc: update German auto-generated fileSébastien Helleu
2018-12-22core: add note about option sec.crypt.passphrase_file in /help secure (issue ↵Sébastien Helleu
#1286)
2018-12-14doc: update German auto-generated filesSébastien Helleu
2018-12-13core: update German translationsNils Görs
2018-12-13doc: add example of aspell dict for all channels of an IRC server (user's ↵Sébastien Helleu
guide) (closes #1284)
2018-12-09doc: update Japanese auto-generated filesSébastien Helleu
2018-12-09core: update Japanese translationsAYANOKOUZI, Ryuunosuke
2018-11-30doc: update German documentationNils Görs
2018-11-29doc: add "WeeChat" term for core command /filter (FAQ)Sébastien Helleu
2018-11-29core: use https for all links where secured http is supportedSébastien Helleu
2018-11-29core: use https for links to GNU GPL licenseSébastien Helleu
2018-11-24doc: update German documentationNils Görs
2018-11-19doc: translate FAQ changes in other languages (issue #1280)Sébastien Helleu
2018-11-19doc: add question "How can I disable highlights for specific nicks?" in FAQ ↵Filip H.F. "FiXato" Slagter
(closes #1280)
2018-11-19doc: update German auto-generated fileSébastien Helleu
2018-11-18doc: update German documentationNils Görs
2018-11-18Merge branch 'master' of github.com:weechat/weechatNils Görs
2018-11-18core: replace "Mac OS X" and "OS X" by "macOS" (issue #1272)Sébastien Helleu
2018-11-18doc: translate FAQ changes in other languages (issue #1272)Sébastien Helleu
2018-11-18doc: spelling/grammar fixes & documentation links added (FAQ) (closes #1272)Filip H.F. "FiXato" Slagter
A number of spelling/grammar fixes, some restructured sentences to improve readability and replacement of previous names for Apple Macintosh's OS with the current 'macOS' name. Also added some more references to User's guide documentation sections. Also clarified that a window can not only display 1 buffer, but also a set of merged buffers. Finally, added a version note about the /script command.
2018-11-17core: update German translationsNils Görs
2018-11-17exec: add option exec.command.shell to customize the shell used with /exec -shSébastien Helleu
2018-11-17core: add command line option "-t" (or "--temp-dir") to create a temporary ↵Sébastien Helleu
WeeChat home (deleted on exit)
2018-11-16doc: update German auto-generated fileSébastien Helleu
2018-11-13doc: add missing variable "pointer" to make C compiler really happy (plugin ↵Sébastien Helleu
API reference)
2018-11-13doc: fix name of compiled plugin example (plugin API reference)Sébastien Helleu
2018-11-12doc: update German auto-generated filesSébastien Helleu
2018-11-12core: update German translationsNils Görs
2018-11-12core: improve help on option irc.look.server_buffer (closes #1269)Sébastien Helleu
2018-11-12core: improve help on option weechat.look.nick_color_stop_chars (closes #1268)Sébastien Helleu
2018-11-05buflist: add variable ${number2}, always set with the indented buffer numberSébastien Helleu
2018-11-04core: replace ellipses by "etc." (in English) and "etc..." by "etc." in FrenchSébastien Helleu
2018-11-04core: replace "web site" by "website"Sébastien Helleu
2018-11-04Merge pull request #1273 from half-duplex/masterSébastien Helleu
Fix regex in relay.network.allowed_ips doc
2018-11-04core: update translationsSébastien Helleu
2018-11-04relay: add support of Time-based One-Time Password (TOTP) as second ↵Sébastien Helleu
authentication factor in weechat protocol
2018-11-04doc: fix styles in relay protocolSébastien Helleu
2018-11-04api: add functions string_base_{encode,decode}, remove functions ↵Sébastien Helleu
string_{encode,decode}_base64