summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-12-08core: remove option on /unset of plugin description option ↵Sebastien Helleu
(plugins.desc.xxx) (bug #40768)
2013-12-08irc: don't return a default ban mask if option is not set or if host is not ↵Sebastien Helleu
found
2013-12-07irc: rename option irc.look.ban_mask_default to irc.network.ban_mask_defaultSebastien Helleu
2013-12-07irc: add option irc.look.ban_mask_default (bug #26571)Sebastien Helleu
2013-12-07core: fix typos in french translation of /help banSebastien Helleu
2013-12-07irc: improve /help of command/command_delay/autojoin options in serversSebastien Helleu
2013-12-07core: use first gap for new buffer only if the buffer has no layout numberSebastien Helleu
2013-12-07core: add note about new option "irc.network.lag_max" in NEWSSebastien Helleu
2013-12-07core: add option weechat.look.buffer_positionSebastien 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-06irc: add option irc.network.lag_maxSebastien Helleu
2013-12-06doc: update auto-generated files with hdataSebastien Helleu
2013-12-05irc: fix ignore on a host without nickSebastien Helleu
2013-12-04doc: add missing property "print_hooks_enabled" in function buffer_set ↵Sebastien Helleu
(plugin API reference)
2013-12-04core: add buffer property "day_change" to hide messages for the day change ↵Sebastien Helleu
in specific buffers
2013-12-04irc: add comments about irc color codes in messagesSebastien Helleu
2013-12-04irc: remove function irc_color_decode_for_user_entrySebastien 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-02core: use syntax key[xxx] for key bindings in ChangeLog and NEWSSebastien Helleu
2013-12-02doc: use syntax key[xxx] for key bindings in quickstart guideSebastien Helleu
2013-12-02doc: replace @k(xxx) by key[xxx] for key bindings in docsSebastien Helleu
The new syntax is more readable in source files (same result in HTML docs).
2013-12-01core: replace default key ctrl+"c", "u" by ctrl+"c", "_" for underlined text ↵Sebastien Helleu
in messages
2013-12-01irc: use color code 0x1F (ctrl-_) for underlined text in input line (same ↵Sebastien Helleu
code as messages) (bug #40756)
2013-12-01core: replace default key ctrl+"c", "r" by ctrl+"c", "v" for reverse video ↵Sebastien Helleu
in messages
2013-12-01irc: use color code 0x16 (ctrl-V) for reverse video in messagesSebastien 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-01irc: check that string is not NULL in functions ↵Sebastien Helleu
irc_color_{decode,decode_for_user_entry,encode}
2013-12-01core: add missing access to hdata "buffer_visited"Sebastien Helleu
2013-12-01core: fix random crash when closing a bufferSebastien 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-30irc: use option irc.network.colors_send (instead of receive) when displaying ↵Sebastien Helleu
messages sent by commands /away, /me, /msg, /notice, /query
2013-11-30core: fix command /buffer renumberSebastien Helleu
2013-11-30core: fix unmerge of bufferSebastien Helleu
2013-11-30core: add limits for buffers (max 10000 buffers opened, number of a buffer: ↵Sebastien Helleu
between 1 and INT_MAX - 10000)
2013-11-30core: fix crash when moving buffer with only one buffer (core buffer)Sebastien Helleu
2013-11-30core: add bar item "buffer_last_number"Sebastien Helleu
2013-11-30core: 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-30aspell: fix detection of nicks when there are non-alphanumeric chars around ↵Sebastien Helleu
and in private buffers
2013-11-30aspell: fix detection of nicks when there is nick completer at the endSebastien Helleu
2013-11-30aspell: fix detection of nicks with non-alphanumeric charsSebastien Helleu
2013-11-30core: add option weechat.look.buffer_auto_renumberSebastien 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-30irc: fix crash when setting a wrong value in server option "ssl_priorities"Sebastien Helleu
The bug was introduced by commit 2305c95db08a214dba68e771c9bbabc51ca7d055
2013-11-28core: 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-28python: fix load of scripts with python >= 3.3Sebastien Helleu
2013-11-26irc: suggest lower values for option irc.server.xxx.ssl_dhkey_size after SSL ↵Sebastien Helleu
error GNUTLS_E_DH_PRIME_UNACCEPTABLE
2013-11-24core: do not update terminal title on startup if option ↵Sebastien Helleu
weechat.look.window_title is empty
2013-11-24doc: update german user's guideNils Görs
2013-11-23irc: fix memory leak when checking the value of ssl_priorities option in serversSebastien Helleu
2013-11-23core: free secured data on exitSebastien Helleu
2013-11-23core: free nicklist data (for hsignal) on exitSebastien Helleu
2013-11-23irc: fix memory leak when a channel is deletedSebastien Helleu
2013-11-23doc: 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-22core: fix crash on "/buffer close name" when the buffer is not foundSebastien Helleu
2013-11-22core: fix crash on /buffer close core.weechatSebastien Helleu