parent
f48255d647
commit
5b35000c30
|
@ -1,31 +1,11 @@
|
|||
Notepad++ v7.4.1 bug-fixes:
|
||||
Notepad++ 7.4.2 new featurs/enhancements & 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).
|
||||
2. Add peek on document map feature.
|
||||
3. Fix issue with clicking links in html/js/asp/php.
|
||||
4. Fix folding vertical line loses colour after changing folding style via Preference dialog.
|
||||
5. Enhance folding feature (multi-line quotes) for python.
|
||||
6. Improve certificate verifying method.
|
||||
7. Fix issue of losing syntax highlighting while changing file extension (by "save as").
|
||||
8. Enhance the UI of "Windows" dialog (Menu "Window->Windows...") for sorting.
|
||||
9. Apply the new file custom encoding (Unicode or not) while opening an empty content file.
|
||||
10. Improve whitespace visibility while the visualization of whitespace is activated.
|
||||
11. Support RTL for header and footer printing.
|
||||
12. Add a warning message for launching folder as Workspace while both files and folders are dropped in Notepad++.
|
||||
13. Drag and dropping tabs is possible in multi-line tab mode.
|
||||
14. Fix issue of right clicking on multiline tabs.
|
||||
15. Add new moving tabs with mouse wheel feature (SHIFT + Mouse Wheel)
|
||||
16. Fix text on active tabs (multi-line mode) being clipped problem.
|
||||
17. Fix regression for saving session file (for session file extension, if set).
|
||||
18. Enhance saving workspace file by adding workspace file extension (if set).
|
||||
19. Fix change.log always opened issue.
|
||||
1. Add SWIFT language support.
|
||||
2. Fix replace in files regression.
|
||||
3. Enhance Find Replace dialog (resizable & remove search direction radio buttons).
|
||||
4. Fix a crash issue while doing a column insertion on a CJK unicode document.
|
||||
5. Fix repeated notification dialog for modification from outside of Notepad++.
|
||||
6. Fix a visual glitchy during tab drag and drop.
|
||||
|
||||
|
||||
Included plugins:
|
||||
|
|
|
@ -29,10 +29,10 @@
|
|||
; Define the application name
|
||||
!define APPNAME "Notepad++"
|
||||
|
||||
!define APPVERSION "7.4.1"
|
||||
!define APPVERSION "7.4.2"
|
||||
!define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}"
|
||||
!define VERSION_MAJOR 7
|
||||
!define VERSION_MINOR 41
|
||||
!define VERSION_MINOR 42
|
||||
|
||||
!define APPWEBSITE "http://notepad-plus-plus.org/"
|
||||
|
||||
|
|
|
@ -27,12 +27,12 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.4.1")
|
||||
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.4.2")
|
||||
|
||||
// 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.41\0")
|
||||
#define VERSION_DIGITALVALUE 7, 4, 1, 0
|
||||
#define VERSION_VALUE TEXT("7.42\0")
|
||||
#define VERSION_DIGITALVALUE 7, 4, 2, 0
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue