From a5ec85b4b6d76d9ffc26956e5bc5a7195a2fe69b Mon Sep 17 00:00:00 2001 From: donho Date: Sat, 13 Oct 2007 00:28:32 +0000 Subject: [PATCH] [RELEASE_44] Update the build note content. git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository@52 f5eea248-9336-0410-98b8-ebc06183d4e3 --- PowerEditor/installer/nppSetup.nsi | 4 ++-- PowerEditor/src/Notepad_plus.rc | 4 ++-- readmeFirst.txt | 27 ++++++++------------------- 3 files changed, 12 insertions(+), 23 deletions(-) diff --git a/PowerEditor/installer/nppSetup.nsi b/PowerEditor/installer/nppSetup.nsi index 1d0c8ecf..1dbe2149 100644 --- a/PowerEditor/installer/nppSetup.nsi +++ b/PowerEditor/installer/nppSetup.nsi @@ -17,7 +17,7 @@ ; Define the application name !define APPNAME "Notepad++" -!define APPNAMEANDVERSION "Notepad++ v4.3" +!define APPNAMEANDVERSION "Notepad++ v4.4" !define VERSION_MAJOR 4 !define VERSION_MINOR 3 @@ -26,7 +26,7 @@ Name "${APPNAMEANDVERSION}" InstallDir "$PROGRAMFILES\Notepad++" InstallDirRegKey HKLM "Software\${APPNAME}" "" -OutFile "..\bin\npp.4.3.Installer.exe" +OutFile "..\bin\npp.4.4.Installer.exe" diff --git a/PowerEditor/src/Notepad_plus.rc b/PowerEditor/src/Notepad_plus.rc index c43e81af..eb92b0f9 100644 --- a/PowerEditor/src/Notepad_plus.rc +++ b/PowerEditor/src/Notepad_plus.rc @@ -22,8 +22,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. #include "menuCmdID.h" #define NOTEPAD_PLUS_VERSION "Notepad++ v4.3" -#define VERSION_VALUE "4.3\0" -#define VERSION_DIGITALVALUE 4, 3, 0, 0 +#define VERSION_VALUE "4.4\0" +#define VERSION_DIGITALVALUE 4, 4, 0, 0 VS_VERSION_INFO VERSIONINFO FILEVERSION VERSION_DIGITALVALUE diff --git a/readmeFirst.txt b/readmeFirst.txt index dd0d3034..3690e562 100644 --- a/readmeFirst.txt +++ b/readmeFirst.txt @@ -1,33 +1,22 @@ What is Notepad++ ? +=================== -Notepad++ is a free source editor with the syntax highlighting. It gives also the extra functionality -to the general user : colourise the user defined words. You can print your source code in color -(or whatever you want) if you have a color printer (WYSIWYG).Furthermore, Notepad++ have -the multi-view feature, that allows user to edit the different document in the same time, -and even to edit the same document synchronizely in 2 different views. Notepad++ support -the fully drag and drop : not only you can drop the file from explorer to open it, but also you -can drag and drop a document from a view to another. With all the functionalities, -Notepad++ runs as fast as Notepad provided by MS Windows. +Notepad++ is a free (free as in "free speech", but also as in "free beer") source code editor and Notepad replacement, which supports several programming languages, running under the MS Windows environment. -Notepad++ source note: +To build Notepad++ package from source code: +============================================ -To build this package: - -For generating the executable file, you can use VC++ 7 or MinGW 3.0 / 2.X -For generating the the dll files, you have 2 choices as well : VC++ 6 (from v2.5) or MinGW 3.0 / 2.X +For generating the executable file (notepad++.exe), you can use VC++ 7 / VC++ 8 or MinGW 3.0 / 2.X (a makefile is available, but not maintained). +A CMakeLists.txt (located in the PowerEditor\src directory) is available for generating the different VC project and MinGW makefile via cmake. +For generating the the dll file (SciLexer.dll), you have 2 choices as well : VC++ 6 (from v2.5) or MinGW 3.0 / 2.X All the binaries will be builded in the directory notepad++\PowerEditor\bin -Note that the executable file npp.exe builded by MinGW 3.0, for the reason of -the runtime lib static-link, has almost 160KB more than the one builded by VC++ 7. - -There's no remedy for the moment. If you can reduce the exe size by adding/changing -the compiler flag or linker flag, please let me know. Go to Notepad++ official site for more information : http://notepad-plus.sourceforge.net/ -Don +Don HO don.h@free.fr