Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-05-01 | irc: add support of "dh-aes" SASL mechanism (patch #8020) | Elizabeth Myers | |
2013-04-28 | irc: fix duplicate nick completion when someone rejoins the channel with ↵ | Sebastien Helleu | |
same nick but a different case (bug #38841) | |||
2013-04-27 | script: do not search by license and author in /script search (thanks to ↵ | Sebastien Helleu | |
Nils Görs) | |||
2013-04-25 | core: fix typo in /help eval | Sebastien Helleu | |
2013-04-24 | core: reset scroll in window before zooming on a merged buffer (bug #38207) | Sebastien Helleu | |
2013-04-23 | irc: add support of UHNAMES (capability "userhost-in-names") (task #9353) | Sebastien Helleu | |
2013-04-21 | relay: fix typo in error displayed by command /relay del | Sebastien Helleu | |
2013-04-21 | irc: add tag "irc_nick_back" for messages displayed in private buffer when a ↵ | Sebastien Helleu | |
nick is back on server (task #12576) | |||
2013-04-21 | api: add new function hdata_search | Sebastien Helleu | |
2013-04-20 | ruby: fix crash in function hdata_move | Sebastien Helleu | |
2013-04-20 | guile: fix crash in function hdata_move | Sebastien Helleu | |
2013-04-18 | api: add property "completion_freeze" for function buffer_set: do not stop ↵ | Sebastien Helleu | |
completion when command line is updated | |||
2013-04-12 | api: fix connection to servers with hook_connect on OS X (bug #38496) | Sebastien Helleu | |
2013-04-12 | core: do not force weechat_quit to 0 in main loop, so that a /quit issued ↵ | Sebastien Helleu | |
before main loop is working | |||
2013-04-10 | irc: fix crash on command "/allchan /close" | Sebastien Helleu | |
2013-03-29 | core: use layout saved when option weechat.look.save_layout_on_exit is ↵ | Sebastien Helleu | |
enabled (so it is automatically restored when WeeChat restarts) | |||
2013-03-29 | core: fix uninitialized variable when saving layout for windows in upgrade | Sebastien Helleu | |
2013-03-25 | xfer: add option xfer.file.auto_accept_nicks (patch #7962) | Andrew Potter | |
2013-03-25 | fifo: remove #define MAX_PATH (now done in weechat-plugin.h) | Sebastien Helleu | |
2013-03-25 | script: fix compilation on GNU/Hurd (patch #7977) (thanks to Andrew Potter) | Sebastien Helleu | |
PATH_MAX is now defined in weechat-plugin.h (if not defined, for example on GNU/Hurd), so that all plugins can use it. | |||
2013-03-24 | lua: remove use of functions for API constants | Sebastien Helleu | |
2013-03-24 | irc: add option irc.look.display_join_message (task #10895) | Sebastien Helleu | |
2013-03-24 | ruby: fix typo in comment | Sebastien Helleu | |
2013-03-22 | ruby: fix crash with Ruby 2.0: use one array for the last 6 arguments of ↵ | Sebastien Helleu | |
function config_new_option (bug #31050) | |||
2013-03-22 | irc: fix default completion (like nicks) in commands /msg, /notice, /query ↵ | Sebastien Helleu | |
and /topic | |||
2013-03-21 | irc: fix prefix color for nick when the prefix is not in ↵ | Sebastien Helleu | |
irc.color.nick_prefixes: use default color (key "*") Problem was happening on a server which has "PREFIX=(Yqaohv)!~&@%+". Users with prefix "!" were displayed as lightred (color for "~") instead of lightblue (default key "*"). When a prefix was not found, WeeChat was looping on other prefixes (in order). Now if color is not found, WeeChat uses immediately the fallback color. | |||
2013-03-17 | irc: add option irc.look.pv_buffer: automatically merge private buffers ↵ | Sebastien Helleu | |
(optionally by server) (task #11924) | |||
2013-03-17 | core: fix refresh of item "completion" (bug #38214) (patch from Nils Görs) | Sebastien Helleu | |
The item is now cleared after any action that is changing content of command line and after switch of buffer. | |||
2013-03-17 | scripts: create directories (language and language/autoload) on each action ↵ | Sebastien Helleu | |
(install/remove/autoload), just in case they have been removed (bug #38473) | |||
2013-03-17 | script: create "script" directory on each action (just in case it has been ↵ | Sebastien Helleu | |
removed) (bug #38472) | |||
2013-03-17 | relay: rename compression "gzip" to "zlib" (compression is zlib, not gzip) ↵ | Sebastien Helleu | |
(thanks to Dominik Honnef) | |||
2013-03-17 | rmodifier: add info about "groups" in /help rmodifier | Sebastien Helleu | |
2013-03-17 | core: fix typos in many comments and some strings | Sebastien Helleu | |
2013-03-17 | core: add support of multiple layouts (task #11274) | Sebastien Helleu | |
2013-03-13 | lua: fix crash on stack overflow: call lua_pop() for values returned by lua ↵ | Sebastien Helleu | |
functions (bug #38510) | |||
2013-03-13 | relay: add missing "id" in raw messages sent to clients when compression is ↵ | Sebastien Helleu | |
off (weechat protocol) | |||
2013-03-13 | relay: add negative numbers (integer: -123456 and long: -1234567890L) in ↵ | Sebastien Helleu | |
command "test" (weechat protocol) | |||
2013-03-12 | irc: rename option irc.network.lag_disconnect to irc.network.lag_reconnect, ↵ | Sebastien Helleu | |
value is now a number of seconds | |||
2013-03-11 | api: fix bug in string_match when mask begins and ends with "*" | Sebastien Helleu | |
The bug was string_match returning 0 (instead of 1) if mask begins and ends with "*" and if string and mask have same length (except both "*") with same content: string_match("abc", "*abc*", 0) == 0 // BUG: it should return 1 string_match("abcd", "*abc*", 0) == 1 // OK | |||
2013-03-10 | script: fix typo in /help script.scripts.autoload | Sebastien Helleu | |
2013-03-10 | alias: mention local variables of buffer in /help alias | Sebastien Helleu | |
2013-03-09 | relay: add message "_nicklist_diff" (differences between old and current ↵ | Sebastien Helleu | |
nicklist) This is an experimental feature, that must be explicitely enabled by clients (for weechat protocol) in the init command with option "nicklistdiff", for example: init password=mypasswd,nicklistdiff=1 This option will be removed when clients will handle nicklist diff. | |||
2013-03-08 | core: add signals and hsignals for nicklist events | Sebastien Helleu | |
New signals: nicklist_group_removing and nicklist_nick_removing. New hsignals: nicklist_group_added, nicklist_nick_added, nicklist_group_removing, nicklist_nick_removing, nicklist_group_changed, nicklist_nick_changed. | |||
2013-03-07 | api: allow hashtable with keys that are not strings in function ↵ | Sebastien Helleu | |
hashtable_add_to_infolist | |||
2013-03-03 | core: add count for groups, nicks, and total in nicklist | Sebastien Helleu | |
2013-03-02 | core: optimize function nicklist_remove_all (don't remove and create again ↵ | Sebastien Helleu | |
"root" group) | |||
2013-03-01 | xfer: fix typo in comment | Sebastien Helleu | |
2013-02-28 | xfer: fix freeze of DCC file received: use select() to read socket and if an ↵ | Sebastien Helleu | |
ACK send fails, silently ignore and disable ACK (except the last) | |||
2013-02-26 | xfer: fix freeze of DCC file received: use non-blocking socket after ↵ | Sebastien Helleu | |
connection to sender and ensure the ACK is properly sent (bug #38340) | |||
2013-02-26 | irc: fix conversion of mask to regex in ignore | Sebastien Helleu | |