renamed README.txt to README.md

This commit is contained in:
Viktor Szakats
2013-03-26 01:49:20 +01:00
parent 971a758f7e
commit 4eb41f42e7
12 changed files with 30 additions and 16 deletions

View File

@@ -10,6 +10,20 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2013-03-26 01:47 UTC+0100 Viktor Szakats (harbour syenar.net)
* config/global.mk
* config/postinst.hb
* doc/gmake.txt
* doc/howtorep.txt
* doc/oldnews.txt
* package/mpkg_win.nsi
* package/winuni/mpkg_win_uni.bat
* package/winuni/mpkg_win_uni.nsi
* package/winuni/RELNOTES.txt
* tests/hbdoc.prg
* README.txt -> README.md
* renamed README.txt to README.md
2013-03-26 01:26 UTC+0100 Viktor Szakats (harbour syenar.net)
* contrib/make.hb
* README.txt

View File

@@ -1897,7 +1897,7 @@ else
# copied to install destination.
ifneq ($(filter install,$(HB_MAKECMDGOALS)),)
ifeq ($(HB_PLATFORM_UNIX),)
$(error ! Please set HB_INSTALL_PREFIX and try again. For more information: see README.txt)
$(error ! Please set HB_INSTALL_PREFIX and try again. For more information: see README.md)
endif
endif
endif

View File

@@ -65,7 +65,7 @@ PROCEDURE Main( ... )
NEXT
mk_hb_FCopy( "COPYING.txt", tmp + hb_ps() )
mk_hb_FCopy( "README.txt", tmp + hb_ps() )
mk_hb_FCopy( "README.md", tmp + hb_ps() )
ELSE
OutStd( hb_StrFormat( "! Error: Cannot create directory '%1$s'", tmp ) + hb_eol() )
ENDIF

View File

@@ -194,7 +194,7 @@ The most used targets are these:
NOTES
=====
See README.txt about details.
See README.md about details.
You can build and/or run any program in tests/working by using hbmk2

View File

@@ -15,7 +15,7 @@ Content
=========================================================
by Viktor Szakats
1) Read the Harbour README.txt, monitor the development mailing list,
1) Read the Harbour README.md, monitor the development mailing list,
consult with the developers, make contributions. This way your chances
are high to get a R/W access to the repository.
2) Before uploading anything you'll need push permission for the

View File

@@ -114,7 +114,7 @@ General
- x64 msvc compiler got a distinct HB_COMPILER value: msvc64.
- msvcce compiler made compatible with older MSVC/WinCE versions.
- Added support for Intel(R) C++ compiler (icc) on Linux and Windows.
- Added new README.txt document giving a quick describing of the build
- Added new README.md document giving a quick describing of the build
process on all supported platforms and compilers.
- Several steps to make the build process simpler and requiring the
less amount of preparation.
@@ -123,7 +123,7 @@ General
- Added support for HB_CONTRIBLIBS=no to disable building of all contribs.
- Added ability to generate Windows installer and .zip distribution file.
- Fully transitioned to GNU Make system for all compilers.
Now msvc, msvcce and bcc builds need GNU Make, see README.txt for more
Now msvc, msvcce and bcc builds need GNU Make, see README.md for more
information. "non-GNU" make systems got deleted from the source tree.
- Cygwin renamed from gcc to cygwin. (NOTE: Cygwin doesn't work since
some versions, and support may be removed in the future.)

View File

