Skip to content

Commit 414a732

Browse files
committed
Made a few changes to make the project ready for Github. There's still 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.
1 parent 238fdee commit 414a732

File tree

3 files changed

+26
-28
lines changed

3 files changed

+26
-28
lines changed

ChangeLog.txt

-8
This file was deleted.

ReadMe.txt

+21-15
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,35 @@ Gow
33
Unix command line utilities installer for Windows.
44
------------------------------------------------------------
55

6-
Homepage: http://gow.sourceforge.net/
7-
Author: Brent R. Matzelle - bmatzelle [at] yahoo [dot] com
6+
Homepage: http://wiki.github.com/bmatzelle/gow/
7+
Author: Brent R. Matzelle - bmatzelle [at] gmail [dot] com
88

99
ABOUT
1010
-----
11-
Gow is a project to provide the most useful Unix/GNU utilities on Windows with a convenient installer.
11+
Gow is a project to provide the most useful Unix/GNU utilities on Windows with
12+
a convenient installer. It's really for folks that dislike all the junk that
13+
gets installed with Cygwin but want more than just a bunch of binaries like the
14+
"GNU utilities for Win32" (http://unxutils.sourceforge.net/) project includes.
1215

16+
It includes the following several things:
17+
18+
* Installs all files into a convenient directory (C:\Program Files\gow) along
19+
with a clean uninstaller for upgrades or removal.
20+
* Adds a "Command prompt here" option to the right-click menu of Windows
21+
Explorer that opens a cmd.exe window in that directory so you can easily
22+
run commands.
23+
* Adds Unix-like commands like whereis.
1324

1425
DOCUMENTATION
1526
-------------
1627

17-
QUESTIONS, HELP, & SUGGESTIONS
18-
------------------------------
19-
Go to the following places for help using Nini or if you'd like to request new features for Nini:
20-
21-
* Help Forum
22-
http://sourceforge.net/forum/forum.php?forum_id=379750
23-
24-
* Mailing List
25-
http://lists.sourceforge.net/lists/listinfo/nini-general
28+
* Home page: http://wiki.github.com/bmatzelle/gow/
29+
* Download: http://github.com/bmatzelle/gow/downloads
30+
* Change log: http://wiki.github.com/bmatzelle/gow/change_log
31+
* Unix command reference: http://www.pixelbeat.org/cmdline.html
2632

2733
Thank you for trying Gow!
2834

29-
-------------------------------------
30-
Copyright (c) 2006 Brent R. Matzelle
31-
-------------------------------------
35+
--------------------------------------------
36+
Copyright (c) 2006 - 2010 Brent R. Matzelle
37+
--------------------------------------------

setup/Gow.nsi

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
;--------------------------------
1+
;---------------------------------------------
22
; Gow installer
33
; Web Site: http://gow.sourceforge.net/
44
; Author: Brent R. Matzelle
5-
; Copyright 2006 Brent R. Matzelle
6-
;--------------------------------
5+
; Copyright (c) 2006 - 2010 Brent R. Matzelle
6+
;---------------------------------------------
77

88

99
;--------------------------------
1010
; Constants
1111

1212
!define PRODUCT "Gow"
13-
!define VERSION "0.2.0"
13+
!define VERSION "0.3.0"
1414
!define SRC_DIR ".."
1515

1616
Name "${PRODUCT}"
@@ -91,7 +91,7 @@ Function Configure
9191
IfErrors done
9292
FileOpen $R1 "$INSTDIR\bin\gow.bat" w
9393
FileWrite $R1 "@echo off $\r$\n"
94-
FileWrite $R1 '$R0 "$INSTDIR\bin\gow.vbs" "C:\Program Files\Gow\bin" %1'
94+
FileWrite $R1 '$R0 "$INSTDIR\bin\gow.vbs" "$INSTDIR\bin" %1'
9595
FileClose $R1
9696

9797
done:

0 commit comments

Comments
 (0)