+ Upd: Version files and Changes.txt

This commit is contained in:
Pairi Daiza 2021-11-25 15:42:08 +01:00
parent b16cfb2069
commit 00a8a4614a
No known key found for this signature in database
GPG Key ID: CA8DC330CDB482FA
6 changed files with 16 additions and 9 deletions

View File

@ -33,7 +33,7 @@ UCD - (UCD)ARDET is an Encoding Detector Library
========================================================
Current BETA/RC Version 5.21.1119.(build_#) (2021-11-19)
Current BETA/RC Version 5.21.1125.(build_#) (2021-11-25)
========================================================
--------------------------------------------------------
@ -47,10 +47,12 @@ NEW:
CHANGES:
--------------------------------------------------------
[.###.#]- .
[.alpha]- Default settings: LaunchInstanceWndPosOffset=28 and LaunchInstanceFullVisible=true.
[.alpha]- Lexer Fortran: add extended intrinsic functions.
[.alpha]- Some more DynStrg refactorings and LongPath handling.
--------------------------------------------------------
[.###.#]- .
[1125.1]- Switching to Philippe Lhoste's (PhiLho) AutoHotkey (AHK) Lexer.
[1119.1]- Migration of Solution/Projects/Src for VS2022.
[1117.1]- Switch to Scintilla default idle styling mode (none).
[1115.1]- Reverting changes to F/R behavior, correction for empty pattern.
@ -88,6 +90,8 @@ FIXES:
[.alpha]- Path_StripPath().
--------------------------------------------------------
[.###.#]- .
[1125.1]- Sync with current Oniguruma v7.0(ß) dev.
[1125.1]- Some other findings on the positioning of multi-instance launch.
[1119.2]- Relaunch multi instances: don't cascade if pos param already defined.
[1119.2]- Positioning on separate instance launch.
[1119.1]- Positioning multi instance launch.

View File

@ -1 +1 @@
2
1

View File

@ -1 +1 @@
1119
1125

View File

@ -3,7 +3,7 @@
<assemblyIdentity
name="Rizonesoft.Notepad3"
processorArchitecture="*"
version="5.21.1119.2"
version="5.21.1125.1"
type="win32"
/>
<description>Notepad3 rc</description>

View File

@ -220,8 +220,11 @@ static void _GetTrueWindowsVersion()
#endif
// ----------------------------------------------------------------------------
// https://docs.microsoft.com/en-US/windows/release-health/release-information
// https://docs.microsoft.com/en-US/windows-insider/active-dev-branch
// https://docs.microsoft.com/en-us/windows/release-health/ (Windows releases health)
// https://docs.microsoft.com/en-us/windows/release-health/release-information (Windows 10)
// https://docs.microsoft.com/en-us/windows/release-health/windows11-release-information (Windows 11)
// https://docs.microsoft.com/en-us/windows/release-health/windows-server-release-info (Windows Server)
// https://docs.microsoft.com/en-us/windows-insider/flight-hub/ (Windows Insider Preview Builds)
// ----------------------------------------------------------------------------
static LPCWSTR _Win10BuildToReleaseId() {
@ -230,7 +233,7 @@ static LPCWSTR _Win10BuildToReleaseId() {
DWORD const build = GetWindowsBuildNumber(NULL, NULL);
if (build > 19043) {
_wchpReleaseID = L"21H2 [Insdr]";
_wchpReleaseID = L"21H2";
} else if (build > 19042) {
_wchpReleaseID = L"21H1";
} else if (build > 19041) {

View File

@ -8,8 +8,8 @@
#define SAPPNAME "Notepad3"
#define VERSION_MAJOR 5
#define VERSION_MINOR 21
#define VERSION_REV 1119
#define VERSION_BUILD 2
#define VERSION_REV 1125
#define VERSION_BUILD 1
#define SCINTILLA_VER 511
#define LEXILLA_VER 511
#define ONIGURUMA_REGEX_VER 7.0.0