[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Weechat-cvs] [SCM] Fast, light and extensible chat client branch, maste
From: |
Sebastien Helleu |
Subject: |
[Weechat-cvs] [SCM] Fast, light and extensible chat client branch, master, updated. v0.4.1-141-g2dff60d |
Date: |
Sun, 04 Aug 2013 10:22:26 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Fast, light and extensible chat client".
The branch, master has been updated
via 2dff60d7f832fbb65cd6390a1ef69e8d36a58ce9 (commit)
via 8ca36552eaa5fcdb2b82961dee0fa81ed69fe2bb (commit)
via f486b84134a86bd58ce9427afd1dbf652d48964c (commit)
via 234c7506ad28d25c1b9eb833eb1e454f17e118d7 (commit)
via 6ea81f4c8c1067471f50c936ed27e013ce50f222 (commit)
via dc878c5b69d498e3edb225e1997455510579deed (commit)
via b94a1ce59baa99e2076c83d82f25cbe5d9a7c19b (commit)
from 43e3ff3b1a42a6516c53d175c96f58df059f324f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 2dff60d7f832fbb65cd6390a1ef69e8d36a58ce9
Author: Sebastien Helleu <address@hidden>
Date: Sun Aug 4 12:21:47 2013 +0200
core: replace "behaviour" by "behavior"
commit 8ca36552eaa5fcdb2b82961dee0fa81ed69fe2bb
Author: Sebastien Helleu <address@hidden>
Date: Sun Aug 4 12:18:47 2013 +0200
core: change color format for options from `${xxx}` to `${color:xxx}`
Options affected:
- weechat.look.buffer_time_format
- weechat.look.prefix_action
- weechat.look.prefix_error
- weechat.look.prefix_join
- weechat.look.prefix_network
- weechat.look.prefix_quit
commit f486b84134a86bd58ce9427afd1dbf652d48964c
Author: Sebastien Helleu <address@hidden>
Date: Sun Aug 4 11:14:51 2013 +0200
core: fix asciidoc formatting in ChangeLog
commit 234c7506ad28d25c1b9eb833eb1e454f17e118d7
Author: Sebastien Helleu <address@hidden>
Date: Sun Aug 4 10:16:43 2013 +0200
doc: remove option ENABLE_DEMO for cmake in user's guide (demo plugin has
been removed)
commit 6ea81f4c8c1067471f50c936ed27e013ce50f222
Author: Sebastien Helleu <address@hidden>
Date: Sun Aug 4 10:09:53 2013 +0200
api: add support of colors with format "${color:xxx}" in function
string_eval_expression and command /eval
commit dc878c5b69d498e3edb225e1997455510579deed
Author: Sebastien Helleu <address@hidden>
Date: Sun Aug 4 08:56:56 2013 +0200
api: add argument "options" in function string_eval_expression, add option
"-c" for command /eval (to evaluate a condition)
commit b94a1ce59baa99e2076c83d82f25cbe5d9a7c19b
Author: Sebastien Helleu <address@hidden>
Date: Sat Aug 3 22:11:04 2013 +0200
doc: fix typo in examples for function bar_new (plugin API reference)
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 9 ++-
NEWS | 29 ++++++-
doc/de/autogen/user/weechat_commands.txt | 88 ++++++++++---------
doc/de/autogen/user/weechat_options.txt | 12 ++--
doc/de/weechat_user.de.txt | 3 -
doc/en/autogen/user/weechat_commands.txt | 36 ++++----
doc/en/autogen/user/weechat_options.txt | 12 ++--
doc/en/weechat_plugin_api.en.txt | 38 ++++++---
doc/en/weechat_user.en.txt | 3 -
doc/fr/autogen/user/weechat_commands.txt | 36 ++++----
doc/fr/autogen/user/weechat_options.txt | 12 ++--
doc/fr/weechat_plugin_api.fr.txt | 38 ++++++---
doc/fr/weechat_user.fr.txt | 3 -
doc/it/autogen/user/weechat_commands.txt | 90 ++++++++++---------
doc/it/autogen/user/weechat_options.txt | 12 ++--
doc/it/weechat_plugin_api.it.txt | 39 ++++++---
doc/it/weechat_user.it.txt | 3 -
doc/ja/autogen/user/weechat_commands.txt | 88 ++++++++++---------
doc/ja/autogen/user/weechat_options.txt | 12 ++--
doc/ja/weechat_user.ja.txt | 3 -
po/cs.po | 71 ++++++++++-----
po/de.po | 78 +++++++++++-----
po/es.po | 71 ++++++++++-----
po/fr.po | 141 ++++++++++++++++++------------
po/hu.po | 70 ++++++++++-----
po/it.po | 78 +++++++++++-----
po/ja.po | 78 +++++++++++-----
po/pl.po | 78 +++++++++++-----
po/pt_BR.po | 71 ++++++++++-----
po/ru.po | 70 ++++++++++-----
po/tr.po | 70 ++++++++++-----
po/weechat.pot | 70 ++++++++++-----
src/core/wee-command.c | 118 ++++++++++++++++---------
src/core/wee-config.c | 33 ++++---
src/core/wee-eval.c | 137 ++++++++++++++++++++++-------
src/core/wee-eval.h | 3 +-
src/core/wee-hdata.c | 20 ++++-
src/core/wee-string.c | 8 +-
src/gui/gui-bar.c | 15 +++-
src/gui/gui-chat.c | 5 +-
src/gui/gui-color.c | 79 -----------------
src/gui/gui-color.h | 1 -
src/plugins/guile/weechat-guile-api.c | 17 +++-
src/plugins/irc/irc-protocol.c | 6 +-
src/plugins/irc/irc-server.c | 8 +-
src/plugins/lua/weechat-lua-api.c | 19 +++--
src/plugins/perl/weechat-perl-api.c | 13 ++-
src/plugins/python/weechat-python-api.c | 16 +++-
src/plugins/ruby/weechat-ruby-api.c | 20 +++-
src/plugins/script/script-repo.c | 2 +-
src/plugins/tcl/weechat-tcl-api.c | 13 ++-
src/plugins/weechat-plugin.h | 9 +-
52 files changed, 1265 insertions(+), 789 deletions(-)
hooks/post-receive
--
Fast, light and extensible chat client
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Weechat-cvs] [SCM] Fast, light and extensible chat client branch, master, updated. v0.4.1-141-g2dff60d,
Sebastien Helleu <=
- Prev by Date:
[Weechat-cvs] [SCM] Fast, light and extensible chat client branch, master, updated. v0.4.1-134-g43e3ff3
- Next by Date:
[Weechat-cvs] [SCM] Fast, light and extensible chat client branch, master, updated. v0.4.1-142-g3904431
- Previous by thread:
[Weechat-cvs] [SCM] Fast, light and extensible chat client branch, master, updated. v0.4.1-134-g43e3ff3
- Next by thread:
[Weechat-cvs] [SCM] Fast, light and extensible chat client branch, master, updated. v0.4.1-142-g3904431
- Index(es):