parent
40c902425f
commit
2854de22ec
|
@ -1,10 +1,11 @@
|
||||||
Notepad++ v6.8.3 bug-fixes:
|
Notepad++ v6.8.3 bug-fixes:
|
||||||
|
|
||||||
1. Fix the crash by using wild card (*) to open files on command line.
|
1. Fix a crash issue by using wild card (*) to open files on command line.
|
||||||
2. Fix the problem of display refresh missing on exit.
|
2. Fix the problem of display refresh missing on exit.
|
||||||
3. Fix plugin shortcut configuration lost problem by using option -noPlugin.
|
3. Fix plugin shortcut configuration lost problem by using option -noPlugin.
|
||||||
4. Fix Norwegian localization bad display and wrong encoding.
|
4. Fix Norwegian localization bad display and wrong encoding.
|
||||||
|
5. Fix functionList display problem under high DPI.
|
||||||
|
6. Fix Norwegian localization bad display and wrong encoding.
|
||||||
|
|
||||||
|
|
||||||
Included plugins:
|
Included plugins:
|
||||||
|
|
|
@ -36,10 +36,10 @@
|
||||||
; Define the application name
|
; Define the application name
|
||||||
!define APPNAME "Notepad++"
|
!define APPNAME "Notepad++"
|
||||||
|
|
||||||
!define APPVERSION "6.8.2"
|
!define APPVERSION "6.8.3"
|
||||||
!define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}"
|
!define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}"
|
||||||
!define VERSION_MAJOR 6
|
!define VERSION_MAJOR 6
|
||||||
!define VERSION_MINOR 82
|
!define VERSION_MINOR 83
|
||||||
|
|
||||||
!define APPWEBSITE "http://notepad-plus-plus.org/"
|
!define APPWEBSITE "http://notepad-plus-plus.org/"
|
||||||
|
|
||||||
|
|
|
@ -26,13 +26,13 @@
|
||||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v6.8.2")
|
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v6.8.3")
|
||||||
|
|
||||||
|
|
||||||
// should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71
|
// 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")
|
// ex : #define VERSION_VALUE TEXT("5.63\0")
|
||||||
#define VERSION_VALUE TEXT("6.82\0")
|
#define VERSION_VALUE TEXT("6.83\0")
|
||||||
#define VERSION_DIGITALVALUE 6, 8, 2, 0
|
#define VERSION_DIGITALVALUE 6, 8, 3, 0
|
||||||
|
|
||||||
#ifndef IDC_STATIC
|
#ifndef IDC_STATIC
|
||||||
#define IDC_STATIC -1
|
#define IDC_STATIC -1
|
||||||
|
|
Loading…
Reference in New Issue