about dialog cosmetics
This commit is contained in:
parent
b2ba474f06
commit
12b5466b75
|
@ -1,9 +1,9 @@
|
|||
[Setup]
|
||||
AppName=XChat-WDK
|
||||
AppVerName=XChat-WDK r1464-4
|
||||
AppVersion=14.64.4
|
||||
VersionInfoVersion=14.64.4
|
||||
OutputBaseFilename=XChat-WDK r1464-4
|
||||
AppVerName=XChat-WDK r1464-5
|
||||
AppVersion=14.64.5
|
||||
VersionInfoVersion=14.64.5
|
||||
OutputBaseFilename=XChat-WDK r1464-5
|
||||
AppPublisher=XChat-WDK
|
||||
AppPublisherURL=http://code.google.com/p/xchat-wdk/
|
||||
AppCopyright=Copyright (C) 1998-2010 Peter Zelezny
|
||||
|
|
2
config.h
2
config.h
|
@ -6,7 +6,7 @@
|
|||
#define USE_GTKSPELL
|
||||
#endif*/
|
||||
#define PACKAGE_NAME "xchat"
|
||||
#define PACKAGE_VERSION "r1464-4"
|
||||
#define PACKAGE_VERSION "r1464-5"
|
||||
#define XCHATLIBDIR "."
|
||||
#define XCHATSHAREDIR "."
|
||||
#define OLD_PERL
|
||||
|
|
|
@ -8,7 +8,7 @@ char* check_version ()
|
|||
|
||||
if (!hINet)
|
||||
{
|
||||
return "error";
|
||||
return "unavailable";
|
||||
}
|
||||
|
||||
hFile = InternetOpenUrl (hINet, "http://xchat-wdk.googlecode.com/hg/version.txt", NULL, 0, 0, 0);
|
||||
|
@ -32,5 +32,5 @@ char* check_version ()
|
|||
|
||||
InternetCloseHandle (hINet);
|
||||
|
||||
return "error";
|
||||
return "unavailable";
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
1464-4
|
||||
1464-5
|
|
@ -655,7 +655,7 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/common/xchat.h xchat-wdk/src/co
|
|||
#define X_OK 1
|
||||
diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/about.c xchat-wdk/src/fe-gtk/about.c
|
||||
--- xchat-wdk.orig/src/fe-gtk/about.c 2010-05-16 09:43:49 +0200
|
||||
+++ xchat-wdk/src/fe-gtk/about.c 2010-08-30 10:02:36 +0200
|
||||
+++ xchat-wdk/src/fe-gtk/about.c 2010-08-30 10:21:07 +0200
|
||||
@@ -39,6 +39,8 @@
|
||||
|
||||
#include "../common/xchat.h"
|
||||
|
@ -665,25 +665,25 @@ diff -ruN --strip-trailing-cr xchat-wdk.orig/src/fe-gtk/about.c xchat-wdk/src/fe
|
|||
#include "palette.h"
|
||||
#include "pixmaps.h"
|
||||
#include "gtkutil.h"
|
||||
@@ -114,35 +116,41 @@
|
||||
@@ -114,35 +116,40 @@
|
||||
g_get_charset (&locale);
|
||||
(snprintf) (buf, sizeof (buf),
|
||||
"<span size=\"x-large\"><b>"DISPLAY_NAME" "PACKAGE_VERSION"</b></span>\n\n"
|
||||
- "%s\n\n"
|
||||
#ifdef WIN32
|
||||
+ "<b>Latest Version</b>: r%s\n\n"
|
||||
/* leave this message to avoid time wasting bug reports! */
|
||||
- /* leave this message to avoid time wasting bug reports! */
|
||||
- "This version is unofficial and comes with no support.\n\n"
|
||||
-#endif
|
||||
+ "This version is unofficial and\ncomes with no support.\n\n"
|
||||
+ "<b>Latest Version</b>: r%s\n"
|
||||
+ "<b>XChat Base</b>: 2.8.8\n\n"
|
||||
"%s\n"
|
||||
"<b>Charset</b>: %s "
|
||||
-#ifdef WIN32
|
||||
"<b>GTK+</b>: %i.%i.%i\n"
|
||||
+ "<b>Compiled</b>: "__DATE__"\n"
|
||||
+ "<b>Portable Mode</b>: %s\n\n"
|
||||
+ "<b>XChat Base</b>: 2.8.8\n\n"
|
||||
+ "<small>\302\251 1998-2010 Peter \305\275elezn\303\275 <zed@xchat.org></small>",
|
||||
+ "<small>This version is unofficial and comes with no support.\n"
|
||||
+ "\302\251 1998-2010 Peter \305\275elezn\303\275 <zed@xchat.org></small>",
|
||||
+ check_version(),
|
||||
+ get_cpu_str(),
|
||||
+ locale,
|
||||
|
|
Loading…
Reference in New Issue