parent
a067de8ce2
commit
71ffe870c5
|
@ -1,3 +1,10 @@
|
|||
Notepad++ v7.4.1 bug-fixes:
|
||||
|
||||
1. Fix Notepad++ hanging issue on start up due to its connection on Internet - disable the certification chain verification.
|
||||
2. Fix the opened zero length file not saving bug.
|
||||
3. Improve Document Peeker performance issue for large files.
|
||||
|
||||
|
||||
Notepad++ 7.4 new featurs/enhancements & bug-fixes:
|
||||
|
||||
1. Add document peek feature (while mouse hovering on tab).
|
||||
|
|
|
@ -29,10 +29,10 @@
|
|||
; Define the application name
|
||||
!define APPNAME "Notepad++"
|
||||
|
||||
!define APPVERSION "7.4"
|
||||
!define APPVERSION "7.4.1"
|
||||
!define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}"
|
||||
!define VERSION_MAJOR 7
|
||||
!define VERSION_MINOR 4
|
||||
!define VERSION_MINOR 41
|
||||
|
||||
!define APPWEBSITE "http://notepad-plus-plus.org/"
|
||||
|
||||
|
|
|
@ -27,12 +27,12 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.4")
|
||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.4.1")
|
||||
|
||||
// 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.4\0")
|
||||
#define VERSION_DIGITALVALUE 7, 4, 0, 0
|
||||
#define VERSION_VALUE TEXT("7.41\0")
|
||||
#define VERSION_DIGITALVALUE 7, 4, 1, 0
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue