summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-11-12core: fix truncated text when pasting several long lines (bug #40210)Sebastien Helleu
2013-11-12doc: fix build of man page (add missing copy of file cmdline_options.xx.txt)Sebastien Helleu
2013-11-11core: add missing contributors in AUTHORSSebastien Helleu
2013-11-11core: update polish translationsKrzysztof Koroscik
2013-11-11doc: fix style for tables with asciidoc 8.6.9 (developer's guide)Sebastien Helleu
2013-11-11doc: fix warnings on build of man page with a2x 8.6.9Sebastien Helleu
The -D/--destination-dir displays a warning for non HTML doc (so for man page). So the man page is copied to the build directory before being built.
2013-11-09core: fix terminal title under screen/tmuxSebastien Helleu
2013-11-09core: rename option weechat.look.set_title to weechat.look.window_title ↵Sebastien Helleu
(evaluated string)
2013-11-09core: add infos "term_width" and "term_height"Sebastien Helleu
2013-11-09api: add support of infos with format `${info:name,arguments}` in function ↵Sebastien Helleu
string_eval_expression and command /eval
2013-11-09api: add support for C++ pluginsstfn
2013-11-09doc: add bar item "buffer_zoom" in user's guideSebastien Helleu
2013-11-09core: add bar item "buffer_zoom", add signals "buffer_{zoomed|unzoomed}" ↵Sebastien Helleu
(patch #8204) (patch from Nils Görs)
2013-11-09core: update translationsSebastien Helleu
2013-11-09xfer: load plugin even if options can not be read in xfer.conf (with warnings)Sebastien Helleu
2013-11-09script: load plugin even if options can not be read in script.conf (with ↵Sebastien Helleu
warnings)
2013-11-09rmodifier: remove unneeded warningSebastien Helleu
2013-11-09relay: load plugin even if options can not be read in relay.conf (with warnings)Sebastien Helleu
2013-11-09logger: load plugin even if options can not be read in logger.conf (with ↵Sebastien Helleu
warnings)
2013-11-09irc: load plugin even if options can not be read in irc.conf (with warnings)Sebastien Helleu
2013-11-09charset: remove unneeded warning, do not load plugin when options can not be ↵Sebastien Helleu
initialized
2013-11-09aspell: load plugin even if options can not be read in aspell.conf (with ↵Sebastien Helleu
warnings)
2013-11-09alias: remove unneeded warning, do not load plugin when options can not be ↵Sebastien Helleu
initialized
2013-11-09core: improve error message when a .conf file can not be read, add a second ↵Sebastien Helleu
warning about default values used
2013-11-09core: remove unneeded warning when read of sec.conf fails (another warning ↵Sebastien Helleu
is already displayed)
2013-11-09core: do not exit if read of sec.conf/weechat.conf failsSebastien Helleu
2013-11-09core: remove unneeded warning when read of weechat.conf fails (another ↵Sebastien Helleu
warning is already displayed)
2013-11-09core: display lines waiting for buffer on exit (in case of early exit)Sebastien Helleu
2013-11-09core: create .conf file with default options only if the file does not exist ↵Sebastien Helleu
(and not on read error with existing file)
2013-11-08core: add shared strings in ChangeLog for version 0.4.2Sebastien Helleu
2013-11-08core: fix highlight on action messages: skip the nick at beginning to ↵Sebastien Helleu
prevent highlight on it (bug #40516)
2013-11-07irc: fix groups in channel nicklist when reconnecting to a server that ↵Sebastien Helleu
supports more nick prefixes than the previously connected server
2013-11-07doc: add link to download page for remote interfaces (user's guide)Sebastien Helleu
2013-11-06core: use one line titles in AUTHORS/INSTALL/READMESebastien Helleu
2013-11-06core: use one line titles and less chars for delimited blocks/tables in ↵Sebastien Helleu
ChangeLog/NEWS
2013-11-05core: add default keys alt+home/end and alt+F11/F12 for xtermSebastien Helleu
2013-11-04doc: use one line titles and less chars for delimited blocks/tables in ↵Sebastien Helleu
asciidoc files
2013-11-03api: fix read of arrays in hdata functions hdata_<type> (bug #40354)Sebastien Helleu
2013-11-02doc: make script docgen.py compliant with PEP8, replace %-formatting with ↵Sebastien Helleu
.format()
2013-11-02core: update german translationsNils Görs
2013-11-02core: add support of italic text (requires ncurses >= 5.9 patch 20130831)Sebastien Helleu
2013-11-02core: use ncurses include path when compiling with cmakeSebastien Helleu
2013-11-02weercd.py: major code cleanup, full PEP8 compliance, replace %-formatting ↵Sebastien Helleu
with .format() All changes: - import the new division operator and the print function - replace the %-formatting with .format() - full PEP8 compliance - major code cleanup: new function send_cmd() to send an IRC command, split flood() function into many functions. The messages sent from a file (or stdin) are formatted with ".format(self=self)", so that attributes from class Client are replaced with their values. You can use for example these attributes: {self.nick} current client nick {self.name} the server name ('weercd') {self.version} the server version (version of weercd.py)
2013-10-27weercd.py: use argparse module to parse command line arguments, remove ↵Sebastien Helleu
config file The configuration file weercd.conf has been removed. Instead, default options can be set in an environment variable called "WEERCD_OPTIONS". A file with options can be used, then name must be given as option with a leading "@", for example: python weercd.py @args.txt The option "action" has been removed. Default behavior is still to flood the client. Actions "user" and "file" have been merged into a single option -f/--file, which accepts a file, or special value "-" to read stdin. The script now requires python >= 2.7 (because the argparse module is not available in python 2.6 and older versions).
2013-10-27irc: fix auto-switch to channel buffer when doing /join channel (without "#")Sebastien Helleu
2013-10-27core: remove version/date in ChangeLog/NEWS (let asciidoc set that with ↵Sebastien Helleu
attributes date/revision)
2013-10-27core: fix auto-apply of window layout in current window when option ↵Sebastien Helleu
irc.look.buffer_switch_autojoin is on
2013-10-26core: fix bind of keys in cursor/mouse context when key starts with "@" ↵Sebastien Helleu
(remove the warning about unsafe key)
2013-10-26doc: fix typos in color codes (developer's guide)Sebastien Helleu
2013-10-24doc: fix layout of relay protocol (HTML version) when it is printedSebastien Helleu