summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Bailey <rekkanoryo@rekkanoryo.org>2009-03-11 04:38:12 +0000
committerJohn Bailey <rekkanoryo@rekkanoryo.org>2009-03-11 04:38:12 +0000
commitde29a53beb0b9e309f10e7986981a5ad8d9e7b10 (patch)
tree5469233b2f09c73e1d82a39a96f958495669919a
parent4d2016557c2786f88659a119823b195f8c92c353 (diff)
downloadpidgin-de29a53beb0b9e309f10e7986981a5ad8d9e7b10.tar.gz
Add libpurple version to '/debug version' output.
-rw-r--r--pidgin/gtkconv.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/pidgin/gtkconv.c b/pidgin/gtkconv.c
index d821ce3f43..654dcb6a66 100644
--- a/pidgin/gtkconv.c
+++ b/pidgin/gtkconv.c
@@ -329,7 +329,8 @@ debug_command_cb(PurpleConversation *conv,
PurpleCmdStatus status;
if (!g_ascii_strcasecmp(args[0], "version")) {
- tmp = g_strdup_printf("me is using %s v%s.", "Pidgin", DISPLAY_VERSION);
+ tmp = g_strdup_printf("me is using Pidgin v%s with libpurple v%s.",
+ DISPLAY_VERSION, purple_core_get_version());
markup = g_markup_escape_text(tmp, -1);
status = purple_cmd_do_command(conv, tmp, markup, error);