summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2015-05-01core: fix compilation on CygwinSébastien Helleu
The header sys/select.h is now required for select() function.
2015-05-01core: add missing completions in command /inputSébastien Helleu
2015-05-01core: add signals "signal_sigterm" and "signal_sigquit" (closes #114)Sébastien Helleu
2015-04-30core: add comments after some #endifSébastien Helleu
2015-04-29irc: optimize search of a nick in nicklist (up to 3x faster)Sébastien Helleu
2015-04-26core: remove extra spaces in function gui_bar_item_default_mouse_statusSébastien Helleu
2015-04-26api: add support of environment variables in function ↵Sébastien Helleu
string_eval_expression() and command /eval (issue #388)
2015-04-26core: add support of full color option name in command /eval and API ↵Sébastien Helleu
function string_eval_expression()
2015-04-26api: add support of full color option name in function color()Sébastien Helleu
2015-04-25irc: fix color of new nick in nick changes messages when option ↵Sébastien Helleu
irc.look.color_nicks_in_server_messages is off
2015-04-25core: add environment variable WEECHAT_HOME in "weechat --help"Sébastien Helleu
2015-04-25core: rename function and argument to set home pathSébastien Helleu
2015-04-25Merge remote-tracking branch 'origin/pr/391'Sébastien Helleu
2015-04-25irc: fix crash when setting an invalid regex with "/list -re" during a /list ↵Sébastien Helleu
server response (closes #412)
2015-04-25core: display the welcome message immediately after the startup message, ↵Sébastien Helleu
move source code to weechat.c
2015-04-22core: remove WeeChat version from config files (closes #407)Sébastien Helleu
2015-04-19core: add options weechat.look.quote_{nick_prefix|nick_suffix|time_format} ↵Sébastien Helleu
to customize quoted messages in cursor mode (closes #403)
2015-04-19core: sort config options by name in source headersSébastien Helleu
2015-04-19api: add "_chat_line" (line pointer) in hashtable of hook_focusSébastien Helleu
2015-04-19core: add default keys of cursor mode in /help cursorSébastien Helleu
2015-04-19core: sort config options by name in sourcesSébastien Helleu
2015-04-18irc: remove compiler warning on isxdigitSébastien Helleu
2015-04-18irc: add support of SHA-256 and SHA-512 algorithms in server option ↵Sébastien Helleu
"ssl_fingerprint" (closes #281)
2015-04-18irc: move some #ifdef HAVE_GNUTLS around functionsSébastien Helleu
2015-04-18trigger: do not hook anything if the trigger is disabled (closes #405)Sébastien Helleu
2015-04-17core: Respect environment variable WEECHAT_HOMEKarthik K
If environment variable WEECHAT_HOME is set to a non-empty value, this is taken as the path for Weechat home directory. "--dir" command-line switch has higher precedence over this environment variable.
2015-04-17core: add a welcome message on first WeeChat run (closes #318)Sébastien Helleu
2015-04-14irc: add option "-noswitch" in command /query (closes #394)Sébastien Helleu
2015-04-13irc: fix display of PART messages on channels with +a (anonymous flag) ↵Sébastien Helleu
(closes #396) The purpose of the fix is to display any PART received on a channel, even if the nick is not found in the channel's nicklist (when channel is "+a", all PART are received from nick "anonymous").
2015-04-12core: add more intuitive buffer searching (closes #76)Simmo Saan
2015-04-11aspell: add bar item "aspell_suggest" in /help aspell (closes #390)Sébastien Helleu
2015-04-11core: add options weechat.look.word_chars_{highlight|input} (closes #55, ↵Sébastien Helleu
task #9459)
2015-03-30core: display a warning on startup if the locale can not be set (closes #373)Sébastien Helleu
2015-03-24core: add an example with a more complex regex in /help filterSébastien Helleu
2015-03-23irc: fix example using two servers in /help server (closes #371)Sébastien Helleu
2015-03-23javascript: update KokaKiwi emailKokaKiwi
2015-03-22trigger: hide password when messaging NickServ through default alias /m ↵Simmo Saan
(closes #367)
2015-03-22irc: fix freenode server names used in /help server (closes #365)Sébastien Helleu
2015-03-21ruby: fix crash on /plugin reload (closes #364)Sébastien Helleu
The call to ruby_init_loadpath() has been moved after ruby initializations, which fixes the crash on plugin reload. The errors during ruby initializations are now displayed (they were hidden). And the ruby_cleanup() is called again: it seems it does not crash any more (tested with Ruby 2.1.5).
2015-03-21core: allow "*" as plugin name in command /plugin reload to reload all ↵Sébastien Helleu
plugins with options
2015-03-19core: move definitions with version and license in root CMakeLists.txtSébastien Helleu
2015-03-18script: fix state of script plugins when list of scripts has not been downloadedSébastien Helleu
The problem happened when doing "/script load script.py" if the scripts list has not been downloaded (with "/script update"): WeeChat displays that python plugin is not loaded (which is wrong).
2015-03-15javascript: explicitely use v8 namespaceSébastien Helleu
2015-03-10script: add note about HTTPS in /help script.scripts.urlSébastien Helleu
2015-03-10core: update translationsSébastien Helleu
2015-03-08Merge branch 'javascript'Sébastien Helleu
2015-03-08javascript: fix compilation with old V8 libSébastien Helleu
2015-03-08javascript: add option "--disable-javascript" and V8 detection in autotoolsSébastien Helleu
2015-03-08javascript: fix name of source file in commentSébastien Helleu
2015-03-08javascript: display v8 version in /debug libsSébastien Helleu