summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorberkeviktor@aol.com <berkeviktor@aol.com>2010-09-07 02:54:06 +0200
committerberkeviktor@aol.com <berkeviktor@aol.com>2010-09-07 02:54:06 +0200
commit68b210aa3b6e2a9694b87c5fb882b06d76c0d90a (patch)
treecc8fc6717fe2034e9f0f28b06d6f1b48fa17b8ae
parentbf19ba139976d53dd72f07ff01d149e862d01716 (diff)
rename updater plugin
-rw-r--r--build/xchat-wdk.iss2
-rw-r--r--plugins/upd/upd.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/build/xchat-wdk.iss b/build/xchat-wdk.iss
index a773b10b..430e0610 100644
--- a/build/xchat-wdk.iss
+++ b/build/xchat-wdk.iss
@@ -39,7 +39,7 @@ Name: "libs"; Description: "XChat-WDK"; Types: normal full custom; Flags: fixed
 Name: "translations"; Description: "Translations"; Types: normal full custom

 Name: "plugins"; Description: "Plugins"; Types: full custom

 Name: "plugins\ewc"; Description: "EasyWinampControl"; Types: full custom

-Name: "plugins\upd"; Description: "XChat-WDK Updater"; Types: normal full custom

+Name: "plugins\upd"; Description: "XChat-WDK Update Checker"; Types: normal full custom

 Name: "plugins\xdcc"; Description: "XDCC"; Types: full custom

 Name: "langs"; Description: "Language Interfaces"; Types: full custom

 Name: "langs\lua"; Description: "Lua (experimental)"; Types: full custom

diff --git a/plugins/upd/upd.c b/plugins/upd/upd.c
index 6a795054..903fffe5 100644
--- a/plugins/upd/upd.c
+++ b/plugins/upd/upd.c
@@ -91,12 +91,12 @@ xchat_plugin_init (xchat_plugin *plugin_handle, char **plugin_name, char **plugi
 {
 	ph = plugin_handle;
 
-	*plugin_name = "XChat-WDK Updater";
+	*plugin_name = "XChat-WDK Update Checker";
 	*plugin_desc = "Plugin for checking for XChat-WDK updates";
 	*plugin_version = "1.0";
 
 	xchat_hook_command (ph, "UPD", XCHAT_PRI_NORM, print_version, 0, 0);
-	xchat_print (ph, "XChat-WDK Updater plugin loaded\n");
+	xchat_print (ph, "XChat-WDK Update Checker plugin loaded\n");
 	print_version ();
 
 	return 1;       /* return 1 for success */
@@ -105,6 +105,6 @@ xchat_plugin_init (xchat_plugin *plugin_handle, char **plugin_name, char **plugi
 int
 xchat_plugin_deinit (void)
 {
-	xchat_print (ph, "XChat-WDK Updater plugin unloaded\n");
+	xchat_print (ph, "XChat-WDK Update Checker plugin unloaded\n");
 	return 1;
 }