# HG changeset patch # User Mark Doliner # Date 1180895814 0 # Node ID 3522a4cda52f842a6bcca032e43fc636da00fd94 # Parent a61c101c26c3bff0e7a2c830d70327b08b6acf94 Two small changes to the release notification plugin: * Move the link to the website to the top of the notify window to make it more noticeable. Previously it was down at the bottom below the changelog * Add a new lines after "ChangeLog:" diff -r a61c101c26c3 -r 3522a4cda52f pidgin/plugins/relnot.c --- a/pidgin/plugins/relnot.c Sun Jun 03 05:16:00 2007 +0000 +++ b/pidgin/plugins/relnot.c Sun Jun 03 18:36:54 2007 +0000 @@ -69,20 +69,17 @@ message = g_string_new(""); g_string_append_printf(message, _("You are using %s version %s. The " - "current version is %s.
"), + "current version is %s. You can get it from " + "" PURPLE_WEBSITE "
"), PIDGIN_NAME, purple_core_get_version(), cur_ver); if(*changelog) { formatted = purple_strdup_withhtml(changelog); - g_string_append_printf(message, _("ChangeLog:\n%s

"), + g_string_append_printf(message, _("ChangeLog:
%s"), formatted); g_free(formatted); } - g_string_append_printf(message, _("You can get version %s from:
" - "" - "http://pidgin.im."), cur_ver); - purple_notify_formatted(NULL, _("New Version Available"), _("New Version Available"), NULL, message->str, NULL, NULL);