Support for MiniPath added

Support for MiniPath added
This commit is contained in:
Derick Payne 2015-11-14 11:01:10 +02:00
parent 09a24686b5
commit 17a2bd3629
6 changed files with 11 additions and 11 deletions

View File

@ -1,4 +1,4 @@
[Version]
Build=200
Build=210
VersionHeader=src\VersionEx.h
ManifestConfig=res\Notepad3.exe.manifest.conf

Binary file not shown.

View File

@ -3,7 +3,7 @@
<assemblyIdentity
name="Notepad3"
processorArchitecture="*"
version="0.2.0.200"
version="0.2.1.210"
type="win32"
/>
<description>Notepad3</description>

View File

@ -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))

View File

@ -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?"

View File

@ -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