diff --git a/ChangeLog.txt b/ChangeLog.txt deleted file mode 100644 index 363e205a..00000000 --- a/ChangeLog.txt +++ /dev/null @@ -1,8 +0,0 @@ ------------------------ -Gow Project ChangeLog ------------------------ - -This contains a listing of all changes between versions of Gow. - -Version 1.0.0 (Wed, Apr 20 2006) --------------------------------- diff --git a/ReadMe.txt b/ReadMe.txt index f543ebba..0230f63a 100644 --- a/ReadMe.txt +++ b/ReadMe.txt @@ -3,29 +3,35 @@ Gow Unix command line utilities installer for Windows. ------------------------------------------------------------ -Homepage: http://gow.sourceforge.net/ -Author: Brent R. Matzelle - bmatzelle [at] yahoo [dot] com +Homepage: http://wiki.github.com/bmatzelle/gow/ +Author: Brent R. Matzelle - bmatzelle [at] gmail [dot] com ABOUT ----- -Gow is a project to provide the most useful Unix/GNU utilities on Windows with a convenient installer. +Gow is a project to provide the most useful Unix/GNU utilities on Windows with +a convenient installer. It's really for folks that dislike all the junk that +gets installed with Cygwin but want more than just a bunch of binaries like the +"GNU utilities for Win32" (http://unxutils.sourceforge.net/) project includes. +It includes the following several things: + +* Installs all files into a convenient directory (C:\Program Files\gow) along + with a clean uninstaller for upgrades or removal. +* Adds a "Command prompt here" option to the right-click menu of Windows + Explorer that opens a cmd.exe window in that directory so you can easily + run commands. +* Adds Unix-like commands like whereis. DOCUMENTATION ------------- -QUESTIONS, HELP, & SUGGESTIONS ------------------------------- -Go to the following places for help using Nini or if you'd like to request new features for Nini: - -* Help Forum - http://sourceforge.net/forum/forum.php?forum_id=379750 - -* Mailing List - http://lists.sourceforge.net/lists/listinfo/nini-general +* Home page: http://wiki.github.com/bmatzelle/gow/ +* Download: http://github.com/bmatzelle/gow/downloads +* Change log: http://wiki.github.com/bmatzelle/gow/change_log +* Unix command reference: http://www.pixelbeat.org/cmdline.html Thank you for trying Gow! -------------------------------------- -Copyright (c) 2006 Brent R. Matzelle -------------------------------------- +-------------------------------------------- +Copyright (c) 2006 - 2010 Brent R. Matzelle +-------------------------------------------- diff --git a/setup/Gow.nsi b/setup/Gow.nsi index 111dd247..774f99c7 100644 --- a/setup/Gow.nsi +++ b/setup/Gow.nsi @@ -1,16 +1,16 @@ -;-------------------------------- +;--------------------------------------------- ; Gow installer ; Web Site: http://gow.sourceforge.net/ ; Author: Brent R. Matzelle -; Copyright 2006 Brent R. Matzelle -;-------------------------------- +; Copyright (c) 2006 - 2010 Brent R. Matzelle +;--------------------------------------------- ;-------------------------------- ; Constants !define PRODUCT "Gow" - !define VERSION "0.2.0" + !define VERSION "0.3.0" !define SRC_DIR ".." Name "${PRODUCT}" @@ -91,7 +91,7 @@ Function Configure IfErrors done FileOpen $R1 "$INSTDIR\bin\gow.bat" w FileWrite $R1 "@echo off $\r$\n" - FileWrite $R1 '$R0 "$INSTDIR\bin\gow.vbs" "C:\Program Files\Gow\bin" %1' + FileWrite $R1 '$R0 "$INSTDIR\bin\gow.vbs" "$INSTDIR\bin" %1' FileClose $R1 done: