Mercurial > pidgin.yaz
changeset 24549:c3a211cea89f
propagate from branch 'im.pidgin.pidgin' (head 9287a75e196278c66cd6724dc8d30a471a029c27)
to branch 'im.pidgin.pidgin.openq' (head 52b673726ba47e370199600825aae32d47e76d6c)
author | SHiNE CsyFeK <csyfek@gmail.com> |
---|---|
date | Thu, 30 Oct 2008 12:43:27 +0000 |
parents | d971d5369b43 (diff) c06b85e1d020 (current diff) |
children | 6456d3fa7268 |
files | |
diffstat | 5 files changed, 25 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/qq/ChangeLog Thu Oct 30 05:41:19 2008 +0000 +++ b/libpurple/protocols/qq/ChangeLog Thu Oct 30 12:43:27 2008 +0000 @@ -1,3 +1,8 @@ +2008.10.30 - flos <lonicerae(at)gmail.com> + * Fixed a bug which made xgettext failed in buddy_info.c + * Fixed a bug in Makefile.am and Makefile.mingw + * Updated acknowledgement in qq.c + 2008.10.28 - flos <lonicerae(at)gmail.com> * Updated AUTHORS
--- a/libpurple/protocols/qq/Makefile.am Thu Oct 30 05:41:19 2008 +0000 +++ b/libpurple/protocols/qq/Makefile.am Thu Oct 30 12:43:27 2008 +0000 @@ -54,9 +54,13 @@ libqq_la_LDFLAGS = -module -avoid-version CURRENT_REVISION=$(shell \ - awk 'BEGIN {"grep node .hg_archival.txt" | getline rev; \ - rev=substr(rev,7,6); \ - print rev}') + if [ -e ./.hg_archival.txt ]; then \ + awk 'BEGIN {"grep node .hg_archival.txt" | getline rev; \ + rev=substr(rev,7,6); print rev}' > current_revision; \ + else \ + echo "!hg" > current_revision; \ + fi; \ + cat ./current_revision) if STATIC_QQ
--- a/libpurple/protocols/qq/Makefile.mingw Thu Oct 30 05:41:19 2008 +0000 +++ b/libpurple/protocols/qq/Makefile.mingw Thu Oct 30 12:43:27 2008 +0000 @@ -6,10 +6,16 @@ PIDGIN_TREE_TOP := ../../.. include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak + CURRENT_REVISION=$(shell \ - awk 'BEGIN {"grep node .hg_archival.txt" | getline rev; \ - rev=substr(rev,7,6); \ - print rev}') + if [ -e ./.hg_archival.txt ]; then \ + awk 'BEGIN {"grep node .hg_archival.txt" | getline rev; \ + rev=substr(rev,7,6); print rev}' > current_revision; \ + else \ + echo "!hg" > current_revision; \ + fi; \ + cat ./current_revision) + TARGET = libqq TYPE = PLUGIN
--- a/libpurple/protocols/qq/buddy_info.c Thu Oct 30 05:41:19 2008 +0000 +++ b/libpurple/protocols/qq/buddy_info.c Thu Oct 30 12:43:27 2008 +0000 @@ -69,9 +69,9 @@ }; static const gchar *genders_zh[] = { - N_("-"), - N_("\xc4\xd0"), - N_("\xc5\xae"), + "-", + "\xc4\xd0", + "\xc5\xae", }; #define QQ_FACES 134
--- a/libpurple/protocols/qq/qq.c Thu Oct 30 05:41:19 2008 +0000 +++ b/libpurple/protocols/qq/qq.c Thu Oct 30 12:43:27 2008 +0000 @@ -763,6 +763,7 @@ g_string_append(info, "khc(at)pidgin.im<br>\n"); g_string_append(info, "qulogic(at)pidgin.im<br>\n"); g_string_append(info, "rlaager(at)pidgin.im<br>\n"); + g_string_append(info, "Huang Guan : http://home.xxsyzx.com<br>\n"); g_string_append(info, "OpenQ Google Group : http://groups.google.com/group/openq<br>\n"); g_string_append(info, "<br>\n"); g_string_append(info, _("<p><i>And, all the boys in the backroom...</i><br>\n"));