Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-06-15 | irc: fix display of ACCOUNT message when the account name is ":*" (closes #1526) | Sébastien Helleu | |
2020-06-15 | irc: skip semicolon before account name in ACCOUNT message | Sébastien Helleu | |
2020-06-10 | buflist: add "window" pointer in bar item evaluation only if it's not NULL ↵ | Sébastien Helleu | |
(if bar type is "window") | |||
2020-06-07 | guile: fix compiler warning (issue #1514) | Sébastien Helleu | |
2020-06-07 | guile: fix memory leak in output port | Joram Schrijver | |
2020-06-07 | guile: re-enable "/guile eval" (issue #1098) | Joram Schrijver | |
With the output port now properly implemented for Guile >= 2.2, this command works again. | |||
2020-06-07 | guile: fix printing of output to buffer (issue #1098) | Joram Schrijver | |
The support for Guile 2.2 did not implement the custom port correctly, and did not configure it to be the default output port. This caused output from Guile to be printed straight to the TTY, breaking the WeeChat interface. Note that the port is unbuffered, so that code like (display "test") immediately results in output, without an explicit call to force-output. | |||
2020-06-07 | api: fix use of pointer after free in function key_unbind | Sébastien Helleu | |
2020-06-04 | irc: fix add of ignore with flags in regex, display full ignore mask in list ↵ | Sébastien Helleu | |
of ignores (closes #1518) | |||
2020-06-03 | irc: display account messages in buffers | Max Teufel | |
2020-06-02 | Add Alacritty title escape sequence support | Christian Duerr | |
2020-05-21 | core: add base 16/32/64 encoding/decoding in evaluation of expressions | Sébastien Helleu | |
2020-05-21 | core: move functions string_base_encode and string_base_decode from ↵ | Sébastien Helleu | |
plugin-api.c to wee-string.c | |||
2020-05-21 | core: return -1 in case of error in functions string_base16_decode and ↵ | Sébastien Helleu | |
string_base64_decode | |||
2020-05-20 | core: split function eval_replace_vars_cb into multiple functions | Sébastien Helleu | |
2020-05-19 | irc: do not remove spaces at the end of users messages received (closes #1513) | Sébastien Helleu | |
The regression was introduced in version 2.5 by commit 2b70d71aa1c891f2f251aa775cf239e5611576d5. | |||
2020-05-17 | trigger: add (void) before calls to trigger_callback_execute when the ↵ | Sébastien Helleu | |
returned value is ignored | |||
2020-05-17 | trigger: only return trigger's return code when condition evaluates to true | Simmo Saan | |
2020-05-16 | Fix /window scroll_beyond_end when buffer has fewer lines than terminal height | Trygve Aaberge | |
2020-05-16 | core: update translations (closes #1245, closes #1257) | Sébastien Helleu | |
2020-05-16 | core: rename info_hashtable "gui_focus_info" to "focus_info" (issue #1257) | Sébastien Helleu | |
2020-05-16 | core: move creation of info_hashtable from gui-focus.c to plugin-api-info.c ↵ | Sébastien Helleu | |
(issue #1257) | |||
2020-05-16 | gui: make key optional in gui_focus_to_hashtable | Simmo Saan | |
2020-05-16 | gui: add gui_focus_info hashtable info (#1245) | Simmo Saan | |
2020-05-16 | core: add color in /buffer output for notification level, update ↵ | Sébastien Helleu | |
translations (issue #1505) | |||
2020-05-16 | core: Allow displaying notify level with /buffer notify | Trygve Aaberge | |
2020-05-16 | core: add bar items with nicklist groups and nicks/groups (closes #1506) | Sébastien Helleu | |
The bar item "buffer_nicklist_count" is now the number of displayed nicks only (not groups). New bar items: - "buffer_nicklist_count_groups": number of groups displayed - "buffer_nicklist_count_all": number of nicks and groups displayed | |||
2020-05-14 | core: force buffer property "time_for_each_line" to 0 for buffers with free ↵ | Sébastien Helleu | |
content (closes #1485) | |||
2020-05-12 | relay: increase default limits for IRC backlog options | Sébastien Helleu | |
Default value is changed for the following options: * relay.irc.backlog_max_minutes: from 1440 to 0 (unlimited) * relay.irc.backlog_max_number: from 256 to 1024 | |||
2020-05-10 | core: set default size for input bar to 0 (automatic) (issue #1498) | Sébastien Helleu | |
2020-05-10 | core: add default key alt-enter to insert a newline (issue #1498) | Sébastien Helleu | |
2020-05-10 | core: don't collapse consecutive newlines in lines displayed before the ↵ | Sébastien Helleu | |
first buffer is created | |||
2020-05-10 | core: Don't remove consecutive newlines when pasting | Trygve Aaberge | |
Relates to #1498 | |||
2020-05-10 | core: Don't collapse consecutive newlines in bar content | Trygve Aaberge | |
This allows blank lines to be displayed in the input bar when you input multiple consecutive newlines. Relates to #1498 | |||
2020-05-10 | core: properly display newlines in input for all buffers | Trygve 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-09 | irc: fix realname delimiter color in WHO/WHOX response | Simmo Saan | |
2020-05-09 | core: properly display newlines in input when multiline is enabled in buffer ↵ | Sébastien Helleu | |
(issue #984, issue #1063) | |||
2020-05-09 | core: 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-09 | api: use buffer pointer in argument "modifier_data" sent to weechat_print ↵ | Sébastien Helleu | |
modifier callback (closes #42) | |||
2020-05-08 | irc: reuse a buffer with wrong type "channel" when a private message is ↵ | Sébastien Helleu | |
received (closes #869) | |||
2020-05-08 | core: 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-07 | trigger: fix truncated trigger command with commands /trigger ↵ | Sébastien Helleu | |
input|output|recreate | |||
2020-05-05 | core: add include comparison operators in evaluation of expressions | Sé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-03 | exec: return NULL immediately if the task id is invalid | Sébastien Helleu | |
2020-05-03 | exec: fix use of same task id for different tasks (closes #1491) | Sébastien Helleu | |
2020-05-02 | relay: add "compression" in response to handshake command (weechat protocol) | Sébastien Helleu | |
The value can be "zlib" (default in relay) or "off". | |||
2020-05-01 | relay: fix slow send of data to clients when SSL is enabled | Sébastien Helleu | |
2020-04-28 | fifo: Open the fifo for writing too | Quentin Glidic | |
That will make it survive, avoiding the need to reopen it. Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net> | |||
2020-04-28 | relay: add command "completion" in weechat relay protocol (closes #1484) | Sébastien Helleu | |
2020-04-28 | core: remove obsolete comment | Sébastien Helleu | |
The completion context can be "GUI_COMPLETION_NULL" if there's no base word found (for example empty input). |