summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--updater/icons.cpp6
-rw-r--r--updater/updater.cpp2
-rw-r--r--updater/version.h2
3 files changed, 5 insertions, 5 deletions
diff --git a/updater/icons.cpp b/updater/icons.cpp
index 398303f..a8349c5 100644
--- a/updater/icons.cpp
+++ b/updater/icons.cpp
@@ -14,9 +14,9 @@ typedef struct
static IconStruct iconList[] =
{
- { "Check for Updates", "updater_check", IDI_MAINMENU },
- { "Restart", "updater_restart", IDI_RESTART },
- { "Update and Exit", "updater_checkexit", IDI_UPDATEANDEXIT },
+ { "Check for Plugin Updates", "updater_check", IDI_MAINMENU },
+ { "Restart", "updater_restart", IDI_RESTART },
+ { "Update and Exit", "updater_checkexit", IDI_UPDATEANDEXIT },
};
diff --git a/updater/updater.cpp b/updater/updater.cpp
index bd60df8..154d0b4 100644
--- a/updater/updater.cpp
+++ b/updater/updater.cpp
@@ -199,7 +199,7 @@ int ModulesLoaded(WPARAM wParam, LPARAM lParam) {
// create update action for triggerplugin
ACTIONREGISTER ar = {0};
ar.cbSize = sizeof(ACTIONREGISTER);
- ar.pszName = Translate("Check for Updates");
+ ar.pszName = Translate("Check for Plugin Updates");
ar.pszService = MS_UPDATE_CHECKFORUPDATESTRGR;
CallService(MS_TRIGGER_REGISTERACTION, 0, (LPARAM)&ar);
diff --git a/updater/version.h b/updater/version.h
index d451683..6c0d126 100644
--- a/updater/version.h
+++ b/updater/version.h
@@ -5,7 +5,7 @@
#define __MAJOR_VERSION 0
#define __MINOR_VERSION 5
#define __RELEASE_NUM 4
-#define __BUILD_NUM 1
+#define __BUILD_NUM 2
#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
#define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM