Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2013-11-20 | core: update german translations | Nils Görs | |
2013-11-20 | doc: use asciidoc attribute for date of docs (fix cmake warning) | Sebastien Helleu | |
CMake was displaying some warnings about a space in argument used for asciidoc command: -a date=`date "+%F"` Warning displayed: CMake Warning (dev) in doc/en/CMakeLists.txt: Syntax Warning in cmake code at /path/to/doc/en/CMakeLists.txt:41:82 Argument not separated from preceding token by whitespace. This warning is for project developers. Use -Wno-dev to suppress it. | |||
2013-11-19 | core: fix current color/background after reset of color | Sebastien Helleu | |
Bug was visible with such colored string in IRC: ^Cc7,5 one ^Cc ^Cc7 two Before the fix, the word "two" had a red background. The "^Cc" should reset both color + background, so now it does not have a background any more. | |||
2013-11-19 | guile: disable guile gmp allocator (fix crash on unload of relay plugin) ↵ | Pierre Carru | |
(bug #40628) | |||
2013-11-18 | scripts: use #ifdef to check if versions are defined in signal "debug_libs" | Sebastien Helleu | |
2013-11-18 | core: use #ifdef to check if versions are defined in signal "debug_libs" | Sebastien Helleu | |
2013-11-18 | core: remove "v" before versions displayed by /debug libs | Sebastien Helleu | |
2013-11-17 | scripts: display lib version on signal "debug_libs" | Sebastien Helleu | |
2013-11-17 | aspell: display aspell/enchant version on signal "debug_libs" | Sebastien Helleu | |
2013-11-17 | core: add option "libs" for command /debug, add signal "debug_libs" | Sebastien Helleu | |
2013-11-17 | doc: update auto-generated files with WeeChat options | Sebastien Helleu | |
2013-11-17 | core: remove obsolete signals "debug_buffer" and "debug_windows" | Sebastien Helleu | |
2013-11-15 | core: optimize loop when closing several buffers with command /buffer close ↵ | Sebastien Helleu | |
n1-n2 | |||
2013-11-15 | core: fix memory leak when n2 is not a valid number in command /buffer close ↵ | Sebastien Helleu | |
n1-n2 | |||
2013-11-14 | core: apply color attributes when clearing a window (patch #8236) (patch ↵ | Sebastien Helleu | |
from Tom Alsberg) | |||
2013-11-13 | core: set option weechat.look.paste_bracketed to "on" by default | Sebastien Helleu | |
2013-11-12 | core: fix truncated text when pasting several long lines (bug #40210) | Sebastien Helleu | |
2013-11-12 | doc: fix build of man page (add missing copy of file cmdline_options.xx.txt) | Sebastien Helleu | |
2013-11-11 | core: add missing contributors in AUTHORS | Sebastien Helleu | |
2013-11-11 | core: update polish translations | Krzysztof Koroscik | |
2013-11-11 | doc: fix style for tables with asciidoc 8.6.9 (developer's guide) | Sebastien Helleu | |
2013-11-11 | doc: fix warnings on build of man page with a2x 8.6.9 | Sebastien Helleu | |
The -D/--destination-dir displays a warning for non HTML doc (so for man page). So the man page is copied to the build directory before being built. | |||
2013-11-09 | core: fix terminal title under screen/tmux | Sebastien Helleu | |
2013-11-09 | core: rename option weechat.look.set_title to weechat.look.window_title ↵ | Sebastien Helleu | |
(evaluated string) | |||
2013-11-09 | core: add infos "term_width" and "term_height" | Sebastien Helleu | |
2013-11-09 | api: add support of infos with format `${info:name,arguments}` in function ↵ | Sebastien Helleu | |
string_eval_expression and command /eval | |||
2013-11-09 | api: add support for C++ plugins | stfn | |
2013-11-09 | doc: add bar item "buffer_zoom" in user's guide | Sebastien Helleu | |
2013-11-09 | core: add bar item "buffer_zoom", add signals "buffer_{zoomed|unzoomed}" ↵ | Sebastien Helleu | |
(patch #8204) (patch from Nils Görs) | |||
2013-11-09 | core: update translations | Sebastien Helleu | |