Notepad++ v7.3.1 release

This commit is contained in:
Don Ho 2017-01-17 20:34:41 +01:00
parent f3db698166
commit 8f2977a018
3 changed files with 9 additions and 12 deletions

View File

@ -1,10 +1,7 @@
Notepad++ 7.3 new feature & bug-fixes:
Notepad++ 7.3.1 bug-fix & enhancement:
1. Add MD5 functionalities.
2. Fix the problem of launch Notepad++ with Admin right after installation.
3. Fix a problem of recent file history - add to recent file history only if file is removed from all the views.
4. Get back Find dialog while you lost it (in a multi-screen + laptop configuration).
5. Fix long hyperlinks truncated problem.
1. Fix geneation of MD5 on Unicode bug.
2. Enhancement : make "Word characters list" customizable.
Included plugins:

View File

@ -29,10 +29,10 @@
; Define the application name
!define APPNAME "Notepad++"
!define APPVERSION "7.3"
!define APPVERSION "7.3.1"
!define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}"
!define VERSION_MAJOR 7
!define VERSION_MINOR 3
!define VERSION_MINOR 31
!define APPWEBSITE "http://notepad-plus-plus.org/"

View File

@ -24,15 +24,15 @@
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#pragma once
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.3")
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v7.3.1")
// 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.3\0")
#define VERSION_DIGITALVALUE 7, 3, 0, 0
#define VERSION_VALUE TEXT("7.31\0")
#define VERSION_DIGITALVALUE 7, 3, 1, 0