Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-02-07 | core: update translations | Sébastien Helleu | |
2021-02-07 | core: update ChangeLog (closes #992, closes #993) | Sébastien Helleu | |
2021-02-07 | core: add options weechat.look.hotlist_update_on_buffer_switch and ↵ | Kevin Pulo | |
weechat.look.read_marker_update_on_buffer_switch Both default to "on" (no change to previous behavior). If hotlist_update_on_buffer_switch is "off", then when switching away from a buffer, the hotlist is not cleared. If read_marker_update_on_buffer_switch is "off", then when switching away from a buffer, the read marker is not set to the end of the buffer. This allows users to choose to have fully manual control over when hotlist counts and buffer read markers are reset. Fixes #992. | |||
2021-02-06 | core: update ChangeLog (remove option sec.crypt.passphrase_file) | Sébastien Helleu | |
2021-02-06 | core: replace option sec.crypt.passphrase_file by ↵ | Sébastien Helleu | |
sec.crypt.passphrase_command (closes #141) The command is used to read the passphrase on startup, for example using your favorite password manager. Note: only the passphrase is read from the program, the secured data is still stored encrypted in sec.conf and handled by WeeChat itself. | |||
2021-02-05 | doc: update German auto-generated files | Sébastien Helleu | |
2021-02-05 | core: add raw string in evaluation of expressions with "raw:xxx" (closes #1611) | Sébastien Helleu | |
2021-02-05 | core: update German translations | Nils Görs | |
2021-02-03 | irc: add info "irc_is_message_ignored" | Sébastien Helleu | |
2021-01-31 | core: add version 3.0.1 in ChangeLog, release notes and weechat.spec | Sébastien Helleu | |
2021-01-31 | core: update German translations | Nils Görs | |
2021-01-31 | core: update German translations | Nils Görs | |
2021-01-30 | irc: add function irc_server_get_chantypes | Sébastien Helleu | |
2021-01-30 | irc: use server option "default_chantypes" as fallback in function ↵ | Sébastien Helleu | |
irc_nick_is_nick | |||
2021-01-30 | core: update translations | Sébastien Helleu | |
2021-01-30 | core: add contributor in AUTHORS.adoc (issue #1610) | Sébastien Helleu | |
2021-01-30 | doc: update auto-generated files with options | Sébastien Helleu | |
2021-01-30 | irc: use server option "default_chantypes" as fallback when automatically ↵ | Sébastien Helleu | |
adding channel type on join | |||
2021-01-30 | core: update ChangeLog | Sébastien Helleu | |
2021-01-30 | irc: improve help on server option "default_chantypes" | Sébastien Helleu | |
2021-01-30 | irc: fix name of option "default_chantypes" in list of server options | Sébastien Helleu | |
2021-01-30 | irc: simplify code in function irc_channel_is_channel | Sébastien Helleu | |
2021-01-30 | irc: make default chantypes configurable | Matti Virkkunen | |
2021-01-27 | doc: update German documentation | Nils Görs | |
2021-01-27 | doc: update Polish auto-generated files | Sébastien Helleu | |
2021-01-27 | doc: add a second note on default configuration files in user's guide | Sébastien Helleu | |
2021-01-26 | core: add command "/buffer listvar" in release notes | Sébastien Helleu | |
2021-01-16 | core: add contributor in AUTHORS.adoc (issue #1607) | Sébastien Helleu | |
2021-01-16 | core: update ChangeLog | Sébastien Helleu | |
2021-01-16 | doc: don't build headless man page if headless is disabled | Jan Palus | |
2021-01-15 | po: updated polish translation | Krzysztof Korościk | |
2021-01-15 | doc: updated polish translation | Krzysztof Korościk | |
2021-01-09 | doc: add missing non-breaking spaces before punctuation in French docs | Sébastien Helleu | |
2021-01-05 | core: update German translations | Nils Görs | |
2021-01-02 | core: update copyright dates | Sébastien Helleu | |
2021-01-02 | irc: remove obsolete comment on translation | Sébastien Helleu | |
2021-01-02 | irc: fix ambiguity on translation of word "server" | Sébastien Helleu | |
This fixes the following warning: /usr/bin/xgettext: warning: msgid 'server' is used without plural and with plural. ./src/plugins/irc/irc-bar-item.c:136: Here is the occurrence without plural. ./src/plugins/irc/irc.c:154: Here is the occurrence with plural. Workaround: If the msgid is a sentence, change the wording of the sentence; otherwise, use contexts for disambiguation. | |||
2021-01-02 | core: move debug_id assignation in macro EVAL_DEBUG_MSG | Sébastien Helleu | |
2021-01-01 | doc: add note about call to "regfree" after call to "string_regcomp" (plugin ↵ | Sébastien Helleu | |
API reference) | |||
2021-01-01 | core: add indentation and colors in /eval debug output | Sébastien Helleu | |
2021-01-01 | doc: update German auto-generated file | Sébastien Helleu | |
2021-01-01 | core: update German translations | Nils Görs | |
2020-12-31 | core: display more verbose debug with two "-d" in command /eval | Sébastien Helleu | |
Now a single -d in command /eval shows less debug messages than previous versions. To get the same debug messages than previous versions, two -d must be used. | |||
2020-12-30 | core: fix typo in comment | Sébastien Helleu | |
2020-12-28 | doc: update German documentation | Nils Görs | |
2020-12-28 | doc: update question about config files sharing (FAQ) | Sébastien Helleu | |
2020-12-28 | doc: add info about sensitive data in relay.conf (user's guide) | Sébastien Helleu | |
2020-12-27 | doc: update Polish auto-generated files | Sébastien Helleu | |
2020-12-27 | po: updated polish translation | Krzysztof Korościk | |
2020-12-25 | core: do not remove quotes in arguments of command /eval (closes #1601) | Sébastien Helleu | |
Now, /eval -n -c "a" == "a" returns True instead of False. When quotes were removed, the condition evaluated was: a" == "a (which is False). |