diff --git a/Version.ini b/Version.ini index c1906fddf..3d06a001e 100644 --- a/Version.ini +++ b/Version.ini @@ -1,4 +1,4 @@ [Version] -Build=200 +Build=210 VersionHeader=src\VersionEx.h ManifestConfig=res\Notepad3.exe.manifest.conf diff --git a/distrib/Notepad3.ini b/distrib/Notepad3.ini index f0f2dccd6..b74bec4a8 100644 Binary files a/distrib/Notepad3.ini and b/distrib/Notepad3.ini differ diff --git a/res/Notepad3.exe.manifest b/res/Notepad3.exe.manifest index 7520a9552..c65a8c4ac 100644 --- a/res/Notepad3.exe.manifest +++ b/res/Notepad3.exe.manifest @@ -3,7 +3,7 @@ Notepad3 diff --git a/src/Notepad3.c b/src/Notepad3.c index e6085f905..b1630e35c 100644 --- a/src/Notepad3.c +++ b/src/Notepad3.c @@ -2401,10 +2401,10 @@ LRESULT MsgCommand(HWND hwnd,WPARAM wParam,LPARAM lParam) WCHAR tchTemp[MAX_PATH+4]; if (!IniGetString(L"Settings2",L"filebrowser.exe",L"",tchTemp,COUNTOF(tchTemp))) { - if (!SearchPath(NULL,L"metapath.exe",NULL,COUNTOF(tchExeFile),tchExeFile,NULL)) { + if (!SearchPath(NULL,L"minipath.exe",NULL,COUNTOF(tchExeFile),tchExeFile,NULL)) { GetModuleFileName(NULL,tchExeFile,COUNTOF(tchExeFile)); PathRemoveFileSpec(tchExeFile); - PathAppend(tchExeFile,L"metapath.exe"); + PathAppend(tchExeFile,L"minipath.exe"); } } @@ -6380,10 +6380,10 @@ void LoadFlags() if (IniSectionGetInt(pIniSection,L"NoFileVariables",0)) fNoFileVariables = 1; - // if (lstrlen(g_wchAppUserModelID) == 0) { - // IniSectionGetString(pIniSection,L"ShellAppUserModelID",L"Notepad3", - // g_wchAppUserModelID,COUNTOF(g_wchAppUserModelID)); - // } + if (lstrlen(g_wchAppUserModelID) == 0) { + IniSectionGetString(pIniSection,L"ShellAppUserModelID",L"Notepad3", + g_wchAppUserModelID,COUNTOF(g_wchAppUserModelID)); + } if (flagUseSystemMRU == 0) { if (IniSectionGetInt(pIniSection,L"ShellUseSystemMRU",0)) diff --git a/src/Notepad3.rc b/src/Notepad3.rc index 423a80ee6..139a0324e 100644 --- a/src/Notepad3.rc +++ b/src/Notepad3.rc @@ -1338,7 +1338,7 @@ STRINGTABLE BEGIN IDS_ERR_LOADFILE "Error loading ""%s""." IDS_ERR_SAVEFILE "Error saving ""%s""." - IDS_ERR_BROWSE "No file browser plugin was found.\nThe metapath file browser plugin can be downloaded from http://www.flos-freeware.ch." + IDS_ERR_BROWSE "No file browser plugin was found.\nThe MiniPath file browser plugin can be downloaded from https://rizonesoft.com." IDS_ERR_MRUDLG "No access to the selected file!\nWould you like to remove it from the list?" IDS_ERR_CREATELINK "Error creating the Desktop link." IDS_ERR_PREVWINDISABLED "Existing Notepad3 window is busy or has an active dialog box.\nWould you like to open another Notepad3 window?" diff --git a/src/VersionEx.h b/src/VersionEx.h index 4861d434f..0938f5084 100644 --- a/src/VersionEx.h +++ b/src/VersionEx.h @@ -1,4 +1,4 @@ #define VERSION_MAJOR 0 #define VERSION_MINOR 2 -#define VERSION_REV 0 -#define VERSION_BUILD 200 +#define VERSION_REV 1 +#define VERSION_BUILD 210