Browse Source

[RELEASE] Notepad++ 6.8.4 release

pull/1019/head v6.8.4
Don Ho 9 years ago
parent
commit
8e103d837a
  1. 32
      PowerEditor/bin/change.log
  2. 4
      PowerEditor/installer/nppSetup.nsi
  3. 6
      PowerEditor/src/resource.h
  4. 2
      PowerEditor/src/stylers.model.xml

32
PowerEditor/bin/change.log

@ -1,18 +1,24 @@
Notepad++ v6.8.3 bug-fixes: Notepad++ v6.8.4 bug-fixes and enhancements:
1. Fix a crash issue by using wild card (*) to open files on command line. 1. Improve document switching performance while folding restoring.
2. Fix the problem of display refresh missing on exit. 2. Enhance Javascript syntax highlighting: 2 groups of keywords more for syntax highlighting customization.
3. Fix plugin shortcut configuration lost problem by using option -noPlugin. 3. Improve auto-insert usability: the open symbols (", ', (, [ and { ) triggers the close symbols according to the context.
4. Fix Norwegian localization bad display and wrong encoding. 4. Apply new added language auto-detection (for php, xml, html and bash) in the case of unknown file extension.
5. Fix functionList display problem under high DPI. 4. Add JSON language support.
6. Fix Norwegian localization bad display and wrong encoding. 5. Fix macro playback inserting/removing characters randomly.
6. Fix Save All button is still enabled problem while no file to save.
7. Make file save dialog modern style.
8. Fix auto-insert for xml comment incorrect insertion.
9. Fix user command save problem on exit.
10. Fix macro save problem on exit.
11. Fix the restoring from system tray problem while running in admin mode.
12. Fix smart highlighting not working in some case.
13. Enlarge tabbar height.
Included plugins: Included plugins:
1. NppFTP 0.26.3 1. NppExport v0.2.8
2. NppExport v0.2.8 2. Plugin Manager 1.3.5
3. Plugin Manager 1.3.5 3. Converter 3.0
4. Converter 3.0 4. Mime Tool 1.9
5. Mime Tool 1.9

4
PowerEditor/installer/nppSetup.nsi

@ -36,10 +36,10 @@
; Define the application name ; Define the application name
!define APPNAME "Notepad++" !define APPNAME "Notepad++"
!define APPVERSION "6.8.3" !define APPVERSION "6.8.4"
!define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}" !define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}"
!define VERSION_MAJOR 6 !define VERSION_MAJOR 6
!define VERSION_MINOR 83 !define VERSION_MINOR 84
!define APPWEBSITE "http://notepad-plus-plus.org/" !define APPWEBSITE "http://notepad-plus-plus.org/"

6
PowerEditor/src/resource.h

@ -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.3") #define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v6.8.4")
// 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.83\0") #define VERSION_VALUE TEXT("6.84\0")
#define VERSION_DIGITALVALUE 6, 8, 3, 0 #define VERSION_DIGITALVALUE 6, 8, 4, 0
#ifndef IDC_STATIC #ifndef IDC_STATIC
#define IDC_STATIC -1 #define IDC_STATIC -1

2
PowerEditor/src/stylers.model.xml

@ -414,7 +414,7 @@
<LexerType name="json" desc="JSON" ext=""> <LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="11" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="DEFAULT" styleID="11" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF8000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="NUMBER" styleID="4" fgColor="FF8000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="STRING" styleID="6" fgColor="373737" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="STRING" styleID="6" fgColor="800000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CHARACTER" styleID="7" fgColor="808080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="CHARACTER" styleID="7" fgColor="808080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="OPERATOR" styleID="10" fgColor="8000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" /> <WordsStyle name="OPERATOR" styleID="10" fgColor="8000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
</LexerType> </LexerType>

Loading…
Cancel
Save