[RELEASE] Notepad++ 6.8.5 release
This commit is contained in:
parent
986492e47b
commit
828e14aca1
|
@ -1,3 +1,7 @@
|
|||
Notepad++ v6.8.5 bug-fixes:
|
||||
1. Fix Javascript autocompletion not working regression.
|
||||
|
||||
|
||||
Notepad++ v6.8.4 bug-fixes and enhancements:
|
||||
|
||||
1. Improve document switching performance while folding restoring.
|
||||
|
|
|
@ -36,10 +36,10 @@
|
|||
; Define the application name
|
||||
!define APPNAME "Notepad++"
|
||||
|
||||
!define APPVERSION "6.8.4"
|
||||
!define APPVERSION "6.8.5"
|
||||
!define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}"
|
||||
!define VERSION_MAJOR 6
|
||||
!define VERSION_MINOR 84
|
||||
!define VERSION_MINOR 85
|
||||
|
||||
!define APPWEBSITE "http://notepad-plus-plus.org/"
|
||||
|
||||
|
|
|
@ -60,7 +60,6 @@ mkdir .\zipped.package.release\themes
|
|||
mkdir .\zipped.package.release\plugins
|
||||
mkdir .\zipped.package.release\plugins\APIs
|
||||
mkdir .\zipped.package.release\plugins\Config
|
||||
mkdir .\zipped.package.release\plugins\Config\Hunspell
|
||||
mkdir .\zipped.package.release\plugins\doc
|
||||
|
||||
|
||||
|
|
|
@ -26,13 +26,13 @@
|
|||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
#pragma once
|
||||
|
||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v6.8.4")
|
||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v6.8.5")
|
||||
|
||||
|
||||
// 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("6.84\0")
|
||||
#define VERSION_DIGITALVALUE 6, 8, 4, 0
|
||||
#define VERSION_VALUE TEXT("6.85\0")
|
||||
#define VERSION_DIGITALVALUE 6, 8, 5, 0
|
||||
|
||||
#ifndef IDC_STATIC
|
||||
#define IDC_STATIC -1
|
||||
|
|
Loading…
Reference in New Issue