diff options
author | dartraiden <wowemuh@gmail.com> | 2018-04-12 17:40:13 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2018-04-12 17:41:16 +0300 |
commit | fc1b90ac5521548d3062062faf72e7fc2196122e (patch) | |
tree | e9c7dfeafa450fac61b1de122ec8d1af5a314fee /plugins/PluginUpdater/src/DlgUpdate.cpp | |
parent | 543b769eda74ffd5515120a6b2bcafcf703f23c5 (diff) |
fix for .bat deletion
Diffstat (limited to 'plugins/PluginUpdater/src/DlgUpdate.cpp')
-rw-r--r-- | plugins/PluginUpdater/src/DlgUpdate.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/PluginUpdater/src/DlgUpdate.cpp b/plugins/PluginUpdater/src/DlgUpdate.cpp index bc3843304e..a657c4a1a2 100644 --- a/plugins/PluginUpdater/src/DlgUpdate.cpp +++ b/plugins/PluginUpdater/src/DlgUpdate.cpp @@ -542,6 +542,7 @@ static renameTable[] = { L"newnr.dll", L"Plugins\\notesreminders.dll" },
{ L"dbtool.exe", nullptr },
{ L"dbtool_sa.exe", nullptr },
+ { L"dbchecker.bat", nullptr },
{ L"clist_mw.dll", L"Plugins\\clist_nicer.dll" },
{ L"bclist.dll", L"Plugins\\clist_blind.dll" },
{ L"otr.dll", L"Plugins\\mirotr.dll" },
@@ -584,7 +585,6 @@ static renameTable[] = { L"advaimg.dll", nullptr },
{ L"aim.dll", nullptr },
- { L"dbchecker.bat", nullptr },
{ L"dbchecker.dll", nullptr },
{ L"dbx_sqlite.dll", nullptr },
{ L"extraicons.dll", nullptr },
@@ -629,12 +629,12 @@ static bool CheckFileRename(const wchar_t *ptszOldName, wchar_t *pNewName) }
/////////////////////////////////////////////////////////////////////////////////////////
-// We only update ".dll", ".exe" and ".ico"
+// We only update ".dll", ".exe", ".txt" and ".bat"
static bool isValidExtension(const wchar_t *ptszFileName)
{
const wchar_t *pExt = wcsrchr(ptszFileName, '.');
- return (pExt != nullptr) && (!_wcsicmp(pExt, L".dll") || !_wcsicmp(pExt, L".exe") || !_wcsicmp(pExt, L".txt"));
+ return (pExt != nullptr) && (!_wcsicmp(pExt, L".dll") || !_wcsicmp(pExt, L".exe") || !_wcsicmp(pExt, L".txt") || !_wcsicmp(pExt, L".bat"));
}
// We only scan subfolders "Plugins", "Icons", "Languages", "Libs", "Core"
|