Skip to content

Commit

Permalink
[RELEASE] Notepad++ 6.7.8.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
donho committed May 23, 2015
1 parent d3c7ade commit b85fc02
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 9 deletions.
5 changes: 5 additions & 0 deletions PowerEditor/bin/change.log
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Notepad++ v6.7.8.2 bug-fixes:

1. Disable Notepad++ updater (WinGup) under XP.


Notepad++ v6.7.8.1 bug-fixes:

1. Fix "Missing msvcr120.dll" message error (of WinGup).
Expand Down
Binary file modified PowerEditor/bin/updater/GUP.exe
Binary file not shown.
Binary file modified PowerEditor/bin/updater/libcurl.dll
Binary file not shown.
9 changes: 7 additions & 2 deletions PowerEditor/installer/nppSetup.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@
; Define the application name
!define APPNAME "Notepad++"

!define APPVERSION "6.7.8.1"
!define APPVERSION "6.7.8.2"
!define APPNAMEANDVERSION "${APPNAME} v${APPVERSION}"
!define VERSION_MAJOR 6
!define VERSION_MINOR 781
!define VERSION_MINOR 782

!define APPWEBSITE "http://notepad-plus-plus.org/"

Expand Down Expand Up @@ -619,6 +619,11 @@ Section -"Notepad++" mainSection
Rename "$INSTDIR\plugins\AutoSaveU.dll" "$INSTDIR\plugins\disabled\AutoSaveU.dll"
Delete "$INSTDIR\plugins\AutoSaveU.dll"

IfFileExists "$INSTDIR\plugins\NppQCP.dll" 0 +4
MessageBox MB_OK "Due to the stability issue,$\nNppQCP.dll will be moved to the directory $\"disabled$\"" /SD IDOK
Rename "$INSTDIR\plugins\NppQCP.dll" "$INSTDIR\plugins\disabled\NppQCP.dll"
Delete "$INSTDIR\plugins\NppQCP.dll"

; Context Menu Management : removing old version of Context Menu module
IfFileExists "$INSTDIR\nppcm.dll" 0 +3
Exec 'regsvr32 /u /s "$INSTDIR\nppcm.dll"'
Expand Down
1 change: 0 additions & 1 deletion PowerEditor/installer/packageAll.bat
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ mkdir .\zipped.package.release
mkdir .\zipped.package.release\updater
mkdir .\zipped.package.release\localization
mkdir .\zipped.package.release\themes
mkdir .\zipped.package.release\user.manual
mkdir .\zipped.package.release\plugins
mkdir .\zipped.package.release\plugins\APIs
mkdir .\zipped.package.release\plugins\Config
Expand Down
6 changes: 3 additions & 3 deletions PowerEditor/src/NppCommands.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2208,7 +2208,7 @@ void Notepad_plus::command(int id)

case IDM_ONLINEHELP:
{
::ShellExecute(NULL, TEXT("open"), TEXT("http://npp-community.tuxfamily.org/"), NULL, NULL, SW_SHOWNORMAL);
::ShellExecute(NULL, TEXT("open"), TEXT("http://docs.notepad-plus-plus.org/"), NULL, NULL, SW_SHOWNORMAL);
break;
}

Expand All @@ -2226,7 +2226,7 @@ void Notepad_plus::command(int id)

case IDM_PLUGINSHOME:
{
::ShellExecute(NULL, TEXT("open"), TEXT("http://sourceforge.net/apps/mediawiki/notepad-plus/index.php?title=Plugin_Central"), NULL, NULL, SW_SHOWNORMAL);
::ShellExecute(NULL, TEXT("open"), TEXT("http://docs.notepad-plus-plus.org/index.php/Plugin_Central"), NULL, NULL, SW_SHOWNORMAL);
break;
}

Expand All @@ -2237,7 +2237,7 @@ void Notepad_plus::command(int id)
winVer ver = NppParameters::getInstance()->getWinVersion();
if (ver <= WV_XP)
{
long res = ::MessageBox(NULL, TEXT("Notepad++ updater is not compatible with XP due to its obsolet security layer.\rDo you want to go to Notepad++ page to download it?"), TEXT("Notepad++ Updater"), MB_OK);
long res = ::MessageBox(NULL, TEXT("Notepad++ updater is not compatible with XP due to the obsolet security layer under XP.\rDo you want to go to Notepad++ page to download the latest version?"), TEXT("Notepad++ Updater"), MB_YESNO);
if (res == IDYES)
{
::ShellExecute(NULL, TEXT("open"), TEXT("https://notepad-plus-plus.org/download/"), NULL, NULL, SW_SHOWNORMAL);
Expand Down
6 changes: 3 additions & 3 deletions PowerEditor/src/resource.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@
#ifndef RESOURCE_H
#define RESOURCE_H

#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v6.7.8.1")
#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v6.7.8.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("6.781\0")
#define VERSION_DIGITALVALUE 6, 7, 8, 1
#define VERSION_VALUE TEXT("6.782\0")
#define VERSION_DIGITALVALUE 6, 7, 8, 2

#ifndef IDC_STATIC
#define IDC_STATIC -1
Expand Down

0 comments on commit b85fc02

Please sign in to comment.