summaryrefslogtreecommitdiff
path: root/src/core/weechat.c
AgeCommit message (Collapse)Author
2017-04-07core: remove duplicate util_catch_signal for SIGQUITarza
2017-01-01core: update copyright datesSébastien Helleu
2016-11-13core: 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-09core: rename function string_iconv_fprintf to string_fprintfSébastien Helleu
2016-01-01core: update copyright datesSébastien Helleu
2015-12-23core: free global variables at the very endSébastien Helleu
2015-12-23core: fix memory leak when using multiple "-d" or "-r" in command line argumentsSébastien Helleu
2015-11-12core: add "tmux" and "tmux-256color" in supported $TERM values (closes #519)Sébastien Helleu
2015-08-09core: fix long lines in weechat.cSébastien Helleu
2015-06-06core: add signal "signal_sighup"Sébastien Helleu
2015-06-04core: replace "create" by "add" in messages and docs for IRC servers and proxiesSé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-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-25core: display the welcome message immediately after the startup message, ↵Sébastien Helleu
move source code to weechat.c
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-03-30core: display a warning on startup if the locale can not be set (closes #373)Sébastien Helleu
2015-01-01core: update copyright datesSébastien Helleu
2014-12-13core: use https for WeeChat URLsSébastien Helleu
2014-08-30core: add debug functions to measure time spent in code/functionsSébastien Helleu
2014-08-03core: display warning on $TERM only if it doesn't start with "screen" (under ↵Sébastien Helleu
screen/tmux)
2014-07-14core: 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-14core: move main() function into Curses GUISébastien Helleu
2014-07-14core: 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-01core: remove "www" in weechat.org URLsSébastien Helleu
2014-06-07core: fix first comment line in weechat.cSébastien Helleu
2014-03-06core: fix recursive calls to function eval_expressionSebastien Helleu
2014-01-21core: 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-01core: update copyright datesSebastien Helleu
2013-11-23core: free secured data on exitSebastien Helleu
2013-11-09core: rename option weechat.look.set_title to weechat.look.window_title ↵Sebastien Helleu
(evaluated string)
2013-11-09core: do not exit if read of sec.conf/weechat.conf failsSebastien Helleu
2013-11-09core: display lines waiting for buffer on exit (in case of early exit)Sebastien Helleu
2013-08-10core: add shared strings to reduce memory usageSebastien Helleu
Shared strings are stored in a hashtable with pointer for keys (values are not used). The key has a reference count + the string. The initial reference count is set to 1 and is incremented each time the same string is asked. When removing a shared string, the reference count is decremented. If it becomes 0, then the shared string is removed from the hashtable (and then the string is really destroyed).
2013-08-04core: optimize creation of hashtable "pointers" in eval_expression if ↵Sebastien Helleu
argument is NULL The hashtable is created on first call to eval_expression with pointers == NULL. On next calls, the hashtable is cleared, then used again. The hashtable is freed on exit.
2013-08-02Merge branch 'secured-data'Sebastien Helleu
2013-08-02core: rename binary and man page from "weechat-curses" to "weechat" (task ↵Sebastien Helleu
#11027) A symbolic link weechat-curses -> weechat is now created (by both cmake and configure), so that the /upgrade will work from an old version. However, if you upgrade from an old version, it is recommended to force the use of the new binary name with the command: `/upgrade /path/to/weechat` (replace the path accordingly).
2013-07-27core: add secured data with optional encryption in file sec.confSebastien Helleu
2013-06-28core: remove obsolete command line option -k/--keysSebastien Helleu
The user's guide is better to view WeeChat default keys.
2013-06-28core: update man page and add translations (in french, german, italian, and ↵Sebastien Helleu
japanese)
2013-03-17core: fix typos in many comments and some stringsSebastien Helleu
2013-03-17core: add support of multiple layouts (task #11274)Sebastien Helleu
2013-01-17core: add git version in backtrace and log fileSebastien Helleu
2013-01-01core: update copyright datesSebastien Helleu
2012-12-16core: add git version in build, display it in "weechat-curses --help" and ↵Sebastien Helleu
/version
2012-12-15core: move comments with description of C file to top of filesSebastien Helleu
2012-12-13core: reformat comments for functionsSebastien Helleu