Skip to content

Commit 74e6afe

Browse files
committed
Releasing version 5.20.305.2 RC2
1 parent 5d1403e commit 74e6afe

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

Build/notepad3_setup.iss

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
#error Compile MiniPath x64 first
2929
#endif
3030

31-
#define app_name Notepad3
32-
#define app_publisher Rizonesoft
31+
#define app_name "Notepad3"
32+
#define app_publisher "Rizonesoft"
3333
#define app_version GetFileVersion(bindir + "\Release_x86_v142\Notepad3.exe")
3434
#define app_copyright "(c) Rizonesoft 2008-2019"
3535
#define quick_launch "{userappdata}\Microsoft\Internet Explorer\Quick Launch"
@@ -379,6 +379,10 @@ begin
379379
RegWriteStringValue(HKCR, 'Applications\notepad3.exe', 'AppUserModelID', 'Rizonesoft.Notepad3');
380380
RegWriteStringValue(HKCR, 'Applications\notepad3.exe\shell\open\command', '', ExpandConstant('"{app}\Notepad3.exe" %1'));
381381
RegWriteStringValue(HKCR, '*\OpenWithList\notepad3.exe', '', '');
382+
383+
RegWriteStringValue(HKCR, '*\shell\Open with Notepad3', 'Icon', 'C:\\Program Files\\Notepad3\\Notepad3.exe,0')
384+
RegWriteStringValue(HKCR, '*\shell\Open with Notepad3\command', '', '"C:\\Program Files\\Notepad3\\Notepad3.exe" %1')
385+
382386
end;
383387
384388

Build/notepad3_x86_setup.iss

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
#error Compile MiniPath x86 first
2121
#endif
2222

23-
#define app_name Notepad3
24-
#define app_publisher Rizonesoft
23+
#define app_name "Notepad3"
24+
#define app_publisher "Rizonesoft"
2525
#define app_version GetFileVersion(bindir + "\Release_x86_v142\Notepad3.exe")
2626
#define app_copyright "(c) Rizonesoft 2008-2019"
2727
#define quick_launch "{userappdata}\Microsoft\Internet Explorer\Quick Launch"
@@ -336,7 +336,11 @@ begin
336336
RegWriteStringValue(HKCR, 'Applications\notepad3.exe', 'AppUserModelID', 'Rizonesoft.Notepad3');
337337
RegWriteStringValue(HKCR, 'Applications\notepad3.exe\shell\open\command', '', ExpandConstant('"{app}\Notepad3.exe" %1'));
338338
RegWriteStringValue(HKCR, '*\OpenWithList\notepad3.exe', '', '');
339-
end;
339+
340+
RegWriteStringValue(HKCR, '*\shell\Open with Notepad3', 'Icon', 'C:\\Program Files (x86)\\Notepad3\\Notepad3.exe,0');
341+
RegWriteStringValue(HKCR, '*\shell\Open with Notepad3\command', '', ExpandConstant('"{app}\Notepad3.exe" %1'));
342+
343+
end;
340344
341345
342346
procedure CleanUpSettings();

Versions/build.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1
1+
2

res/Notepad3.exe.manifest.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<assemblyIdentity
44
name="Notepad3"
55
processorArchitecture="*"
6-
version="5.20.305.1"
6+
version="5.20.305.2"
77
type="win32"
88
/>
99
<description>Notepad3 RC2</description>

src/VersionEx.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
#define VERSION_MAJOR 5
1010
#define VERSION_MINOR 20
1111
#define VERSION_REV 305
12-
#define VERSION_BUILD 1
12+
#define VERSION_BUILD 2
1313
#define SCINTILLA_VER 431
1414
#define ONIGURUMA_REGEX_VER 6.9.4
1515
#define UCHARDET_VER 2018.09.27
1616
#define TINYEXPR_VER 2018.05.11
1717
#define UTHASH_VER 2.1.0
1818
#define VERSION_PATCH RC2
19-
#define VERSION_COMMIT_ID dkt1-amr
19+
#define VERSION_COMMIT_ID venom-pc

0 commit comments

Comments
 (0)