summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-02-07core: update translationsSébastien Helleu
2021-02-07core: update ChangeLog (closes #992, closes #993)Sébastien Helleu
2021-02-07core: 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-06core: update ChangeLog (remove option sec.crypt.passphrase_file)Sébastien Helleu
2021-02-06core: 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-05doc: update German auto-generated filesSébastien Helleu
2021-02-05core: add raw string in evaluation of expressions with "raw:xxx" (closes #1611)Sébastien Helleu
2021-02-05core: update German translationsNils Görs
2021-02-03irc: add info "irc_is_message_ignored"Sébastien Helleu
2021-01-31core: add version 3.0.1 in ChangeLog, release notes and weechat.specSébastien Helleu
2021-01-31core: update German translationsNils Görs
2021-01-31core: update German translationsNils Görs
2021-01-30irc: add function irc_server_get_chantypesSébastien Helleu
2021-01-30irc: use server option "default_chantypes" as fallback in function ↵Sébastien Helleu
irc_nick_is_nick
2021-01-30core: update translationsSébastien Helleu
2021-01-30core: add contributor in AUTHORS.adoc (issue #1610)Sébastien Helleu
2021-01-30doc: update auto-generated files with optionsSébastien Helleu
2021-01-30irc: use server option "default_chantypes" as fallback when automatically ↵Sébastien Helleu
adding channel type on join
2021-01-30core: update ChangeLogSébastien Helleu
2021-01-30irc: improve help on server option "default_chantypes"Sébastien Helleu
2021-01-30irc: fix name of option "default_chantypes" in list of server optionsSébastien Helleu
2021-01-30irc: simplify code in function irc_channel_is_channelSébastien Helleu
2021-01-30irc: make default chantypes configurableMatti Virkkunen
2021-01-27doc: update German documentationNils Görs
2021-01-27doc: update Polish auto-generated filesSébastien Helleu
2021-01-27doc: add a second note on default configuration files in user's guideSébastien Helleu
2021-01-26core: add command "/buffer listvar" in release notesSébastien Helleu
2021-01-16core: add contributor in AUTHORS.adoc (issue #1607)Sébastien Helleu
2021-01-16core: update ChangeLogSébastien Helleu
2021-01-16doc: don't build headless man page if headless is disabledJan Palus
2021-01-15po: updated polish translationKrzysztof Korościk
2021-01-15doc: updated polish translationKrzysztof Korościk
2021-01-09doc: add missing non-breaking spaces before punctuation in French docsSébastien Helleu
2021-01-05core: update German translationsNils Görs
2021-01-02core: update copyright datesSébastien Helleu
2021-01-02irc: remove obsolete comment on translationSébastien Helleu
2021-01-02irc: 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-02core: move debug_id assignation in macro EVAL_DEBUG_MSGSébastien Helleu
2021-01-01doc: add note about call to "regfree" after call to "string_regcomp" (plugin ↵Sébastien Helleu
API reference)
2021-01-01core: add indentation and colors in /eval debug outputSébastien Helleu
2021-01-01doc: update German auto-generated fileSébastien Helleu
2021-01-01core: update German translationsNils Görs
2020-12-31core: display more verbose debug with two "-d" in command /evalSé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-30core: fix typo in commentSébastien Helleu
2020-12-28doc: update German documentationNils Görs
2020-12-28doc: update question about config files sharing (FAQ)Sébastien Helleu
2020-12-28doc: add info about sensitive data in relay.conf (user's guide)Sébastien Helleu
2020-12-27doc: update Polish auto-generated filesSébastien Helleu
2020-12-27po: updated polish translationKrzysztof Korościk
2020-12-25core: 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).