summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-07-17core: do nothing in "/window scroll_beyond_end" if the buffer has no linesSebastien Helleu
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-15core: remove obsolete reference to "key functions" in commentsSebastien Helleu
2013-07-13core: fix malloc(0) when building content of a bar using a filling with columnsSebastien Helleu
2013-07-13lua: fix interpreter used in API functions (bug #39470)Sebastien Helleu
2013-07-11xfer: add option xfer.look.pv_tagsSebastien Helleu
2013-07-11irc: add option irc.look.pv_tagsSebastien Helleu
2013-07-11core: sort config options by name in sourcesSebastien Helleu
2013-07-10core: fix char displayed at the intersection of three windows (bug #39331)Sebastien 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-02irc: fix error message on /invite without arguments (bug #39272)Sebastien Helleu
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-29core: fix display bugs with some UTF-8 chars that truncates messages displayedSebastien Helleu
Example of char causing problems: U+26C4 (snowman without snow)
2013-06-29irc: fix uninitialized variable "color" when hashing nickname to find colorSebastien Helleu
2013-06-29aspell: fix uninitialized variable "lang" when displaying list of installed ↵Sebastien Helleu
dictionaries
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-10core: remove extra space after empty prefix (when prefix for action, error, ↵Sebastien Helleu
join, network or quit is set to empty string) (bug #39218)
2013-06-09relay: add command "ping" in weechat protocol (task #12689)Sebastien Helleu
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-08irc: display a warning when the proxy set in a server does not existSebastien Helleu
2013-06-08core: add "proxy" infolist and hdataSebastien Helleu
2013-06-07aspell: add support of enchant library (patch #6858)Sebastien Helleu
Enchant is enabled only if the new option for cmake (or configure) is enabled: - for cmake: cmake -DENABLE_ENCHANT=ON - for configure: ./configure --enable-enchant
2013-06-05irc: add support of special variables $nick/$channel/$server in commands ↵Sebastien Helleu
/allchan and /allserv
2013-06-02irc: add option irc.look.nick_color_hash: hash algorithm to find nick color ↵Sebastien Helleu
(patch #8062)
2013-05-30core: fix random crash on mouse actions (bug #39094)Sebastien Helleu
2013-05-30relay: fix binding to an IP address (bug #39119)Mantas Mikulėnas
2013-05-29irc: fix multiple nicks in command /query (separated by commas): open one ↵Sebastien Helleu
buffer per nick
2013-05-28core: set options weechat.look.color_inactive_{buffer|window} to "on" by defaultSebastien Helleu
2013-05-27xfer: fix compilation error on OpenBSDSimon Kuhnle
Signed-off-by: Simon Kuhnle <Simon.Kuhnle@cs.fau.de>
2013-05-24core: fix compilation error when gnutls is not foundSebastien Helleu
2013-05-22xfer: fix compilation warningsSebastien Helleu
2013-05-22core: fix compilation warningsSebastien Helleu
2013-05-21Merge branch 'layout_infolist_hdata'Sebastien Helleu
2013-05-21core: fix line alignment when option weechat.look.buffer_time_format is set ↵Sebastien Helleu
to empty string A regression was introduced by commit 305175fb8c464a169e767a814f5c400154507e6f
2013-05-18irc: fix name of server buffer after /server rename (set name "server.name" ↵Sebastien Helleu
instead of "name")
2013-05-18relay: fix uncontrolled format string in redirection of irc commandsSebastien Helleu
2013-05-18irc: fix uncontrolled format string when sending unknown irc commands (if ↵Sebastien Helleu
option irc.network.send_unknown_commands is on)
2013-05-18irc: fix uncontrolled format string when sending ison command (for nicks ↵Sebastien Helleu
monitored by /notify)
2013-05-18api: do not display a warning by default when loading a script with a ↵Sebastien Helleu
license different from GPL
2013-05-15core: add variable "current_layout" in infolist "layout"Sebastien Helleu
2013-05-14core: add infolist "layout" and hdata "layout", "layout_buffer" and ↵Sebastien Helleu
"layout_window" (thanks to Nils Görs)
2013-05-14core: fix typo in commentSebastien Helleu
2013-05-12irc: fix refresh of nick in input bar when joining a new channel with op ↵Sebastien Helleu
status (bug #38969)
2013-05-11irc: remove tag "notify_private" from notices received before message 001Sebastien Helleu
This removes tag "notify_private" from notices like that (sent before message 001): :irc.network.com NOTICE nick :*** Spoofing your IP :irc.network.com NOTICE nick :*** You are exempt from K/G/X lines :irc.network.com NOTICE nick :*** You are exempt from user limits
2013-05-07python: fix crash when loading scripts with Python 3.x (patch #8044) (thanks ↵Sebastien Helleu
to isak)