Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-03-31 | core: add documentation on command line debug options (in --help and man pages) | Sébastien Helleu | |
Command line debug options are now documented: * --no-dlclose: do not call the function dlclose after plugins are unloaded * --no-gnutls: do not call the init and deinit functions of GnuTLS library * --no-gcrypt: do not call the init and deinit functions of Gcrypt library These options must not be used in production, they're for debug only and can be used with tools like Valgrind or electric-fence. | |||
2019-02-18 | core: fix compilation on Mac OS (closes #1308) | Sébastien Helleu | |
This adds the missing include "unistd.h" for function "mkdtemp" (required on Mac OS only). | |||
2019-01-01 | core: update copyright dates | Sébastien Helleu | |
2018-11-29 | core: use https for links to GNU GPL license | Sébastien Helleu | |
2018-11-17 | core: add command line option "-t" (or "--temp-dir") to create a temporary ↵ | Sébastien Helleu | |
WeeChat home (deleted on exit) | |||
2018-10-27 | core: split wee-secure.c into 3 files (secured data functions, buffer and ↵ | Sébastien Helleu | |
config) | |||
2018-09-06 | core: allow multiple options "-r" ("--run-command") in command line ↵ | Sébastien Helleu | |
arguments (closes #1248) | |||
2018-08-17 | core: add option "-P" (or "--plugins") to customize the plugins to load at ↵ | Sébastien Helleu | |
startup If given, the option replaces the option weechat.plugin.autoload. | |||
2018-05-19 | core: remove unneeded test on variable argv | Sébastien Helleu | |
2018-03-16 | core: quit WeeChat on ctrl-C (signal SIGINT) in headless mode | Sébastien Helleu | |
2018-03-11 | core: add binary weechat-headless to run WeeChat without interface (closes ↵ | Sébastien Helleu | |
#1120) The optional command line option "--daemon" runs WeeChat like a daemon (fork, new process group, file descriptors closed). | |||
2018-01-07 | core: fix some styles | Sébastien Helleu | |
2018-01-05 | core: update copyright dates | Sébastien Helleu | |
2017-08-10 | core: remove unneeded argument in call to string_fprintf | Sébastien Helleu | |
2017-07-22 | core: replace /iset by /fset in welcome message | Sébastien Helleu | |
2017-04-07 | core: remove duplicate util_catch_signal for SIGQUIT | arza | |
2017-01-01 | core: update copyright dates | Sébastien Helleu | |
2016-11-13 | core: fix deadlock when quitting after a signal is received (closes #32) | Sébastien Helleu | |
The code in signal handers (SIGHUP, SIGQUIT, SIGTERM) is moved into main loop, this hopefully fixes the deadlock when quitting after receiving one of these signals. The code in SIGWINCH signal handler is moved too (even if it shouldn't be a problem). | |||
2016-07-09 | core: rename function string_iconv_fprintf to string_fprintf | Sébastien Helleu | |
2016-01-01 | core: update copyright dates | Sébastien Helleu | |
2015-12-23 | core: free global variables at the very end | Sébastien Helleu | |
2015-12-23 | core: fix memory leak when using multiple "-d" or "-r" in command line arguments | Sébastien Helleu | |
2015-11-12 | core: add "tmux" and "tmux-256color" in supported $TERM values (closes #519) | Sébastien Helleu | |
2015-08-09 | core: fix long lines in weechat.c | Sébastien Helleu | |
2015-06-06 | core: add signal "signal_sighup" | Sébastien Helleu | |
2015-06-04 | core: replace "create" by "add" in messages and docs for IRC servers and proxies | Sébastien Helleu | |
2015-05-01 | core: add signals "signal_sigterm" and "signal_sigquit" (closes #114) | Sébastien Helleu | |
2015-04-30 | core: add comments after some #endif | Sébastien Helleu | |
2015-04-25 | core: add environment variable WEECHAT_HOME in "weechat --help" | Sébastien Helleu | |
2015-04-25 | core: rename function and argument to set home path | Sébastien Helleu | |
2015-04-25 | Merge remote-tracking branch 'origin/pr/391' | Sébastien Helleu | |
2015-04-25 | core: display the welcome message immediately after the startup message, ↵ | Sébastien Helleu | |
move source code to weechat.c | |||
2015-04-17 | core: Respect environment variable WEECHAT_HOME | Karthik 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-17 | core: add a welcome message on first WeeChat run (closes #318) | Sébastien Helleu | |
2015-03-30 | core: display a warning on startup if the locale can not be set (closes #373) | Sébastien Helleu | |
2015-01-01 | core: update copyright dates | Sébastien Helleu | |
2014-12-13 | core: use https for WeeChat URLs | Sébastien Helleu | |
2014-08-30 | core: add debug functions to measure time spent in code/functions | Sébastien Helleu | |
2014-08-03 | core: display warning on $TERM only if it doesn't start with "screen" (under ↵ | Sébastien Helleu | |
screen/tmux) | |||
2014-07-14 | core: do not exit WeeChat in weechat_end() (let the caller do that) | Sébastien Helleu | |
This is needed for automated tests, to exit with return code of tests. | |||
2014-07-14 | core: move main() function into Curses GUI | Sébastien Helleu | |
2014-07-14 | core: display a warning on startup if $TERM is not screen(-256color) under ↵ | Sébastien Helleu | |
screen/tmux The same warning is displayed with command "/debug term". | |||
2014-07-01 | core: remove "www" in weechat.org URLs | Sébastien Helleu | |
2014-06-07 | core: fix first comment line in weechat.c | Sébastien Helleu | |
2014-03-06 | core: fix recursive calls to function eval_expression | Sebastien Helleu | |
2014-01-21 | core: rename option weechat.look.save_layout_on_exit to ↵ | Sebastien Helleu | |
weechat.look.store_layout_on_exit, replace "save" by "store" for layouts | |||
2014-01-01 | core: update copyright dates | Sebastien Helleu | |
2013-11-23 | core: free secured data on exit | 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: do not exit if read of sec.conf/weechat.conf fails | Sebastien Helleu | |