@@ -5,7 +5,7 @@
; Harbour Nullsoft installer script (for Windows/MS-DOS)
; [ Do not try to use this script directly. It won't work. ]
;
; See README.txt for further information.
; See README.md for further information.
; ---------------------------------------------------------------
SetCompressor /solid lzma
@@ -15,7 +15,7 @@
!define MUI_HEADERIMAGE
!define MUI_HEADERIMAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Header\win.bmp"
!define MUI_FINISHPAGE_SHOWREADME_NOTCHECKED
!define MUI_FINISHPAGE_SHOWREADME "$INSTDIR\README.txt"
!define MUI_FINISHPAGE_SHOWREADME 'notepad.exe "$\"$INSTDIR\README.md$\""'
!define MUI_ICON "harb_win.ico"
!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\orange-uninstall.ico"
@@ -74,7 +74,7 @@ Section "Main components" hb_main
SetOutPath $INSTDIR
File /nonfatal "$%HB_INSTALL_PREFIX%\COPYING.txt"
File /nonfatal "$%HB_INSTALL_PREFIX%\README.txt"
File /nonfatal "$%HB_INSTALL_PREFIX%\README.md"
; Let it work also for MS-DOS packages where short filename is used here
File /nonfatal "$%HB_INSTALL_PREFIX%\Change*"

View File

@@ -5,7 +5,7 @@ releases are available for download on sourceforge.net:
http://sourceforge.net/projects/harbour-project/files/
Make sure to check README.txt "QUICK START" section and visit
Make sure to check README.md "QUICK START" section and visit
our user mailing list at:
http://groups.google.com/group/harbour-users/
@@ -84,7 +84,7 @@ Changes since previous (2.0.0beta3 20090905) release:
- hbnetio finalized.
- hbqt cleanups and improvements, QT 4.6 support.
- hbide (early development stage).
- Documentation enhancements: README.txt and doc/xhb-diff.txt.
- Documentation enhancements: README.md and doc/xhb-diff.txt.
- hbmk2 got support to convert xMate, hbmake and xbuild make files to .hbp
format.
- Added hbsms contrib library (to send SMS text messages in multiplatform way).
@@ -186,7 +186,7 @@ Changes since previous (2.0.0beta1 20090609) release:
- MS-DOS support tested and required fixes applied
- embedded compilers moved to 'comp' subdir
- support for latest MinGW x64 and MSVS 2010 compilers
- extended README.txt with new examples and app build quick guide
- extended README.md with new examples and app build quick guide
- icon for installer and hbrun tool
- hbxbp and hbqt enhancements
- hbwin refinements and better compatibility

View File

@@ -100,7 +100,7 @@ rem ; Create unified archive
echo.> _hbfiles
echo "%HB_DR%RELNOTES.txt" >> _hbfiles
echo "%HB_DR%README.txt" >> _hbfiles
echo "%HB_DR%README.md" >> _hbfiles
echo "%HB_DR%COPYING.txt" >> _hbfiles
echo "%HB_DR%ChangeLog*.txt" >> _hbfiles
echo "%HB_DR%bin\*-%HB_VS%.dll" >> _hbfiles

View File

@@ -14,7 +14,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\README.txt"
!define MUI_FINISHPAGE_SHOWREADME 'notepad.exe "$\"$INSTDIR\README.md$\""'
!define MUI_ICON "..\harb_win.ico"
!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\orange-uninstall.ico"
@@ -81,7 +81,7 @@ Section "Main components" hb_main
File /nonfatal "$%HB_ABSROOT%RELNOTES.txt"
File /nonfatal "$%HB_ABSROOT%README.txt"
File /nonfatal "$%HB_ABSROOT%README.md"
File /nonfatal "$%HB_ABSROOT%COPYING.txt"
File /nonfatal "$%HB_ABSROOT%ChangeLog.txt*"

View File

@@ -27,7 +27,7 @@ PROCEDURE Main( cRoot )
/* Detect Harbour root */
cRoot := "." + hb_ps()
DO WHILE hb_DirExists( cRoot + ".." )
IF hb_FileExists( cRoot + "README.txt" ) .AND. ;
IF hb_FileExists( cRoot + "README.md" ) .AND. ;
hb_FileExists( cRoot + "COPYING.txt" ) .AND. ;
hb_DirExists( cRoot + "config" )
EXIT