mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-11 21:03:05 +08:00
Releasing RC2 Build 1434
This commit is contained in:
parent
731a633ed7
commit
8f3e242990
@ -12,7 +12,61 @@ LEGEND:
|
||||
|
||||
==================================================
|
||||
|
||||
==================================================
|
||||
Version 5.18.1103.1407 (3 November 2018)
|
||||
==================================================
|
||||
|
||||
--------------------------------------------------
|
||||
NEW:
|
||||
--------------------------------------------------
|
||||
|
||||
- Added initial "minipath.ini" to Visual Studio Project.
|
||||
- Read undefined MiniPath settings from Notepad3.ini (Preferred language and Favorites directory).
|
||||
- MiniPath Multilingual support.
|
||||
- Handle zero-length lines in line-sorting algorithm.
|
||||
- Support for "Rust" source code syntax highlighting.
|
||||
- Multilingual support.
|
||||
|
||||
--------------------------------------------------
|
||||
CHANGES:
|
||||
--------------------------------------------------
|
||||
|
||||
|
||||
- MiniPath About dialog: visual adjustments.
|
||||
- Optimize icon resource handling.
|
||||
- Optimized MiniPath resource file (icon/bitmap placement).
|
||||
- Enhanced MiniPath.
|
||||
- Small design change of MiniPath's Copy/Move dialog box.
|
||||
- Scintilla updated to 410.
|
||||
- Print option "Screen Colors" now prints with the same colors used on screen including line numbers.
|
||||
- Changed behavior of removing duplicate lines (ignore EOL/EOF chars).
|
||||
- Line sorting: Move empty lines to end of selection (always, if not removed).
|
||||
- Adapted PortableApps.com creator script to MUI structure.
|
||||
- STD/2ND sync with DefaultText/2ndDefaultText handling.
|
||||
|
||||
--------------------------------------------------
|
||||
FIXES:
|
||||
--------------------------------------------------
|
||||
|
||||
- Do not reset scroll-width tracking on saving file (issue #539: https://github.com/rizonesoft/Notepad3/issues/539).
|
||||
- Fixed portable MiniPath redirector .ini files.
|
||||
- Support Scintilla's new indicator box styles ("INDIC_GRADIENT" and "INDIC_CRADIENTCENTRE").
|
||||
- Fixed incremental search on find/replace dialog.
|
||||
- Fixed line sorting.
|
||||
- Center commandline help dialog.
|
||||
- In case of STD lexer only display "Default Text" in statusbar (indicator shows which one).
|
||||
- Fixed resource file problem (preproc defines).
|
||||
|
||||
--------------------------------------------------
|
||||
TRANSLATIONS (MUI):
|
||||
--------------------------------------------------
|
||||
|
||||
- French Translation.
|
||||
- MiniPath German Translation.
|
||||
- English (UK) Translation.
|
||||
- German Translation.
|
||||
|
||||
==================================================
|
||||
Version 4.18.511.992 (12 May 2018)
|
||||
--------------------------------------------------
|
||||
- New: Menu entries for (hidden) Accelerator Keys.
|
||||
|
||||
@ -1 +1,2 @@
|
||||
\obj\
|
||||
\obj\
|
||||
\lng\en-US\
|
||||
@ -85,7 +85,7 @@ IF EXIST "%TEMP_NAME%" RD /S /Q "%TEMP_NAME%"
|
||||
IF NOT EXIST "%TEMP_NAME%" MD "%TEMP_NAME%"
|
||||
IF NOT EXIST "Packages" MD "Packages"
|
||||
|
||||
FOR %%A IN ("Changes.txt" "License.txt" "Readme.txt"^
|
||||
FOR %%A IN ("Changes.txt" "License.txt" "Readme.txt" "Notepad3.ini" "minipath.ini"^
|
||||
"..\%1\ced.exe" "..\%1\Notepad3.exe" "..\%1\np3encrypt.exe"^
|
||||
"..\%1\minipath.exe") DO COPY /Y /V "%%A" "%TEMP_NAME%\"
|
||||
|
||||
@ -98,8 +98,8 @@ IF NOT EXIST "%FAVORITES%" MD "%FAVORITES%"
|
||||
|
||||
PUSHD "%TEMP_NAME%"
|
||||
"%SEVENZIP%" a -tzip -mx=9^
|
||||
"%ZIP_NAME%.zip" "License.txt" "Notepad3.exe" "Changes.txt"^
|
||||
"Readme.txt" "Favorites" "minipath.exe" "np3encrypt.exe" "ced.exe" "lng">NUL
|
||||
"%ZIP_NAME%.zip" "License.txt" "Notepad3.exe" "Notepad3.ini" "Changes.txt"^
|
||||
"Readme.txt" "Favorites" "minipath.exe" "minipath.ini" "np3encrypt.exe" "ced.exe" "lng">NUL
|
||||
IF %ERRORLEVEL% NEQ 0 CALL :SUBMSG "ERROR" "Compilation failed!"
|
||||
|
||||
CALL :SUBMSG "INFO" "%ZIP_NAME%.zip created successfully!"
|
||||
|
||||
@ -1 +1 @@
|
||||
1339
|
||||
1434
|
||||
|
||||
@ -1 +1 @@
|
||||
RC_NewMenu
|
||||
RC
|
||||
|
||||
@ -3,8 +3,8 @@
|
||||
<assemblyIdentity
|
||||
name="Notepad3"
|
||||
processorArchitecture="*"
|
||||
version="5.18.1103.1339"
|
||||
version="5.18.1106.1434"
|
||||
type="win32"
|
||||
/>
|
||||
<description>Notepad3 RC_NewMenu</description>
|
||||
<description>Notepad3 RC</description>
|
||||
</assembly>
|
||||
|
||||
@ -6,8 +6,8 @@
|
||||
#define APPNAME "Notepad3"
|
||||
#define VERSION_MAJOR 5
|
||||
#define VERSION_MINOR 18
|
||||
#define VERSION_REV 1103
|
||||
#define VERSION_BUILD 1339
|
||||
#define VERSION_REV 1106
|
||||
#define VERSION_BUILD 1434
|
||||
#define SCINTILLA_VER 412
|
||||
#define ONIGMO_REGEX_VER 6.1.3
|
||||
#define VERSION_PATCH " RC_NewMenu"
|
||||
#define VERSION_PATCH " RC"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user