Notepad++ v7.3 release
This commit is contained in:
parent
8fc1a2ed30
commit
8efadf9bf7
|
@ -1,8 +1,10 @@
|
|||
Notepad++ 7.2.2 bug-fixes:
|
||||
Notepad++ 7.3 new feature & bug-fixes:
|
||||
|
||||
1. Fix auto-updater setting toggles between startups bug.
|
||||
2. Fix "Replace All" button shortcut accelerator in Replce dialog not working regression.
|
||||
3. Fix unusual plugin update prompt after upgrade to 7.2.1 version.
|
||||
1. Add MD5 functionalities.
|
||||
2. Fix the problem of launch Notepad++ with Admin right after installation.
|
||||
3. Fix a problem of recent file history - add to recent file history only if file is removed from all the views.
|
||||
4. Get back Find dialog while you lost it (in a multi-screen + laptop configuration).
|
||||
5. Fix long hyperlinks truncated problem.
|
||||
|
||||
|
||||
Included plugins:
|
||||
|
|
|
@ -29,10 +29,10 @@
|
|||
; Define the application name
|
||||
!define APPNAME "Notepad++"
|
||||
|
||||
!define APPVERSION "7.2.2"
|
||||
!define APPVERSION "7.3"
|
||||
!define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}"
|
||||
!define VERSION_MAJOR 7
|
||||
!define VERSION_MINOR 22
|
||||
!define VERSION_MINOR 3
|
||||
|
||||
!define APPWEBSITE "http://notepad-plus-plus.org/"
|
||||
|
||||
|
|
|
@ -27,12 +27,12 @@
|
|||
#pragma once
|
||||
|
||||
|
||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.2.2")
|
||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.3")
|
||||
|
||||
// should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71
|
||||
// ex : #define VERSION_VALUE TEXT("5.63\0")
|
||||
#define VERSION_VALUE TEXT("7.22\0")
|
||||
#define VERSION_DIGITALVALUE 7, 2, 2, 0
|
||||
#define VERSION_VALUE TEXT("7.3\0")
|
||||
#define VERSION_DIGITALVALUE 7, 3, 0, 0
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue