summaryrefslogtreecommitdiff
path: root/doc/ja
AgeCommit message (Collapse)Author
2020-04-18doc: fix asciidoctor options in autotools buildSébastien Helleu
2020-04-18doc: fix table sizes on small screensSébastien Helleu
2020-04-18doc: update default trigger cmd_pass in user's guideSébastien Helleu
2020-04-18doc: update auto-generated files with relay optionsSébastien Helleu
2020-04-18core: make GnuTLS a required dependencySébastien Helleu
2020-04-18relay: allow only one handshake in weechat protocolSébastien Helleu
2020-04-18relay: immediately close connection if the handshake failed (weechat protocol)Sébastien Helleu
2020-04-17doc: fix examples of handshake command (relay protocol)Sébastien Helleu
2020-04-17relay: rename configuration options and keywords in handshake command ↵Sébastien Helleu
(weechat protocol) Configuration options renamed: * relay.network.auth_password -> relay.network.password_hash_algo * relay.network.hash_iterations -> relay.network.password_hash_iterations Handshake command options renamed: * password -> password_hash_algo Handshake reply keys renamed: * auth_password -> password_hash_algo * hash_iterations -> password_hash_iterations
2020-04-17doc: use real nonce values in handshake/init examples (relay protocol)Sébastien Helleu
2020-04-17doc: add missing "(id)" in commands handshake and init (relay protocol)Sébastien Helleu
2020-04-17doc: replace "safest" by "most secure" (relay protocol)Sébastien Helleu
2020-04-17doc: add example of option "compression" in command "handshake" (relay protocol)Sébastien Helleu
2020-04-17doc: fix examples of password hashes in commands handshake and init (relay ↵Sébastien Helleu
protocol)
2020-04-14doc: revert arrows chars in relay protocolSébastien Helleu
2020-04-14relay: add command "handshake" in weechat relay protocol and nonce to ↵Sébastien Helleu
prevent replay attacks (closes #1474) This introduces a new command called "handshake" in the weechat relay protocol. It should be sent by the client before the "init" command, to negotiate the way to authenticate with a password. 3 new options are added: * relay.network.auth_password * relay.network.hash_iterations * relay.network.nonce_size
2020-04-12relay: add option relay.network.auth_timeoutSébastien Helleu
2020-04-12cmake: rename internal variable SHAREDIR to DATAROOTDIREli Schwartz
This is how other build systems (e.g. autotools) see the variable, and cmake's own GNUInstallDirs defines the same. It more clearly describes what this setting does vs. the ambiguous "sharedir".
2020-04-12trigger: evaluate arguments of command when the trigger is created (closes ↵Sébastien Helleu
#1472)
2020-04-06buflist: evaluate option buflist.look.sort (closes #1465)Sébastien Helleu
The evaluation allows to use different sort for the bar items, for example with such value: ${if:${bar_item.name}==buflist?number:short_name} This sorts by number on the first bar item and by short name on the two other bar items.
2020-04-05doc: fix broken literal blocks in Japanese docs with Firefox (closes #1466)Sébastien Helleu
2020-04-02fset: fix help on options fset.format.option1 and fset.format.option2Sébastien Helleu
2020-03-22doc: add question about configuration for a small terminal size in FAQSébastien Helleu
2020-03-20api: add info "auto_connect" (closes #1453)Sébastien Helleu
2020-03-20doc: add note about call to "free" on result of info_get (plugin API reference)Sébastien Helleu
2020-03-09irc: add support of fake servers (no I/O, for testing purposes)Sébastien Helleu
2020-03-02core: require libgcrypt >= 1.7.0 for SHA3 algorithmsSébastien Helleu
2020-03-02relay: accept hash of password in init command with option "password_hash"Sébastien Helleu
Allowed algorithms are: * PBKDF2 (SHA256 or SHA512, salt, iterations) * SHA256 * SHA512
2020-03-01api: add function crypto_hash_pbkdf2Sébastien Helleu
2020-03-01core: move crypto functions to wee-crypto.c, rename API function string_hash ↵Sébastien Helleu
to crypto_hash
2020-03-01core: merge functions string_hash_binary and string_hash into a single ↵Sébastien Helleu
function string_hash
2020-03-01script: call function string_hash in script_repo_sha512sum_file to compute ↵Sébastien Helleu
SHA512 hash This removes dependency on libgcrypt in script plugin.
2020-02-29core: add support of CRC32 algorithm in hash functionsSébastien Helleu
2020-02-29api: add functions string_hash_binary and string_hashSébastien Helleu
2020-02-15doc: update auto-generated filesSébastien Helleu
2020-02-08doc: remove reference to obsolete script shell.py in FAQSébastien Helleu
2020-02-08doc: add question about timezone in FAQSébastien Helleu
2020-02-06doc: add keys and actions on fset and script buffers in user's guideSébastien Helleu
2020-01-05doc: remove space in example of hsignal irc_redirect_command (plugin API ↵Sébastien Helleu
reference)
2020-01-04core: update copyright datesSébastien Helleu
2019-12-26buflist: add pointer "window" in bar item evaluationSébastien Helleu
2019-12-18core: add debug option "-d" in command /eval (issue #1434)Sébastien Helleu
2019-12-13api: add info "weechat_headless"Matthew Horan
2019-12-13core: update translationsSébastien Helleu
2019-11-25doc: update auto-generated files with WeeChat options (issue #635)Sébastien Helleu
2019-11-24doc: list the things removed by WeeChat on /plugin unload (user's guide)Sébastien Helleu
2019-11-15irc: mention /filter command in /help irc.look.smart_filterSébastien Helleu
2019-11-08irc: set option irc.look.display_pv_warning_address to off by default (issue ↵Sébastien Helleu
#892) This is because the bitlbee server causes the warning to be displayed when it is not expected (the address of remote nick changes multiple times on login).
2019-11-04doc: add examples of division in ${calc:...} (plugin API reference)Sébastien Helleu
2019-11-04doc: fix list of "updated in" versions in function string_eval_expression ↵Sébastien Helleu
(plugin API reference)