Skip to content

Commit

Permalink
Made a few changes to make the project ready for Github. There's stil…
Browse files Browse the repository at this point in the history
…l some work to do of course.

Deleted    ChangeLog.txt
* This will be added as a wiki page on Github so we don't need it.

Modified   ReadMe.txt
* Updated the description of the project.

Modified   setup/Gow.nsi
* Updated the copyright information, version number to 0.3.0
* Configure: Fixed a hard-coded path.
  • Loading branch information
bmatzelle committed Jul 14, 2010
1 parent 238fdee commit 414a732
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 28 deletions.
8 changes: 0 additions & 8 deletions ChangeLog.txt

This file was deleted.

36 changes: 21 additions & 15 deletions ReadMe.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
--------------------------------------------
10 changes: 5 additions & 5 deletions setup/Gow.nsi
Original file line number Diff line number Diff line change
@@ -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}"
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 414a732

Please sign in to comment.