mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-11 21:03:05 +08:00
Fixed Favorites Function
Fixed Favorites Function
This commit is contained in:
parent
69c4414644
commit
07d22db18d
@ -7,7 +7,7 @@ Language=CPlusPlus
|
||||
Major=auto
|
||||
Minor=auto
|
||||
Maintenance=auto
|
||||
Build=312
|
||||
Build=315
|
||||
|
||||
[CSharp]
|
||||
AssemConfig=Rizonesoft.Voice.Win\Properties\AssemblyInfo.cs.conf
|
||||
|
||||
@ -6,7 +6,7 @@ Notepad3 Build 0000 (11 June 2016)
|
||||
- Removed Visual Studio 2010 to 2013 Support
|
||||
- Added Visual Studio 2015 Update 2 version number
|
||||
- Added Support for Inno Setup 5.5.9
|
||||
-
|
||||
- Fixed Favorites Function
|
||||
-
|
||||
-
|
||||
-
|
||||
@ -124,6 +124,9 @@ Source: {#bindir}\Release_x64\minipath.exe; DestDir: {app};
|
||||
Source: {#bindir}\Release_x86\minipath.exe; DestDir: {app}; Flags: ignoreversion; Check: not Is64BitInstallMode()
|
||||
Source: minipath.ini; DestDir: {userappdata}\Rizonesoft\Notepad3; Flags: onlyifdoesntexist uninsneveruninstall
|
||||
|
||||
[Dirs]
|
||||
Name: "{userappdata}\Rizonesoft\Notepad3\Favorites"
|
||||
|
||||
[Icons]
|
||||
Name: {commondesktop}\{#app_name}; Filename: {app}\Notepad3.exe; Tasks: desktopicon\common; Comment: {#app_name} {#app_version}; WorkingDir: {app}; AppUserModelID: Notepad3; IconFilename: {app}\Notepad3.exe; IconIndex: 0
|
||||
Name: {userdesktop}\{#app_name}; Filename: {app}\Notepad3.exe; Tasks: desktopicon\user; Comment: {#app_name} {#app_version}; WorkingDir: {app}; AppUserModelID: Notepad3; IconFilename: {app}\Notepad3.exe; IconIndex: 0
|
||||
@ -135,6 +138,8 @@ Name: {#quick_launch}\{#app_name}; Filename: {app}\Notepad3.exe; Tasks: quicklau
|
||||
Filename: {app}\Notepad3.ini; Section: Notepad3; Key: Notepad3.ini; String: %APPDATA%\Rizonesoft\Notepad3\Notepad3.ini
|
||||
Filename: {app}\minipath.ini; Section: minipath; Key: minipath.ini; String: %APPDATA%\Rizonesoft\Notepad3\minipath.ini
|
||||
|
||||
Filename: {userappdata}\Rizonesoft\Notepad3\Notepad3.ini; Section: Settings; Key: Favorites; String: %APPDATA%\Rizonesoft\Notepad3\Favorites\
|
||||
|
||||
|
||||
[Run]
|
||||
Filename: {app}\Notepad3.exe; Description: {cm:LaunchProgram,{#app_name}}; WorkingDir: {app}; Flags: nowait postinstall skipifsilent unchecked
|
||||
@ -155,7 +160,6 @@ Type: files; Name: {app}\Notepad3.ini
|
||||
Type: files; Name: {app}\minipath.ini
|
||||
Type: dirifempty; Name: {app}
|
||||
|
||||
|
||||
[Code]
|
||||
const IFEO = 'SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe';
|
||||
|
||||
@ -274,6 +278,7 @@ end;
|
||||
procedure CleanUpSettings();
|
||||
begin
|
||||
DeleteFile(ExpandConstant('{userappdata}\Rizonesoft\Notepad3\Notepad3.ini'));
|
||||
DeleteFile(ExpandConstant('{userappdata}\Rizonesoft\Notepad3\minipath.ini'));
|
||||
RemoveDir(ExpandConstant('{userappdata}\Rizonesoft\Notepad3'));
|
||||
end;
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
[Version]
|
||||
Build=82
|
||||
Build=85
|
||||
VersionHeader=src\VersionEx.h
|
||||
ManifestConfig=res\MiniPath.exe.manifest.conf
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
<assemblyIdentity
|
||||
name="MiniPath"
|
||||
processorArchitecture="*"
|
||||
version="0.0.8.82"
|
||||
version="0.0.8.85"
|
||||
type="win32"
|
||||
/>
|
||||
<description>metapath</description>
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
#define VERSION_MAJOR 0
|
||||
#define VERSION_MINOR 0
|
||||
#define VERSION_REV 8
|
||||
#define VERSION_BUILD 82
|
||||
#define VERSION_BUILD 85
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
<assemblyIdentity
|
||||
name="Notepad3"
|
||||
processorArchitecture="*"
|
||||
version="0.3.1.312"
|
||||
version="0.3.1.315"
|
||||
type="win32"
|
||||
/>
|
||||
<description>Notepad3</description>
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
#define VERSION_MAJOR 0
|
||||
#define VERSION_MINOR 3
|
||||
#define VERSION_REV 1
|
||||
#define VERSION_BUILD 312
|
||||
#define VERSION_BUILD 315
|
||||
|
||||
Loading…
Reference in New Issue
Block a user