| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Notepad++
Revision: 301
Author: donho
Date: 21 Jul 2008 18:33:22
Changes:[RELEASE] v5.0.2 release.
Files:| ... | ...@@ -1,3 +1,14 @@ | |
| 1 | Notepad++ v5.0.2 fixed bugs and added features (from v5.0.1) : | |
| 2 | ||
| 3 | 1. Fix crash bug for tags match highlighting. | |
| 4 | 2. Fix the huge file makes notepad++ crash issue. | |
| 5 | 3. Fix adding item in the history file list while deleting file from Notepad++ bug. | |
| 6 | 4. Fix a bug that file detection options set are not saved due to doc monitor plugin. | |
| 7 | 5. Improve opening file performance. | |
| 8 | 6. Fix bug when closing file using close button. | |
| 9 | ||
| 10 | ||
| 11 | ||
| 1 | 12 | Notepad++ v5.0.1 fixed bugs and added features (from v5) : |
| 2 | 13 | |
| 3 | 14 | 1. Fix tags match highlighter bug - more accurate. |
| ... | ...@@ -17,16 +17,16 @@ | |
| 17 | 17 | |
| 18 | 18 | ; Define the application name |
| 19 | 19 | !define APPNAME "Notepad++" |
| 20 | !define APPNAMEANDVERSION "Notepad++ v5.0.1" | |
| 20 | !define APPNAMEANDVERSION "Notepad++ v5.0.2" | |
| 21 | 21 | |
| 22 | 22 | !define VERSION_MAJOR 5 |
| 23 | !define VERSION_MINOR 01 | |
| 23 | !define VERSION_MINOR 02 | |
| 24 | 24 | |
| 25 | 25 | ; Main Install settings |
| 26 | 26 | Name "${APPNAMEANDVERSION}" |
| 27 | 27 | InstallDir "$PROGRAMFILES\Notepad++" |
| 28 | 28 | InstallDirRegKey HKLM "Software\${APPNAME}" "" |
| 29 | OutFile "..\bin\npp.5.0.1.Installer.exe" | |
| 29 | OutFile "..\bin\npp.5.0.2.Installer.exe" | |
| 30 | 30 | |
| 31 | 31 | ; GetWindowsVersion |
| 32 | 32 | ; |
| ... | ...@@ -18,9 +18,9 @@ | |
| 18 | 18 | #ifndef RESOURCE_H |
| 19 | 19 | #define RESOURCE_H |
| 20 | 20 | |
| 21 | #define NOTEPAD_PLUS_VERSION "Notepad++ v5.0.1" | |
| 22 | #define VERSION_VALUE "5.01\0" // should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71 | |
| 23 | #define VERSION_DIGITALVALUE 5, 0, 1, 0 | |
| 21 | #define NOTEPAD_PLUS_VERSION "Notepad++ v5.0.2" | |
| 22 | #define VERSION_VALUE "5.02\0" // should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71 | |
| 23 | #define VERSION_DIGITALVALUE 5, 0, 2, 0 | |
| 24 | 24 | |
| 25 | 25 | #ifndef IDC_STATIC |
| 26 | 26 | #define IDC_STATIC -1 |