# HG changeset patch # User SHiNE CsyFeK # Date 1225370496 0 # Node ID d971d5369b4306d38da5bcf594ee982076465ac3 # Parent e4f4ffd7ed4ccb71bd837ac2e31f52a9d592bfb0 2008.10.30 - flos * 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 diff -r e4f4ffd7ed4c -r d971d5369b43 libpurple/protocols/qq/ChangeLog --- a/libpurple/protocols/qq/ChangeLog Tue Oct 28 16:59:07 2008 +0000 +++ b/libpurple/protocols/qq/ChangeLog Thu Oct 30 12:41:36 2008 +0000 @@ -1,3 +1,8 @@ +2008.10.30 - flos + * 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 * Updated AUTHORS diff -r e4f4ffd7ed4c -r d971d5369b43 libpurple/protocols/qq/Makefile.am --- a/libpurple/protocols/qq/Makefile.am Tue Oct 28 16:59:07 2008 +0000 +++ b/libpurple/protocols/qq/Makefile.am Thu Oct 30 12:41:36 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 diff -r e4f4ffd7ed4c -r d971d5369b43 libpurple/protocols/qq/Makefile.mingw --- a/libpurple/protocols/qq/Makefile.mingw Tue Oct 28 16:59:07 2008 +0000 +++ b/libpurple/protocols/qq/Makefile.mingw Thu Oct 30 12:41:36 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 diff -r e4f4ffd7ed4c -r d971d5369b43 libpurple/protocols/qq/buddy_info.c --- a/libpurple/protocols/qq/buddy_info.c Tue Oct 28 16:59:07 2008 +0000 +++ b/libpurple/protocols/qq/buddy_info.c Thu Oct 30 12:41:36 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 diff -r e4f4ffd7ed4c -r d971d5369b43 libpurple/protocols/qq/qq.c --- a/libpurple/protocols/qq/qq.c Tue Oct 28 16:59:07 2008 +0000 +++ b/libpurple/protocols/qq/qq.c Thu Oct 30 12:41:36 2008 +0000 @@ -763,6 +763,7 @@ g_string_append(info, "khc(at)pidgin.im
\n"); g_string_append(info, "qulogic(at)pidgin.im
\n"); g_string_append(info, "rlaager(at)pidgin.im
\n"); + g_string_append(info, "Huang Guan : http://home.xxsyzx.com
\n"); g_string_append(info, "OpenQ Google Group : http://groups.google.com/group/openq
\n"); g_string_append(info, "
\n"); g_string_append(info, _("

And, all the boys in the backroom...
\n"));