mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-14 21:09:05 +08:00
Merge pull request #5260 from hpwamr/Mui_Beta
MUI - Commit before release build "Notepad3 6.24.713.1 rc3"
This commit is contained in:
commit
ff261d0fcf
@ -34,7 +34,7 @@ UCD - (UCD)ARDET is an Encoding Detector Library
|
||||
|
||||
|
||||
========================================================
|
||||
Current BETA/RC Version 6.24.703.(build_#) (2024-07-03)
|
||||
Current BETA/RC Version 6.24.713.(build_#) (2024-07-13)
|
||||
========================================================
|
||||
|
||||
--------------------------------------------------------
|
||||
@ -72,6 +72,7 @@ NEW:
|
||||
CHANGES:
|
||||
--------------------------------------------------------
|
||||
[.###.#]- .
|
||||
[.713.1]- CR: if selection empty on "Modify Lines..." complete document is selected.
|
||||
[.703.1]- Refactor Remove/Unite Duplicate Lines.
|
||||
[.527.1]- Updating Lexer Style "NewSombra" from MadDogVachon.
|
||||
[.522.1]- Ctrl+S does not forced saving doc any longer - only saves file, if save needed (doc changed).
|
||||
@ -139,6 +140,7 @@ CHANGES:
|
||||
FIXES:
|
||||
--------------------------------------------------------
|
||||
[.###.#]- .
|
||||
[.713.1]- Delete line (Ctrl+Shift+D) - fix last line handling.
|
||||
[.703.1]- Update Toolbar in case of Undo/Redo.
|
||||
[.601.1]- Regression for "Reuse Window" flag.
|
||||
[.529.1]- Center dialog if window is maximized.
|
||||
|
||||
@ -2,12 +2,12 @@
|
||||
;*
|
||||
;* (c) Rizonesoft 2008-2024
|
||||
|
||||
; Requirements:
|
||||
; Inno Setup: https://jrsoftware.org/isinfo.php
|
||||
;Requirements: Inno Setup 6.3.x or higher
|
||||
;Inno Setup: https://jrsoftware.org/isinfo.php
|
||||
|
||||
;Thanks to "Wilenty" for his great help in improving the INNO Setup installer
|
||||
|
||||
; Preprocessor related stuff
|
||||
;Preprocessor related stuff
|
||||
// if you compile a "beta, rc or rc2" version, then comment/un-comment the appropriate setting:
|
||||
;#define VRSN=" beta"
|
||||
;#define VRSN=" rc"
|
||||
@ -97,13 +97,14 @@ DisableWelcomePage=no
|
||||
AllowCancelDuringInstall=yes
|
||||
UsedUserAreasWarning=no
|
||||
MinVersion=0,6.1sp1
|
||||
OnlyBelowVersion=0,0
|
||||
#if Arch == "x86"
|
||||
ArchitecturesAllowed=x86 x64 arm64
|
||||
ArchitecturesAllowed=x86compatible x64compatible arm64
|
||||
ArchitecturesInstallIn64BitMode=
|
||||
#endif
|
||||
#if Arch == "x64"
|
||||
ArchitecturesAllowed=x64 arm64
|
||||
ArchitecturesInstallIn64BitMode=x64 arm64
|
||||
ArchitecturesAllowed=x64compatible arm64
|
||||
ArchitecturesInstallIn64BitMode=x64compatible arm64
|
||||
#endif
|
||||
CloseApplications=true
|
||||
SetupMutex={#app_name}_setup_mutex,Global\{#app_name}_setup_mutex
|
||||
@ -112,7 +113,7 @@ WizardImageFile=.\Resources\WizardImageFileSmall.bmp
|
||||
|
||||
|
||||
[Languages]
|
||||
Name: "enu"; MessagesFile: "compiler:Default.isl"
|
||||
Name: "enu"; MessagesFile: "compiler:Languages-mod\Default.isl"
|
||||
Name: "afk"; MessagesFile: "compiler:Languages-mod\Afrikaans.isl"
|
||||
Name: "bel"; MessagesFile: "compiler:Languages-mod\Belarusian.isl"
|
||||
Name: "deu"; MessagesFile: "compiler:Languages-mod\German.isl"
|
||||
|
||||
@ -2,12 +2,12 @@
|
||||
;*
|
||||
;* (c) Rizonesoft 2008-2024
|
||||
|
||||
; Requirements:
|
||||
; Inno Setup: https://jrsoftware.org/isinfo.php
|
||||
;Requirements: Inno Setup 6.3.x or higher
|
||||
;Inno Setup: https://jrsoftware.org/isinfo.php
|
||||
|
||||
;Thanks to "Wilenty" for his great help in improving the INNO Setup installer
|
||||
|
||||
; Preprocessor related stuff
|
||||
;Preprocessor related stuff
|
||||
// if you compile a "beta, rc or rc2" version, then comment/un-comment the appropriate setting:
|
||||
;#define VRSN=" beta"
|
||||
;#define VRSN=" rc"
|
||||
@ -97,13 +97,14 @@ DisableWelcomePage=no
|
||||
AllowCancelDuringInstall=yes
|
||||
UsedUserAreasWarning=no
|
||||
MinVersion=0,6.1sp1
|
||||
OnlyBelowVersion=0,0
|
||||
#if Arch == "x86"
|
||||
ArchitecturesAllowed=x86 x64 arm64
|
||||
ArchitecturesAllowed=x86compatible x64compatible arm64
|
||||
ArchitecturesInstallIn64BitMode=
|
||||
#endif
|
||||
#if Arch == "x64"
|
||||
ArchitecturesAllowed=x64 arm64
|
||||
ArchitecturesInstallIn64BitMode=x64 arm64
|
||||
ArchitecturesAllowed=x64compatible arm64
|
||||
ArchitecturesInstallIn64BitMode=x64compatible arm64
|
||||
#endif
|
||||
CloseApplications=true
|
||||
SetupMutex={#app_name}_setup_mutex,Global\{#app_name}_setup_mutex
|
||||
@ -112,7 +113,7 @@ WizardImageFile=.\Resources\WizardImageFileSmall.bmp
|
||||
|
||||
|
||||
[Languages]
|
||||
Name: "enu"; MessagesFile: "compiler:Default.isl"
|
||||
Name: "enu"; MessagesFile: "compiler:Languages-mod\Default.isl"
|
||||
Name: "afk"; MessagesFile: "compiler:Languages-mod\Afrikaans.isl"
|
||||
Name: "bel"; MessagesFile: "compiler:Languages-mod\Belarusian.isl"
|
||||
Name: "deu"; MessagesFile: "compiler:Languages-mod\German.isl"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user