Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-12-08 | core: remove option on /unset of plugin description option ↵ | Sebastien Helleu | |
(plugins.desc.xxx) (bug #40768) | |||
2013-12-08 | irc: don't return a default ban mask if option is not set or if host is not ↵ | Sebastien Helleu | |
found | |||
2013-12-07 | irc: rename option irc.look.ban_mask_default to irc.network.ban_mask_default | Sebastien Helleu | |
2013-12-07 | irc: add option irc.look.ban_mask_default (bug #26571) | Sebastien Helleu | |
2013-12-07 | core: fix typos in french translation of /help ban | Sebastien Helleu | |
2013-12-07 | irc: improve /help of command/command_delay/autojoin options in servers | Sebastien Helleu | |
2013-12-07 | core: use first gap for new buffer only if the buffer has no layout number | Sebastien Helleu | |
2013-12-07 | core: add note about new option "irc.network.lag_max" in NEWS | Sebastien Helleu | |
2013-12-07 | core: add option weechat.look.buffer_position | Sebastien Helleu | |
The value of option can be: - "end": buffer is added after the end of list (number = last number + 1) - "first_gap": buffer is added at first number available in the list (after the end of list if no number is available) | |||
2013-12-06 | irc: add option irc.network.lag_max | Sebastien Helleu | |
2013-12-06 | doc: update auto-generated files with hdata | Sebastien Helleu | |
2013-12-05 | irc: fix ignore on a host without nick | Sebastien Helleu | |
2013-12-04 | doc: add missing property "print_hooks_enabled" in function buffer_set ↵ | Sebastien Helleu | |
(plugin API reference) | |||
2013-12-04 | core: add buffer property "day_change" to hide messages for the day change ↵ | Sebastien Helleu | |
in specific buffers | |||
2013-12-04 | irc: add comments about irc color codes in messages | Sebastien Helleu | |
2013-12-04 | irc: remove function irc_color_decode_for_user_entry | Sebastien Helleu | |
Since commits d03eb52d4992c46b01c47d076ae5ef5aa68be10c and 0c48b7ab8bbd4b5b2f5bb73f3e96930091fa7ead, the IRC color codes are the same in input line and messages, so the function irc_color_decode_for_user_entry is not needed any more. It was used only to decode colors when completing the command /topic (with the channel topic). | |||
2013-12-02 | core: use syntax key[xxx] for key bindings in ChangeLog and NEWS | Sebastien Helleu | |
2013-12-02 | doc: use syntax key[xxx] for key bindings in quickstart guide | Sebastien Helleu | |
2013-12-02 | doc: replace @k(xxx) by key[xxx] for key bindings in docs | Sebastien Helleu | |
The new syntax is more readable in source files (same result in HTML docs). | |||
2013-12-01 | core: replace default key ctrl+"c", "u" by ctrl+"c", "_" for underlined text ↵ | Sebastien Helleu | |
in messages | |||
2013-12-01 | irc: use color code 0x1F (ctrl-_) for underlined text in input line (same ↵ | Sebastien Helleu | |
code as messages) (bug #40756) | |||
2013-12-01 | core: replace default key ctrl+"c", "r" by ctrl+"c", "v" for reverse video ↵ | Sebastien Helleu | |
in messages | |||
2013-12-01 | irc: use color code 0x16 (ctrl-V) for reverse video in messages | Sebastien Helleu | |
Other clients are using 0x16, and not 0x12 that was the default in WeeChat (which was able to decode both 0x12 and 0x16). Now the 0x12 is not decoded and does not make reverse video any more. | |||
2013-12-01 | irc: check that string is not NULL in functions ↵ | Sebastien Helleu | |
irc_color_{decode,decode_for_user_entry,encode} | |||
2013-12-01 | core: add missing access to hdata "buffer_visited" | Sebastien Helleu | |
2013-12-01 | core: fix random crash when closing a buffer | Sebastien Helleu | |
The problem happened because we used a pointer to a "struct t_gui_buffer_visited" for the switch to another buffer, when the buffer is closed. This is executed in all windows displaying the buffer, but on each switch to buffer, the visited buffers are updated and therefore the address can change. The pointer becomes invalid, and WeeChat still uses it on next windows for the buffer switch. It happened rarely because the visited buffer is freed and allocated immediately after, so the address is often the same in memory. Thanks to silverd for the tests on OS X to track the problem. | |||
2013-11-30 | irc: use option irc.network.colors_send (instead of receive) when displaying ↵ | Sebastien Helleu | |
messages sent by commands /away, /me, /msg, /notice, /query | |||
2013-11-30 | core: fix command /buffer renumber | Sebastien Helleu | |
2013-11-30 | core: fix unmerge of buffer | Sebastien Helleu | |
2013-11-30 | core: add limits for buffers (max 10000 buffers opened, number of a buffer: ↵ | Sebastien Helleu | |
between 1 and INT_MAX - 10000) | |||
2013-11-30 | core: fix crash when moving buffer with only one buffer (core buffer) | Sebastien Helleu | |
2013-11-30 | core: add bar item "buffer_last_number" | Sebastien Helleu | |
2013-11-30 | core: add variable "gui_buffers_count", use it in bar item "buffer_count" | Sebastien Helleu | |
Now the bar item "buffer_count" displays the number of opened buffers (each merged buffer counts 1). | |||
2013-11-30 | aspell: fix detection of nicks when there are non-alphanumeric chars around ↵ | Sebastien Helleu | |
and in private buffers | |||
2013-11-30 | aspell: fix detection of nicks when there is nick completer at the end | Sebastien Helleu | |
2013-11-30 | aspell: fix detection of nicks with non-alphanumeric chars | Sebastien Helleu | |
2013-11-30 | core: add option weechat.look.buffer_auto_renumber | Sebastien Helleu | |
New option: weechat.look.buffer_auto_renumber, boolean which is on by default, so the behavior is the same: no gap is allowed in numbers, they start at number 1 and they are auto-renumbered after each command like /buffer move, /buffer merge, ... A new option "renumber" has been added in command /buffer, to renumber a range of buffers (or all). Changes when the option weechat.look.buffer_auto_renumber is off: - command "/buffer move": - the current number will be left free for use, and the target number can be any number >= 1 (possibly higher than the current last buffer number) - the value can be "-" (which moves the buffer to number 1) or "+" (which moves the buffer to the end, ie last number + 1) - command "/buffer swap": - now the buffers are swapped in the list without being "moved" - comand "/buffer [+/-]N": - it is now working with gaps in buffer numbers - command "/buffer merge": - it can now merge a group of merged buffers into another buffer (or buffers merged themselves) - layout can restore buffer numbers with gaps in numbers | |||
2013-11-30 | irc: fix crash when setting a wrong value in server option "ssl_priorities" | Sebastien Helleu | |
The bug was introduced by commit 2305c95db08a214dba68e771c9bbabc51ca7d055 | |||
2013-11-28 | core: revert check of layout when switching to a buffer using value "auto" ↵ | Sebastien Helleu | |
in buffer_set This reverts commits 14cf7bd20fb3f00b18343464c175a0c4e3556149 and 262dff4b87ebf14a11fe83899fe168bc5a72ffe6. The initial fix was for a problem with irc autojoin and layout: the current window has not appropriate buffer (as defined in layout) if it is not the latest channel in "autojoin" option. So the way to fix this problem is to set the value of option irc.look.buffer_switch_autojoin to off. | |||
2013-11-28 | python: fix load of scripts with python >= 3.3 | Sebastien Helleu | |
2013-11-26 | irc: suggest lower values for option irc.server.xxx.ssl_dhkey_size after SSL ↵ | Sebastien Helleu | |
error GNUTLS_E_DH_PRIME_UNACCEPTABLE | |||
2013-11-24 | core: do not update terminal title on startup if option ↵ | Sebastien Helleu | |
weechat.look.window_title is empty | |||
2013-11-24 | doc: update german user's guide | Nils Görs | |
2013-11-23 | irc: fix memory leak when checking the value of ssl_priorities option in servers | Sebastien Helleu | |
2013-11-23 | core: free secured data on exit | Sebastien Helleu | |
2013-11-23 | core: free nicklist data (for hsignal) on exit | Sebastien Helleu | |
2013-11-23 | irc: fix memory leak when a channel is deleted | Sebastien Helleu | |
2013-11-23 | doc: update description for value "auto" in function buffer_set with ↵ | Sebastien Helleu | |
property "display" (plugin API reference) Since commit 14cf7bd20fb3f00b18343464c175a0c4e3556149, the value "auto" will switch buffer only if there is no layout defined for the current window, or if the buffer displayed is NOT the buffer in the layout (so if the buffer is defined in the layout, no switch). | |||
2013-11-22 | core: fix crash on "/buffer close name" when the buffer is not found | Sebastien Helleu | |
2013-11-22 | core: fix crash on /buffer close core.weechat | Sebastien Helleu | |