+ Upd: Version files and Changes.txt

This commit is contained in:
Pairi Daiza 2020-12-18 17:51:17 +01:00
parent 28c958f524
commit f623f8917f
9 changed files with 23 additions and 44 deletions

4
.gitignore vendored
View File

@ -57,11 +57,9 @@ Thumbs.db
/np3portableapp/Notepad3Portable/Notepad3Portable.exe
/np3portableapp/Notepad3Portable/App/AppInfo/appinfo.ini
/np3portableapp/Notepad3Portable/App/DefaultData/settings
/np3portableapp/Notepad3Portable/App/Notepad3/Docs/*.txt
/np3portableapp/Notepad3Portable/App/Notepad3/Docs
/np3portableapp/Notepad3Portable/App/Notepad3/x64/*.exe
/np3portableapp/Notepad3Portable/App/Notepad3/x64/lng
/np3portableapp/Notepad3Portable/App/Notepad3/x64/grepWin/*.*
/np3portableapp/Notepad3Portable/App/Notepad3/x86/*.exe
/np3portableapp/Notepad3Portable/App/Notepad3/x86/lng
/np3portableapp/Notepad3Portable/App/Notepad3/x86/grepWin/*.*

View File

@ -1,33 +0,0 @@
#.LOG
################################################################################
=== Notepad3 B A C K L O G : List of things ToDo === encoding: UTF-8
================================================================================
+ Title Indicator (Changed/Deleted file on disk (#2179)
+ Migration to lexilla (Scintilla's Lexer library concept)
(Add Lexers: Kotlin, Julia, Fortran, Rexx, ...)
+ DPI Scaling issues (initial display, moving dialog, toolbar buttons, ...)
+ Check and Change for very long file paths (remove MAX_PATH limitation)
(https://docs.microsoft.com/de-de/windows/win32/fileio/naming-a-file?redirectedfrom=MSDN#maximum-path-length-limitation)
+ Full "Dark Mode" capabilities
+ Backup, AutoSave and Desaster Recovery
+
################################################################################
=== I T E M S D O N E ===
================================================================================
- Extending MiniPath.exe for "Search text in many files" capability ...
(Search for free tools, which may be bound to Notepad3 (like minipath.exe) ... )
=> Found, adapt and integrate "grepWin(NP3)" from Stefan Küng (author of BowPad)
################################################################################

View File

@ -34,7 +34,7 @@ SUP - (S)et(UP) / Installer Package
========================================================
Current BETA/RC Version 5.20.1214.(build_#) (2020-12-14)
Current BETA/RC Version 5.20.1218.(build_#) (2020-12-18)
========================================================
--------------------------------------------------------
@ -63,6 +63,7 @@ NEW:
CHANGES:
--------------------------------------------------------
[.xxx.x]- .
[1218.1]- Avoid wrap-around requester if there is no other possible occurrence.
[1214.1]- Behavior change: copy to clipboard on empty selection -> don't copy anything if current line is empty.
[1214.1]- Update keywords list in Style INNO Lexer.
[1211.1]- No error message after decline loading file of huge size.
@ -99,6 +100,7 @@ CHANGES:
FIXES:
--------------------------------------------------------
[.xxx.x]- .
[1218.1]- Multi-Replace using RegExpr and Group-References.
[1211.1]- Refactoring encoding detection: pure ASCII vs. 7-bit.
[1125.2]- File encoding analysis with 7-bit ASCII only.
[1125.2]- File save problem after switching encoding to GB2312 (52936).

View File

@ -1 +1 @@
1214
1218

View File

@ -1,4 +1,4 @@
#define SAPPNAME "MiniPath"
#define MNPTHNAME "MiniPath"
#define VERSION_MAJOR 1
#define VERSION_MINOR 0
#define VERSION_REV 2

View File

@ -37,7 +37,7 @@ BEGIN
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "FileDescription", SAPPNAME
VALUE "FileDescription", MNPTHNAME
VALUE "FileVersion", VERSION_FILEVERSION_SHORT
VALUE "InternalName", VERSION_INTERNALNAME
VALUE "LegalCopyright", VERSION_LEGALCOPYRIGHT_LONG

View File

@ -102,6 +102,18 @@ if not exist "%NP3_PORTAPP_DIR%\App\Notepad3\Docs\" (
del /s /f /q "%NP3_PORTAPP_DIR%\App\Notepad3\Docs\*.*"
)
if not exist "%NP3_PORTAPP_DIR%\App\Notepad3\Docs\crypto\" (
mkdir "%NP3_PORTAPP_DIR%\App\Notepad3\Docs\crypto\"
) else (
del /s /f /q "%NP3_PORTAPP_DIR%\App\Notepad3\Docs\crypto\*.*"
)
if not exist "%NP3_PORTAPP_DIR%\App\Notepad3\Docs\uthash\" (
mkdir "%NP3_PORTAPP_DIR%\App\Notepad3\Docs\uthash\"
) else (
del /s /f /q "%NP3_PORTAPP_DIR%\App\Notepad3\Docs\uthash\*.*"
)
:: Delete all files in "Notepad3\x86" and "Notepad3\x64" folders, except all .ini files.
:: Because "blank" in filenames, the files in "gwLng" folder is NOT deleted (done below)!
for /f %%f in ('dir "%NP3_PORTAPP_DIR%\App\Notepad3\x86\" /b /a-d /s ^| findstr /v /e .ini') do del "%%f"
@ -116,8 +128,8 @@ copy "%SCRIPT_DIR%..\Readme.txt" "%NP3_PORTAPP_DIR%\App\Notepad3\Docs\Readme.txt
copy "%NP3_DOC_DIR%\Notepad3.txt" "%NP3_PORTAPP_DIR%\App\Notepad3\Docs\Notepad3.txt" /Y /V
copy "%NP3_DOC_DIR%\KeyboardShortcuts.txt" "%NP3_PORTAPP_DIR%\App\Notepad3\Docs\KeyboardShortcuts.txt" /Y /V
copy "%NP3_DOC_DIR%\Oniguruma_RE.txt" "%NP3_PORTAPP_DIR%\App\Notepad3\Docs\Oniguruma_RE.txt" /Y /V
copy "%NP3_DOC_DIR%\crypto\encryption-doc.txt" "%NP3_PORTAPP_DIR%\App\Notepad3\Docs\encryption-doc.txt" /Y /V
copy "%NP3_DOC_DIR%\crypto\read_me.txt" "%NP3_PORTAPP_DIR%\App\Notepad3\Docs\encrypt-read_me.txt" /Y /V
copy "%NP3_DOC_DIR%\crypto\*.txt" "%NP3_PORTAPP_DIR%\App\Notepad3\Docs\crypto\*.txt" /Y /V
copy "%NP3_DOC_DIR%\uthash\*.txt" "%NP3_PORTAPP_DIR%\App\Notepad3\Docs\uthash\*.txt" /Y /V
copy "%NP3_GREPWIN_DIR%\grepWinLicense.txt" "%NP3_PORTAPP_DIR%\App\Notepad3\Docs\grepWinLicense.txt" /Y /V
:: Copy all current "Notepad3.exe" and "MiniPath.exe" files

View File

@ -3,7 +3,7 @@
<assemblyIdentity
name="Notepad3"
processorArchitecture="*"
version="5.20.1214.1"
version="5.20.1218.1"
type="win32"
/>
<description>Notepad3 beta</description>

View File

@ -8,7 +8,7 @@
#define SAPPNAME "Notepad3"
#define VERSION_MAJOR 5
#define VERSION_MINOR 20
#define VERSION_REV 1214
#define VERSION_REV 1218
#define VERSION_BUILD 1
#define SCINTILLA_VER 446
#define ONIGURUMA_REGEX_VER 6.9.6