Okay, this will be release 3.02, approximately.
This commit is contained in:
parent
7ad688118c
commit
7a8dd12712
26
ChangeLog
Normal file
26
ChangeLog
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
3.02 04 November 1999
|
||||||
|
- Fixed boneheaded code placement so that cowsay -l actually works.
|
||||||
|
|
||||||
|
3.01 01 November 1999
|
||||||
|
- Fixed compatibility issues between the Text::Wrap module
|
||||||
|
that changed between 5.005_02 and 5.005_03.
|
||||||
|
- Fixed tab expansion issues with Text::Tabs.
|
||||||
|
|
||||||
|
3.0 13 April 1999, released 14 August 1999
|
||||||
|
- Rewritten into Perl 5 and presented to the world.
|
||||||
|
|
||||||
|
-- Not present in CVS from here on down --
|
||||||
|
|
||||||
|
2.x Date?
|
||||||
|
- Arbitrary messages.
|
||||||
|
- Figlet support (-n).
|
||||||
|
- Line wrap length (-w).
|
||||||
|
- Multiple pre-set expressions.
|
||||||
|
- Better arg parsing loop.
|
||||||
|
- Message from stdin or command line.
|
||||||
|
|
||||||
|
1.0 Date?
|
||||||
|
- SUBJECT is VERB OBJECT
|
||||||
|
|
||||||
|
$Id$
|
||||||
|
This file is part of cowsay. (c) 1999 Tony Monroe.
|
@ -1,3 +1,4 @@
|
|||||||
|
ChangeLog
|
||||||
INSTALL
|
INSTALL
|
||||||
LICENSE
|
LICENSE
|
||||||
MANIFEST
|
MANIFEST
|
||||||
|
1
MANIFEST
1
MANIFEST
@ -1,3 +1,4 @@
|
|||||||
|
ChangeLog Changes to recent versions.
|
||||||
INSTALL Instructions for installing cowsay.
|
INSTALL Instructions for installing cowsay.
|
||||||
LICENSE The license for use and redistribution of cowsay.
|
LICENSE The license for use and redistribution of cowsay.
|
||||||
MANIFEST This file.
|
MANIFEST This file.
|
||||||
|
2
Makefile
2
Makefile
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
FILES= Files.base
|
FILES= Files.base
|
||||||
PRODUCT= cowsay
|
PRODUCT= cowsay
|
||||||
VER= 3.01
|
VER= 3.02
|
||||||
BASE= ${PRODUCT}-${VER}
|
BASE= ${PRODUCT}-${VER}
|
||||||
TARZ= ${BASE}.tar.Z
|
TARZ= ${BASE}.tar.Z
|
||||||
TARGZ= ${BASE}.tar.gz
|
TARGZ= ${BASE}.tar.gz
|
||||||
|
6
README
6
README
@ -1,6 +1,6 @@
|
|||||||
==========
|
===========
|
||||||
cowsay 3.0
|
cowsay 3.02
|
||||||
==========
|
===========
|
||||||
|
|
||||||
cowsay is a configurable talking cow, written in Perl. It operates
|
cowsay is a configurable talking cow, written in Perl. It operates
|
||||||
much as the figlet program does, and it written in the same spirit
|
much as the figlet program does, and it written in the same spirit
|
||||||
|
16
RELEASE
16
RELEASE
@ -4,16 +4,20 @@ Steps to be done for release:
|
|||||||
|
|
||||||
(1) Change version number in Makefile.
|
(1) Change version number in Makefile.
|
||||||
|
|
||||||
(2) Package into tarballs and sign.
|
(2) Change version number in README.
|
||||||
|
|
||||||
(3) Upload tarballs to FTP server.
|
(3) Change version number in cowsay.1.
|
||||||
|
|
||||||
(4) Point LATEST.tar.gz to current version.
|
(4) Package into tarballs and sign.
|
||||||
|
|
||||||
(5) Modify cowsay web pages to reflect current version.
|
(5) Upload tarballs to FTP server.
|
||||||
|
|
||||||
(6) Modify factoids with purl and miho to reflect current version.
|
(6) Point LATEST.tar.gz to current version.
|
||||||
|
|
||||||
(7) Post to freshmeat.
|
(7) Modify cowsay web pages to reflect current version.
|
||||||
|
|
||||||
|
(8) Modify factoids with purl and miho to reflect current version.
|
||||||
|
|
||||||
|
(9) Post to freshmeat.
|
||||||
|
|
||||||
$Id$
|
$Id$
|
||||||
|
4
cowsay
4
cowsay
@ -1,7 +1,7 @@
|
|||||||
#%BANGPERL%
|
#%BANGPERL%
|
||||||
|
|
||||||
##
|
##
|
||||||
## Cowsay 3.01
|
## Cowsay 3.02
|
||||||
##
|
##
|
||||||
## This file is part of cowsay. (c) 1999 Tony Monroe.
|
## This file is part of cowsay. (c) 1999 Tony Monroe.
|
||||||
##
|
##
|
||||||
@ -12,7 +12,7 @@ use File::Basename;
|
|||||||
use Getopt::Std;
|
use Getopt::Std;
|
||||||
use Cwd;
|
use Cwd;
|
||||||
|
|
||||||
$version = "3.0";
|
$version = "3.02";
|
||||||
$progname = basename($0);
|
$progname = basename($0);
|
||||||
$eyes = "oo";
|
$eyes = "oo";
|
||||||
$tongue = " ";
|
$tongue = " ";
|
||||||
|
12
cowsay.1
12
cowsay.1
@ -7,6 +7,7 @@
|
|||||||
.\"
|
.\"
|
||||||
.ds Nm Cowsay
|
.ds Nm Cowsay
|
||||||
.ds nm cowsay
|
.ds nm cowsay
|
||||||
|
.ds Vn 3.02
|
||||||
.TH \*(nm 1 "$Date$"
|
.TH \*(nm 1 "$Date$"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\*(nm/cowthink \- configurable speaking/thinking cow (and a bit more)
|
\*(nm/cowthink \- configurable speaking/thinking cow (and a bit more)
|
||||||
@ -134,8 +135,13 @@ must be backslashed because that is what Perl 5 expects.
|
|||||||
.PP
|
.PP
|
||||||
What older versions? :-)
|
What older versions? :-)
|
||||||
.PP
|
.PP
|
||||||
Version 3.0 is fully backward-compatible with 2.x versions. If
|
Version 3.x is fully backward-compatible with 2.x versions. If
|
||||||
you're still using a 1.x version, consider upgrading.
|
you're still using a 1.x version, consider upgrading. And tell me
|
||||||
|
where you got the older versions, since I didn't exactly put them
|
||||||
|
up for world-wide access.
|
||||||
|
.PP
|
||||||
|
Oh, just so you know, this manual page documents version \*(Vn of
|
||||||
|
cowsay.
|
||||||
.SH ENVIRONMENT
|
.SH ENVIRONMENT
|
||||||
The COWPATH environment variable, if present, will be used to search
|
The COWPATH environment variable, if present, will be used to search
|
||||||
for cowfiles. It contains a colon-separated list of directories,
|
for cowfiles. It contains a colon-separated list of directories,
|
||||||
@ -153,7 +159,7 @@ holds a sample set of cowfiles. If your
|
|||||||
.B COWPATH
|
.B COWPATH
|
||||||
is not explicitly set, it automatically contains this directory.
|
is not explicitly set, it automatically contains this directory.
|
||||||
.SH BUGS
|
.SH BUGS
|
||||||
If there are any left, please notify the author at the address below.
|
If there are any, please notify the author at the address below.
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
Tony Monroe (tony@nog.net), with suggestions from Shannon
|
Tony Monroe (tony@nog.net), with suggestions from Shannon
|
||||||
Appel (appel@CSUA.Berkeley.EDU) and contributions from Anthony Polito
|
Appel (appel@CSUA.Berkeley.EDU) and contributions from Anthony Polito
|
||||||
|
Loading…
Reference in New Issue
Block a user