mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-14 21:09:05 +08:00
+upd: version info for MS VS2022 (v17.4.5) update and minor fixes
This commit is contained in:
parent
c0f6cf23e5
commit
3f25a824b1
@ -47,7 +47,7 @@ NEW:
|
||||
CHANGES:
|
||||
--------------------------------------------------------
|
||||
[.###.#]- .
|
||||
[.207.1]- Installer script resets "Theme files" only on user decision.
|
||||
[.207.1]- Installer script resets "Theme files" only on user decision (SUP).
|
||||
|
||||
--------------------------------------------------------
|
||||
FIXES:
|
||||
@ -104,7 +104,7 @@ NEW:
|
||||
[.120.1]- Paragraph navigation (Alt+PageUp, Alt+PageDown).
|
||||
[.109.1]- Allow "dotbox" instead of "horiz. line" for folded text.
|
||||
[.102.1]- Allow Line Number color to be alpha blended (e.g. DarkMode).
|
||||
[1223.1]- Allow "Notepad3 x64 Setup" to install on Win11 Arm (64-bit emulation).
|
||||
[1223.1]- Allow "Notepad3 x64 Setup" to install on Win11 Arm (64-bit emulation) (SUP).
|
||||
[1212.1]- Implementation of automatic parenthesis closure.
|
||||
[1029.1]- Darkmode highlight (foreground) contrast settings + default reduction to 75%.
|
||||
[1018.1]- Add example for tinyexpr in Modify Lines dialog.
|
||||
|
||||
@ -431,6 +431,10 @@ New parameter "[Settings2] ExitOnESCSkipLevel = 2"
|
||||
|
||||
- A value of zero (0) (or less than 100 ms) will disable the tooltip display.
|
||||
|
||||
#### `WrapAroundTooltipTimeout=2000`
|
||||
|
||||
- A value of zero (0) (or less than 100 ms) will disable the tooltip display.
|
||||
|
||||
#### `LargeIconScalePrecent=150`
|
||||
|
||||
- `Screen/Display Scale Percent` threshold to switch to bigger file types icons (lexer style selections)
|
||||
@ -476,7 +480,7 @@ If used, this setting also defines the field ordering.
|
||||
- Section 2 = Sel : Number of characters selected
|
||||
- Section 3 = Sb : Number of bytes (Bytes in [UTF-8]) selected
|
||||
- Section 4 = SLn : Number of selected lines
|
||||
- Section 5 = Occ : Number of Marked Occurrences
|
||||
- Section 5 = Occ : Number of Marked Occurrences
|
||||
- Section 6 = Size of file in [UTF-8] Mode
|
||||
- Section 7 = Encoding Mode (double click to open `Encoding F9` )
|
||||
- Section 8 = EOL Mode (Toggle CR+LF, LF, CR)
|
||||
|
||||
@ -17,6 +17,7 @@ DUTCH=true
|
||||
FRENCH=true
|
||||
GERMAN=true
|
||||
GREEK=true
|
||||
HINDI=true
|
||||
HUNGARIAN=true
|
||||
INDONESIAN=true
|
||||
ITALIAN=true
|
||||
|
||||
@ -95,6 +95,7 @@ FRENCH=true
|
||||
GERMAN=true
|
||||
GREEK=true
|
||||
;HEBREW=true
|
||||
HINDI=true
|
||||
HUNGARIAN=true
|
||||
;ICELANDIC=true
|
||||
;IGBO=true
|
||||
|
||||
@ -149,7 +149,9 @@ inline LPCWSTR _Win10BuildToReleaseId(const DWORD build)
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#if (_MSC_VER == 1934)
|
||||
#if (_MSC_FULL_VER >= 193431937)
|
||||
#if (_MSC_FULL_VER >= 193431942)
|
||||
#define VER_CPL MS Visual C++ 2022 v17.4.5
|
||||
#elif (_MSC_FULL_VER >= 193431937)
|
||||
#define VER_CPL MS Visual C++ 2022 v17.4.(3-4)
|
||||
#elif (_MSC_FULL_VER >= 193431935)
|
||||
#define VER_CPL MS Visual C++ 2022 v17.4.2
|
||||
|
||||
Loading…
Reference in New Issue
Block a user