mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-11 21:03:05 +08:00
+ Upd: Version files and Changes.txt
This commit is contained in:
parent
413ed0cd69
commit
cd0d3875dc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -33,13 +33,14 @@ UCD - (UCD)ARDET is an Encoding Detector Library
|
||||
|
||||
|
||||
========================================================
|
||||
Current BETA/RC Version 5.21.425.(build_#) (2021-04-25)
|
||||
Current BETA/RC Version 5.21.427.(build_#) (2021-04-27)
|
||||
========================================================
|
||||
|
||||
--------------------------------------------------------
|
||||
NEW:
|
||||
--------------------------------------------------------
|
||||
[.###.#]- .
|
||||
[.426.1]- Prepare Application Manifest for to grant Identity for non-package desktop apps.
|
||||
[.425.1]- Add file/dir exists/not-found to hyperlink tooltip (if file-url).
|
||||
[.422.1]- Support Scintilla's new feature: indicator stroke width.
|
||||
[.420.1]- TXT file for Translators to comunicate Line Mumbers of the "Added/Modified" strings.
|
||||
@ -68,6 +69,8 @@ NEW:
|
||||
CHANGES:
|
||||
--------------------------------------------------------
|
||||
[.###.#]- .
|
||||
[.427.1]- Color selection dialog: NP3 icon, positioning and dark-mode.
|
||||
[.427.1]- Adjust standard colors for URL Hyperlink (better standard dark-mode visual).
|
||||
[.425.1]- New default for hyperlink tooltip is OFF.
|
||||
[.425.1]- Immediate indicator hover response (colordef-hotspot, hyperlink-tooltip, hex-code-tooltip).
|
||||
[.422.1]- Code cleanup for Font and Style Selection.
|
||||
@ -113,6 +116,7 @@ CHANGES:
|
||||
FIXES:
|
||||
--------------------------------------------------------
|
||||
[.###.#]- .
|
||||
[.427.1]- Minor fixes around font redrawing.
|
||||
[.423.1]- Add thread COM initializations.
|
||||
[.423.1]- Adding DPI awareness to MiniPath (correct toolbar handling still open point).
|
||||
[.423.1]- minor corrections for customized font selection dialog (dark-mode and dpi-awareness).
|
||||
|
||||
@ -291,6 +291,7 @@ Type: dirifempty; Name: {app}
|
||||
[Code]
|
||||
const
|
||||
IFEO = 'SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe';
|
||||
APPH = 'SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\Notepad3.exe';
|
||||
|
||||
function InitializeSetup: Boolean;
|
||||
begin
|
||||
@ -435,6 +436,8 @@ 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(HKLM, APPH, '', ExpandConstant('{app}\Notepad3.exe'));
|
||||
RegWriteStringValue(HKLM, APPH, 'Path', ExpandConstant('{app}'));
|
||||
end;
|
||||
|
||||
|
||||
@ -452,6 +455,9 @@ begin
|
||||
RegDeleteKeyIncludingSubkeys(HKCR, 'Applications\notepad3.exe');
|
||||
RegDeleteKeyIncludingSubkeys(HKCR, '*\OpenWithList\notepad3.exe');
|
||||
RegDeleteKeyIncludingSubkeys(HKCR, '*\shell\Open with Notepad3');
|
||||
RegDeleteValue(HKLM, APPH, 'Path');
|
||||
RegDeleteValue(HKLM, APPH, '');
|
||||
RegDeleteKeyIfEmpty(HKLM, APPH);
|
||||
end;
|
||||
|
||||
|
||||
|
||||
@ -227,6 +227,7 @@ Type: dirifempty; Name: {app}
|
||||
[Code]
|
||||
const
|
||||
IFEO = 'SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe';
|
||||
APPH = 'SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\Notepad3.exe';
|
||||
|
||||
function InitializeSetup: Boolean;
|
||||
begin
|
||||
@ -371,6 +372,8 @@ 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(HKLM, APPH, '', ExpandConstant('{app}\Notepad3.exe'));
|
||||
RegWriteStringValue(HKLM, APPH, 'Path', ExpandConstant('{app}'));
|
||||
end;
|
||||
|
||||
|
||||
@ -388,6 +391,9 @@ begin
|
||||
RegDeleteKeyIncludingSubkeys(HKCR, 'Applications\notepad3.exe');
|
||||
RegDeleteKeyIncludingSubkeys(HKCR, '*\OpenWithList\notepad3.exe');
|
||||
RegDeleteKeyIncludingSubkeys(HKCR, '*\shell\Open with Notepad3');
|
||||
RegDeleteValue(HKLM, APPH, 'Path');
|
||||
RegDeleteValue(HKLM, APPH, '');
|
||||
RegDeleteKeyIfEmpty(HKLM, APPH);
|
||||
end;
|
||||
|
||||
|
||||
|
||||
@ -1 +1 @@
|
||||
426
|
||||
427
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
<assemblyIdentity
|
||||
name="Rizonesoft.Notepad3"
|
||||
processorArchitecture="*"
|
||||
version="5.21.426.1"
|
||||
version="5.21.427.1"
|
||||
type="win32"
|
||||
/>
|
||||
<description>Notepad3 beta</description>
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
#define SAPPNAME "Notepad3"
|
||||
#define VERSION_MAJOR 5
|
||||
#define VERSION_MINOR 21
|
||||
#define VERSION_REV 426
|
||||
#define VERSION_REV 427
|
||||
#define VERSION_BUILD 1
|
||||
#define SCINTILLA_VER 501
|
||||
#define LEXILLA_VER 501
|
||||
@ -17,4 +17,4 @@
|
||||
#define TINYEXPR_VER 2018.05.11
|
||||
#define UTHASH_VER 2.1.0
|
||||
#define VERSION_PATCH beta
|
||||
#define VERSION_COMMIT_ID nebukadn
|
||||
#define VERSION_COMMIT_ID dkt1-amr
|
||||
|
||||
Loading…
Reference in New Issue
Block a user