Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-08-04 | core: check that line_data is not NULL in functions gui_line_tags_alloc and ↵ | Sébastien Helleu | |
gui_line_has_tag_no_filter | |||
2020-08-04 | core: rename functions to allocate/free lines | Sébastien Helleu | |
2020-07-31 | trigger: fix recursive calls to triggers using regex (closes #1546) | Sébastien Helleu | |
2020-07-21 | irc: add pointer "irc_nick" in hashtable sent to hook focus callback (closes ↵ | Simmo Saan | |
#1535) | |||
2020-07-20 | irc: allow to send text on buffers with commands /allchan, /allpv and /allserv | Sébastien Helleu | |
2020-07-20 | irc: evaluate command executed by commands /allchan, /allpv and /allserv ↵ | Sébastien Helleu | |
(closes #1536) The extra variables are now replaced (in addition to `$server`, `$channel` and `$nick`): - `${irc_server.xxx}`: variable xxx in server - `${irc_channel.xxx}`: variable xxx in channel | |||
2020-07-20 | trigger: check that tag "notify_none" is not present in message to run ↵ | Sébastien Helleu | |
command of default trigger beep (issue #1529) | |||
2020-07-20 | core: do not add line with highlight and tag "notify_none" to hotlist ↵ | Sébastien Helleu | |
(closes #1529) | |||
2020-07-07 | Add $weechat_sharedir/python for global python package import | Marco Sirabella | |
Related: #1461 Some scripts (eg weechat-matrix) ship directories that need to be imported from the script. Rather than globally installing the python packages to python's `site-packages` the directories can be installed alongside the script in `WEECHAT_SHAREDIR/python`. This change adds that directory to the `$PYTHONPATH` to import successfully. | |||
2020-06-30 | api: add pointer "_bar_window" in hashtable sent to hook focus callback ↵ | Sébastien Helleu | |
(closes #1450) | |||
2020-06-26 | relay: add missing field "notify_level" in message "_buffer_line_added" ↵ | Sébastien Helleu | |
(issue #1529) | |||
2020-06-21 | core: add bar option "color_bg_inactive" (issue #732) | Sébastien Helleu | |
2020-06-21 | irc: check that the first nick char is not a prefix char or chantype in ↵ | Sébastien Helleu | |
function irc_nick_is_nick | |||
2020-06-21 | irc: change default chantypes from "#&+!" to "#&" | Sébastien Helleu | |
The default chantypes was conflicting with irc_server_prefix_chars_default ("@+"). | |||
2020-06-20 | irc: add support of UTF8MAPPING, add support of optional server in info ↵ | Sébastien Helleu | |
"irc_is_nick" (closes #1528) | |||
2020-06-20 | irc: return NULL in info "irc_is_channel" if arguments is NULL or empty string | Sébastien Helleu | |
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 |