diff --git a/Build/Build.bat b/Build/Build.bat index 491927ea0..653498299 100644 --- a/Build/Build.bat +++ b/Build/Build.bat @@ -7,7 +7,7 @@ setlocal EnableDelayedExpansion :: |skip_delay_flag|: 1 or 0. 1 = skip any "timeout" commands (for github actions). 0 = adds a 2 second :: delay when signing the binaries to prevent file locking by Windows. :: Examples: -:: Build.bat final 4 4 0 3520 0 -> Rainmeter-4.4.0.exe +:: Build.bat release 4 4 0 3520 0 -> Rainmeter-4.4.0.exe :: Build.bat pre 4 4 1 3521 1 -> Rainmeter-4.4.1-prerelease.exe :: Build.bat languages -> No installer, just update the language .dll files diff --git a/Library/MeasurePlugin.cpp b/Library/MeasurePlugin.cpp index 4128567ef..ba5c9280b 100644 --- a/Library/MeasurePlugin.cpp +++ b/Library/MeasurePlugin.cpp @@ -49,7 +49,7 @@ MeasurePlugin::~MeasurePlugin() if (GetModuleFileName(m_Plugin, pluginPath, _countof(pluginPath)) > 0UL) { // Sometimes GetModuleFileName and/or LoadLibrary retrieves portions of the path - // in the wrong case (ex. ".DLL", instead of ".dll"), so get the acutal file path + // in the wrong case (ex. ".DLL", instead of ".dll"), so get the actual file path if (GetLongPathName(pluginPath, pluginPath, _countof(pluginPath)) > 0UL) { std::wstring tmpStr = pluginPath; @@ -177,7 +177,7 @@ void MeasurePlugin::ReadOptions(ConfigParser& parser, const WCHAR* section) if (GetModuleFileName(m_Plugin, pluginPath, _countof(pluginPath)) > 0UL) { // Sometimes GetModuleFileName and/or LoadLibrary retrieves portions of the path - // in the wrong case (ex. ".DLL", instead of ".dll"), so get the acutal file path + // in the wrong case (ex. ".DLL", instead of ".dll"), so get the actual file path if (GetLongPathName(pluginPath, pluginPath, _countof(pluginPath)) > 0UL) { std::wstring tmpStr = pluginPath;