diff --git a/harbour/ChangeLog b/harbour/ChangeLog
index 23d5ad6f7f..154bbc8575 100644
--- a/harbour/ChangeLog
+++ b/harbour/ChangeLog
@@ -16,6 +16,19 @@
The license applies to all entries newer than 2009-04-28.
*/
+2012-11-18 02:52 UTC+0100 Viktor Szakats (harbour syenar.net)
+ * package/mpkg_win.nsi
+ * package/winuni/mpkg_win_uni.nsi
+ * changed to launch README. It needs a hefty trick
+ to open such extensionless filename
+
+ * README
+ + minor to welcome section
+
+ - doc/welcome.txt
+ * doc/Makefile
+ - deleted obsolete welcome message
+
2012-11-18 02:07 UTC+0100 Viktor Szakats (vszakats syenar.net)
- doc/readme.txt
+ doc/welcome.txt
diff --git a/harbour/README b/harbour/README
index 6a252b63d0..af36db241f 100644
--- a/harbour/README
+++ b/harbour/README
@@ -2,31 +2,31 @@
* $Id$
*/
-HARBOUR
-=======
+WELCOME TO HARBOUR
+==================
- "Harbour is the Free Open Source Software implementation
- of a multi-platform, multi-threading, object-oriented, scriptable
- programming language, backwards compatible with Clipper/xBase.
- Harbour consists of a compiler and runtime libraries with multiple
- UI and database backends, its own make system and a large
- collection of libraries and interfaces to many popular APIs."
+ Harbour is the Free Open Source Software implementation
+ of a multi-platform, multi-threading, object-oriented, scriptable
+ programming language, backwards compatible with Clipper/xBase.
+ Harbour consists of a compiler and runtime libraries with multiple
+ UI and database backends, its own make system and a large
+ collection of libraries and interfaces to many popular APIs.
http://harbour-project.org/
TABLE OF CONTENT
================
- 0. GUARANTEES AND LIABILITY
- 1. HOW TO BUILD AND INSTALL HARBOUR FROM SOURCE
- 2. HOW TO DO A PARTIAL [RE]BUILD
- 3. HOW TO CREATE DISTRIBUTABLE PACKAGES
- 4. HOW TO ENABLE OPTIONAL COMPONENTS BEFORE BUILD
- 5. SUPPORTED PLATFORMS AND C COMPILERS
- 6. OPTIONS AVAILABLE WHEN BUILDING HARBOUR
- 7. DEBUGGING OPTIONS
- 8. EXAMPLES
- 9. HOW TO GET HARBOUR
+0. GUARANTEES AND LIABILITY
+1. HOW TO BUILD AND INSTALL HARBOUR FROM SOURCE
+2. HOW TO DO A PARTIAL [RE]BUILD
+3. HOW TO CREATE DISTRIBUTABLE PACKAGES
+4. HOW TO ENABLE OPTIONAL COMPONENTS BEFORE BUILD
+5. SUPPORTED PLATFORMS AND C COMPILERS
+6. OPTIONS AVAILABLE WHEN BUILDING HARBOUR
+7. DEBUGGING OPTIONS
+8. EXAMPLES
+9. HOW TO GET HARBOUR
10. TROUBLESHOOTING
11. QUICK START TO BUILD YOUR OWN HARBOUR APPLICATIONS
12. BUILD HOST-PLATFORM/SHELL - TARGET-PLATFORM/COMPILER COMPATIBILITY MATRIX
diff --git a/harbour/doc/Makefile b/harbour/doc/Makefile
index 62285f4b6c..12c78b9c7d 100644
--- a/harbour/doc/Makefile
+++ b/harbour/doc/Makefile
@@ -26,7 +26,6 @@ DOC_FILES := \
pcode.txt \
pp.txt \
pragma.txt \
- welcome.txt \
statics.txt \
todo.txt \
tracing.txt \
diff --git a/harbour/doc/welcome.txt b/harbour/doc/welcome.txt
deleted file mode 100644
index 5e254c30d9..0000000000
--- a/harbour/doc/welcome.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * $Id$
- */
-
- Welcome to Harbour
- ==================
-
-Harbour is a free software compiler for the xBase superset language often
-referred to as Clipper (the language that is implemented by the compiler
-CA-Cl*pper). The goal of the Harbour project is to produce a cross platform
-CA-Cl*pper compatible compiler.
-
-The Harbour web site is at . If you
-have any problems with this copy of Harbour please visit our web site and
-ensure that you are using the latest release.
-
-If you have any questions about Harbour please be sure to read the FAQ
-. Also, please be sure to read the
-documentation that comes with Harbour, you should find it in the same
-directory in which you found this file.
-
-If you are reading this file as part of a source distribution of harbour you
-probably want to start by reading dirstruc.txt because this is your map to
-the harbour source directories.
diff --git a/harbour/package/mpkg_win.nsi b/harbour/package/mpkg_win.nsi
index d00e8e7dd9..299d1cc5dd 100644
--- a/harbour/package/mpkg_win.nsi
+++ b/harbour/package/mpkg_win.nsi
@@ -19,7 +19,7 @@
!define MUI_HEADERIMAGE
!define MUI_HEADERIMAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Header\win.bmp"
!define MUI_FINISHPAGE_SHOWREADME_NOTCHECKED
- !define MUI_FINISHPAGE_SHOWREADME "$INSTDIR\doc\welcome.txt"
+ !define MUI_FINISHPAGE_SHOWREADME 'notepad.exe "$\"$INSTDIR\README$\""'
!define MUI_ICON "harb_win.ico"
!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\orange-uninstall.ico"
diff --git a/harbour/package/winuni/mpkg_win_uni.nsi b/harbour/package/winuni/mpkg_win_uni.nsi
index 3482d0843a..cf367e8df0 100644
--- a/harbour/package/winuni/mpkg_win_uni.nsi
+++ b/harbour/package/winuni/mpkg_win_uni.nsi
@@ -18,7 +18,7 @@ SetCompressor /solid lzma
!define MUI_HEADERIMAGE
!define MUI_HEADERIMAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Header\win.bmp"
!define MUI_FINISHPAGE_SHOWREADME_NOTCHECKED
- !define MUI_FINISHPAGE_SHOWREADME "$INSTDIR\doc\welcome.txt"
+ !define MUI_FINISHPAGE_SHOWREADME 'notepad.exe "$\"$INSTDIR\README$\""'
!define MUI_ICON "..\harb_win.ico"
!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\orange-uninstall.ico"