mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-11 21:03:05 +08:00
+ ver: VS2019 version update - VS 16.7.2
+ upd: Version files and Changes.txt and small enhancements
This commit is contained in:
parent
d2b9f2f91c
commit
6832f84e87
@ -33,13 +33,14 @@ SUP - (S)et(UP) / Installer Package
|
||||
|
||||
|
||||
=====================================================
|
||||
Current BETA Version 5.20.818.(build_#) (2020-08-18)
|
||||
Current BETA Version 5.20.819.(build_#) (2020-08-19)
|
||||
=====================================================
|
||||
|
||||
-----------------------------------------------------
|
||||
NEW:
|
||||
-----------------------------------------------------
|
||||
[.###.#]-
|
||||
[.819.1]- 1st version of Occurrences Bookmarks on Focused-View.
|
||||
[.816.1]- Controls to clear history (file and find/replace).
|
||||
[.815.1]- Using dialog RTL option for Main window too.
|
||||
[.813.1]- Right-to-left (RTL) title/frame layout for some dialogs.
|
||||
|
||||
@ -11,6 +11,11 @@ if ["%~1"] neq [""] call :ESCAPE_ARGS
|
||||
PowerShell.exe -NoProfile -NonInteractive -NoLogo -ExecutionPolicy Unrestricted -Command "& { $ErrorActionPreference = 'Stop'; & '%SCRIPTNAME%' @args; Exit $LastExitCode }" %ARGS%
|
||||
set EXITCODE=%ERRORLEVEL%
|
||||
::ECHO ERRORLEVEL=%EXITCODE%
|
||||
|
||||
:: Pause for 10 seconds to verify the "Notepad3 version number:" before exiting
|
||||
:: ============================================================================
|
||||
ping -n 11 127.0.0.1>nul
|
||||
|
||||
goto :END
|
||||
|
||||
:ESCAPE_ARGS
|
||||
|
||||
@ -23,6 +23,7 @@ function DebugOutput($msg)
|
||||
{
|
||||
#~return ## disabled debug output
|
||||
if ($msg -ne $null) {
|
||||
Write-Host ""
|
||||
Write-Host "$msg"
|
||||
}
|
||||
}
|
||||
@ -127,6 +128,7 @@ finally
|
||||
{
|
||||
[Environment]::SetEnvironmentVariable("LASTEXITCODE", $LastExitCode, "User")
|
||||
$host.SetShouldExit($LastExitCode)
|
||||
Write-Host ""
|
||||
Write-Host "VersionPatching: Done! Elapsed time: $($stopwatch.Elapsed)."
|
||||
Exit $LastExitCode
|
||||
}
|
||||
|
||||
@ -1 +1 @@
|
||||
818
|
||||
819
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
<assemblyIdentity
|
||||
name="Notepad3"
|
||||
processorArchitecture="*"
|
||||
version="5.20.818.1"
|
||||
version="5.20.819.1"
|
||||
type="win32"
|
||||
/>
|
||||
<description>Notepad3 beta</description>
|
||||
|
||||
@ -75,7 +75,7 @@
|
||||
#if defined(_MSC_VER)
|
||||
#if (_MSC_VER == 1927)
|
||||
#if(_MSC_FULL_VER >= 192729111)
|
||||
#define VER_CPL MS Visual C++ 2019 v16.7.1
|
||||
#define VER_CPL MS Visual C++ 2019 v16.7.(1-2)
|
||||
#elif(_MSC_FULL_VER >= 192729110)
|
||||
#define VER_CPL MS Visual C++ 2019 v16.7.0
|
||||
#endif
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
#define SAPPNAME "Notepad3"
|
||||
#define VERSION_MAJOR 5
|
||||
#define VERSION_MINOR 20
|
||||
#define VERSION_REV 818
|
||||
#define VERSION_REV 819
|
||||
#define VERSION_BUILD 1
|
||||
#define SCINTILLA_VER 444
|
||||
#define ONIGURUMA_REGEX_VER 6.9.5
|
||||
|
||||
Loading…
Reference in New Issue
Block a user