summaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2013-07-20core: add CA_FILE option in cmake and configure to setup default value of ↵Sebastien Helleu
option weechat.network.gnutls_ca_file (task #12725)
2013-07-20core: use "/dev/null" for stdin in hook_process instead of closing stdin ↵Sebastien Helleu
(bug #39538)
2013-07-20Merge branch 'scroll-beyond-end'Sebastien Helleu
2013-07-20core: replace obsolete INCLUDES by AM_CPPFLAGS in files Makefile.amSebastien Helleu
2013-07-20core: add options weechat.look.hotlist_prefix and ↵Sebastien Helleu
weechat.look.hotlist_suffix (task #12730) (patch from Nils Görs)
2013-07-17core: add option "scroll_beyond_end" for command /window (task #6745)Sebastien Helleu
2013-07-15core: add option weechat.look.key_bind_safeSebastien Helleu
2013-07-11core: sort config options by name in sourcesSebastien Helleu
2013-07-08core: fix crash in evaluation of expression when reading a string in hdata ↵Sebastien Helleu
with a NULL value (bug #39419)
2013-07-05core: add completion "-quit" for command /upgradeSebastien Helleu
A "-dummy" option has been added too, just to prevent accidental completion with "-quit" (which is the first option completed). Thanks to stfn for initial patch.
2013-07-02core: add missing period in /help upgradeSebastien Helleu
2013-06-29core: move test of invalid UTF-8 char length from gui-chat.c to wee-utf8.cSebastien 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-06-08core: add option weechat.network.proxy_curl (task #12651)Sebastien Helleu
2013-06-08core: add options for Curl >= 7.25Sebastien Helleu
2013-06-08core: add "proxy" infolist and hdataSebastien Helleu
2013-05-28core: set options weechat.look.color_inactive_{buffer|window} to "on" by defaultSebastien Helleu
2013-05-24core: fix compilation error when gnutls is not foundSebastien Helleu
2013-05-22core: fix compilation warningsSebastien Helleu
2013-05-03core: add options weechat.look.prefix_align_more_after and ↵Sebastien Helleu
weechat.look.prefix_buffer_align_more_after
2013-04-29core: make nick prefix/suffix dynamic (move options from irc plugin to core, ↵Sebastien Helleu
add logger options) (bug #37531)
2013-04-25core: fix typo in /help evalSebastien Helleu
2013-04-21api: add new function hdata_searchSebastien Helleu
2013-04-12api: fix connection to servers with hook_connect on OS X (bug #38496)Sebastien Helleu
2013-03-29core: fix uninitialized variable when saving layout for windows in upgradeSebastien Helleu
2013-03-25script: 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-17core: fix typos in many comments and some stringsSebastien Helleu
2013-03-17core: add support of multiple layouts (task #11274)Sebastien Helleu
2013-03-11api: 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-07api: allow hashtable with keys that are not strings in function ↵Sebastien Helleu
hashtable_add_to_infolist
2013-02-26api: fix function string_mask_to_regex: escape all special chars used in ↵Sebastien Helleu
regex (bug #38398)
2013-02-17core: allow read of array in hdata without using indexSebastien Helleu
2013-02-14core: add option "dirs" for command /debugSebastien Helleu
2013-02-01core: add info about doc and function to read in /help ↵Sebastien Helleu
weechat.completion.default_template
2013-01-29core: add "/debug tags" in /help filterNils Görs
2013-01-26core: use size of 32 for hashtables (instead of 4, 8 or 16)Sebastien Helleu
A size of 32 will use a little more memory but will reduce collisions in key hashs, and then length of linked lists inside hash structure (faster search in hashtable).
2013-01-26core: use default hash/comparison callback for keys of type ↵Sebastien Helleu
integer/pointer/time in hashtable
2013-01-21core: remove obsolete/unneeded check of headers and functions in cmake and ↵Sebastien Helleu
configure
2013-01-18core: fix infinite loop when a regex gives an empty match (bug #38112)Sebastien Helleu
2013-01-17core: add git version in backtrace and log fileSebastien Helleu
2013-01-14core: fix typo in commentSebastien Helleu
2013-01-14core: fix click in item "buffer_nicklist" when nicklist is a root bar (bug ↵Sebastien Helleu
#38080) Argument "*" is now silently ignored in command /window. When item "buffer_nicklist" is in a root bar, we use current window/buffer to find which nick has been clicked (same behaviour as callback used to display bar item "buffer_nicklist").
2013-01-10core: fix some copyright datesSebastien Helleu
2013-01-07core: fix memory leak in evaluation of expression when a logical operator ↵Sebastien Helleu
("&&" or "||") is found
2013-01-06api: allow return code WEECHAT_RC_OK_EAT in callbacks of hook_signal and ↵Sebastien Helleu
hook_hsignal (stop sending the signal immediately)
2013-01-04core: fix compilation on OpenBSD (bug #38022)Simon Kuhnle
File "sys/uio.h" needs to be included explicitly for use of "struct iovec" on OpenBSD. Signed-off-by: Simon Kuhnle <simon@blarzwurst.de>
2013-01-04core: fix help of option weechat.color.separatorSebastien Helleu
2013-01-01core: update copyright datesSebastien Helleu
2012-12-25core: fix detection of command in input: a single command char is considered ↵Nils Görs
as a command (API function "string_input_for_bufer")