Skip to content

Commit

Permalink
Releasing version 5.20.305.2 RC2
Browse files Browse the repository at this point in the history
  • Loading branch information
rizonesoft committed Mar 5, 2020
1 parent 5d1403e commit 74e6afe
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
8 changes: 6 additions & 2 deletions Build/notepad3_setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
#error Compile MiniPath x64 first
#endif

#define app_name Notepad3
#define app_publisher Rizonesoft
#define app_name "Notepad3"
#define app_publisher "Rizonesoft"
#define app_version GetFileVersion(bindir + "\Release_x86_v142\Notepad3.exe")
#define app_copyright "(c) Rizonesoft 2008-2019"
#define quick_launch "{userappdata}\Microsoft\Internet Explorer\Quick Launch"
Expand Down Expand Up @@ -379,6 +379,10 @@ begin
RegWriteStringValue(HKCR, 'Applications\notepad3.exe', 'AppUserModelID', 'Rizonesoft.Notepad3');
RegWriteStringValue(HKCR, 'Applications\notepad3.exe\shell\open\command', '', ExpandConstant('"{app}\Notepad3.exe" %1'));
RegWriteStringValue(HKCR, '*\OpenWithList\notepad3.exe', '', '');
RegWriteStringValue(HKCR, '*\shell\Open with Notepad3', 'Icon', 'C:\\Program Files\\Notepad3\\Notepad3.exe,0')
RegWriteStringValue(HKCR, '*\shell\Open with Notepad3\command', '', '"C:\\Program Files\\Notepad3\\Notepad3.exe" %1')
end;
Expand Down
10 changes: 7 additions & 3 deletions Build/notepad3_x86_setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
#error Compile MiniPath x86 first
#endif

#define app_name Notepad3
#define app_publisher Rizonesoft
#define app_name "Notepad3"
#define app_publisher "Rizonesoft"
#define app_version GetFileVersion(bindir + "\Release_x86_v142\Notepad3.exe")
#define app_copyright "(c) Rizonesoft 2008-2019"
#define quick_launch "{userappdata}\Microsoft\Internet Explorer\Quick Launch"
Expand Down Expand Up @@ -336,7 +336,11 @@ begin
RegWriteStringValue(HKCR, 'Applications\notepad3.exe', 'AppUserModelID', 'Rizonesoft.Notepad3');
RegWriteStringValue(HKCR, 'Applications\notepad3.exe\shell\open\command', '', ExpandConstant('"{app}\Notepad3.exe" %1'));
RegWriteStringValue(HKCR, '*\OpenWithList\notepad3.exe', '', '');
end;
RegWriteStringValue(HKCR, '*\shell\Open with Notepad3', 'Icon', 'C:\\Program Files (x86)\\Notepad3\\Notepad3.exe,0');
RegWriteStringValue(HKCR, '*\shell\Open with Notepad3\command', '', ExpandConstant('"{app}\Notepad3.exe" %1'));
end;
procedure CleanUpSettings();
Expand Down
2 changes: 1 addition & 1 deletion Versions/build.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1
2
2 changes: 1 addition & 1 deletion res/Notepad3.exe.manifest.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<assemblyIdentity
name="Notepad3"
processorArchitecture="*"
version="5.20.305.1"
version="5.20.305.2"
type="win32"
/>
<description>Notepad3 RC2</description>
Expand Down
4 changes: 2 additions & 2 deletions src/VersionEx.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
#define VERSION_MAJOR 5
#define VERSION_MINOR 20
#define VERSION_REV 305
#define VERSION_BUILD 1
#define VERSION_BUILD 2
#define SCINTILLA_VER 431
#define ONIGURUMA_REGEX_VER 6.9.4
#define UCHARDET_VER 2018.09.27
#define TINYEXPR_VER 2018.05.11
#define UTHASH_VER 2.1.0
#define VERSION_PATCH RC2
#define VERSION_COMMIT_ID dkt1-amr
#define VERSION_COMMIT_ID venom-pc

0 comments on commit 74e6afe

Please sign in to comment.