summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-05-10core: properly display newlines in input for all buffersTrygve Aaberge
Supporting multiple lines in the input bar is useful even for buffers without input_multiline set, because it enables you to compose multiple lines at once, even if it is sent as multiple messages. It is particularly useful when you paste multiple lines and want to edit some of it before you send the message.
2020-05-09core: update ChangeLog (issue #1497)Sébastien Helleu
2020-05-09irc: fix realname delimiter color in WHO/WHOX responseSimmo Saan
2020-05-09core: properly display newlines in input when multiline is enabled in buffer ↵Sébastien Helleu
(issue #984, issue #1063)
2020-05-09core: add an option for multiline input in a buffer (closes #984)Trygve Aaberge
This allows the input callback function for a buffer to receive multiple lines at once, instead of the message being split on newline before being sent to the callback. It adds a new flag, input_multiline, to control this. This flag defaults to 0 which is the current behavior.
2020-05-09core: add contributor in AUTHORS.adoc (issue #1456)Sébastien Helleu
2020-05-09core: update ChangeLog (issue #1454, issue #1456)Sébastien Helleu
2020-05-09core: remove top/left shadow in WeeChat logo (issue #1454, issue #1456)Sébastien Helleu
2020-05-09Regenerate iconsShun Sakai
- Inkscape SVG icon -> plain SVG icon - regenerate PNG icons from SVG icon
2020-05-09Add Inkscape SVG format iconShun Sakai
2020-05-09core: add note about triggers and argument "modifier_data" of weechat_print ↵Sébastien Helleu
modifier callback
2020-05-09api: use buffer pointer in argument "modifier_data" sent to weechat_print ↵Sébastien Helleu
modifier callback (closes #42)
2020-05-08core: update GnuTLS section in release notesSébastien Helleu
2020-05-08doc: update German auto-generated fileSébastien Helleu
2020-05-08core: update German translationsNils Görs
2020-05-08irc: reuse a buffer with wrong type "channel" when a private message is ↵Sébastien Helleu
received (closes #869)
2020-05-08core: rename functions hook_completion_{get_string|list_add} to ↵Sébastien Helleu
completion_{get_string|list_add} Old functions are kept for compatibility reasons.
2020-05-07trigger: fix truncated trigger command with commands /trigger ↵Sébastien Helleu
input|output|recreate
2020-05-05core: add include comparison operators in evaluation of expressionsSébastien Helleu
New comparison operators: - "==*": is matching mask, case sensitive (wildcard "*" is allowed) - "!!*": is NOT matching mask, case sensitive (wildcard "*" is allowed) - "==-": is included, case sensitive - "!!-": is NOT included, case sensitive - "=-": is included, case insensitive - "!-": is NOT included, case insensitive
2020-05-03tests: replace compiler by different env lines (Travis CI)Sébastien Helleu
2020-05-03tests: switch to Ubuntu Bionic, use pylint3 to lint Python scripts (Travis CI)Sébastien Helleu
2020-05-03tests: fix pylint errorsSébastien Helleu
2020-05-03exec: return NULL immediately if the task id is invalidSébastien Helleu
2020-05-03exec: fix use of same task id for different tasks (closes #1491)Sébastien Helleu
2020-05-03doc: fix pylint errorsSébastien Helleu
2020-05-03core: update ChangeLogSébastien Helleu
2020-05-03doc: remove extra separator lines in auto-generated filesSébastien Helleu
2020-05-03doc: merge 53 autogen files into 11 files, move them to includes directorySébastien Helleu
2020-05-03core: disable pylint of script docgen.py (Travis CI)Sébastien Helleu
2020-05-03Revert "core: use pylint3 to lint Python scripts (Travis CI)"Sébastien Helleu
This reverts commit 03ec80f7d33d4a905fd42a8c4816ee88c530c217.
2020-05-03core: use pylint3 to lint Python scripts (Travis CI)Sébastien Helleu
2020-05-02doc: drop Python 2 support in script docgen.pySébastien Helleu
The script now requires Python 3.6+.
2020-05-02doc: fix path of cmdline_options.XX.adoc and man.XX.adoc (developer's guide)Sébastien Helleu
2020-05-02doc: move files cmdline_options.xx.adoc and man.xx.adoc into "includes" ↵Sébastien Helleu
directory
2020-05-02doc: merge files man_*.xx.adoc into a single file man.xx.adocSébastien Helleu
2020-05-02doc: merge files cmdline_options_debug.xx.adoc into cmdline_options.xx.adocSébastien Helleu
2020-05-02doc: add missing key "compression" in handshake responses (relay protocol)Sébastien Helleu
2020-05-02relay: add "compression" in response to handshake command (weechat protocol)Sébastien Helleu
The value can be "zlib" (default in relay) or "off".
2020-05-02doc: add examples of command responses in relay protocolSébastien Helleu
2020-05-01relay: fix slow send of data to clients when SSL is enabledSébastien Helleu
2020-04-29doc: improve indenting in examples (relay protocol)Sébastien Helleu
2020-04-29doc: update German auto-generated filesSébastien Helleu
2020-04-29core: update German translationsNils Görs
2020-04-28core: update translationsSébastien Helleu
2020-04-28core: update ChangeLog (issue #713)Sébastien Helleu
2020-04-28fifo: Open the fifo for writing tooQuentin Glidic
That will make it survive, avoiding the need to reopen it. Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
2020-04-28relay: add command "completion" in weechat relay protocol (closes #1484)Sébastien Helleu
2020-04-28core: remove obsolete commentSébastien Helleu
The completion context can be "GUI_COMPLETION_NULL" if there's no base word found (for example empty input).
2020-04-28api: return integer in function gui_completion_search (issue #1484)Sébastien Helleu
2020-04-27api: add hdata "completion_word" (issue #1484)Sébastien Helleu