wmtime - increase version number to 1.1

Enough patches have been made over the years to the wmtime Debian
package that I have decided to incorporate these changes into
an official upstream release.

Some updates to the documentation have been made to reflect the
changes.
This commit is contained in:
Doug Torrance 2013-10-13 14:07:37 -05:00 committed by Carlos R. Mafra
parent 32ffb9e740
commit 2ca71dc449
10 changed files with 34 additions and 95 deletions

View file

@ -3,6 +3,12 @@ WMTime changes.
Version Description Version Description
-------------------------------------------------------------- --------------------------------------------------------------
1.1 - Released 131013
- Incorporated many patches from Debian, including
+ Added manual page
+ Added -geometry and -noseconds options
+ Improved locale support
1.0b2 - Released 980519 1.0b2 - Released 980519
- Locale support has been added. - Locale support has been added.

View file

@ -7,28 +7,23 @@ Nothing particular, but a computer might come in handy doh ;-)
Installation Installation
-------------------------------------------------------------- --------------------------------------------------------------
1) % tar -zxvf wmtime-1.0.tar.gz 1) % tar -zxvf wmtime-1.1.tar.gz
2) % cd wmtime.app/wmtime 2) % cd wmtime/wmtime
3)* Optional, make a symlink to your preffered language like: 3)* xmkmf -a (for *BSD systems needed only!).
% rm language 4) % make
% ln -s languages/slovene.lang language 5) % make install (as root)
4)* xmkmf -a (for *BSD systems needed only!).
5) % make
6) copy 'wmtime' somewhere in your $PATH like /usr/local/bin;
7) % wmtime & (or wmtime -h for help)
6)* WMTime uses month and weekday abbreviations from the
currently set locale. If these abbreviations do not
use Latin alphabet characters, then WMTime defaults to
US/English.
3)* The default language is US/English, WMTime currently only You may change this behavior by setting the LANG
supports the US/English, Dutch and Slovenia languages. environment variable, e.g.,
% LANG=es_MX.UTF-8 wmtime
A locale version of your language is very simple to create, 7)* This Imakefile was kindly donated by Pascal Hofstede but
just take a look at the supplied '.lang' files in the
wmtime.app/wmtime/languages/ directory.
If you do create one, please be so kind to mail it to us,
this way we can include it with future releases of WMTime.
4)* This Imakefile was kindly donated by Pascal Hofstede but
untested by the authors because we don't have a *BSD box untested by the authors because we don't have a *BSD box
to test and try it out... we're working on generic to test and try it out... we're working on generic
Imakefiles though ;-) Imakefiles though ;-)

View file

@ -1,21 +1,16 @@
WMTime-1.0b2 - The 2nd public BETA release WMTime-1.1
-------------------------------------------------------------- --------------------------------------------------------------
Authors...: Martijn Pieterse (pieterse@xs4all.nl) Authors...: Martijn Pieterse (pieterse@xs4all.nl)
Antoine Nulle (warp@xs4all.nl) Antoine Nulle (warp@xs4all.nl)
Note......: WMTime has it's own mailbox, as our pop3 accounts
are already way too crowded :)
Please mail bugreports, comments, suggestions,
requests and flames to:
dockapps@windowmaker.mezaway.org Maintainer: Doug Torrance (dtorrance@monmouthcollege.edu)
The official WMTime support website address: Note......: The official WMTime support website address:
http://windowmaker.mezaway.org http://wmtime.sourceforge.net
Credits...: Bobby Mezaway (bobby@mezaway.org) for generously Credits...: Bobby Mezaway (bobby@mezaway.org) for generously
hosting our website hosting the original website
Pascal G.Hofstee (daeron@Wit401305.student.utwente.nl) Pascal G.Hofstee (daeron@Wit401305.student.utwente.nl)
for supplying an Imakefile for *BSD systems for supplying an Imakefile for *BSD systems
Alen Salamun (snowman@hal9000.medinet.si) Alen Salamun (snowman@hal9000.medinet.si)
@ -58,10 +53,9 @@ COPYING GNU General Public License Version 2.
Bugs Bugs
-------------------------------------------------------------- --------------------------------------------------------------
If you discover any bugs in this software, please send a If you discover any bugs in this software, please submit a
bugreport to dockapps@windowmaker.mezaway.org and describe bugreport at
the problem as detailed as you can. https://sourceforge.net/p/wmtime/tickets/
Copyright Copyright
-------------------------------------------------------------- --------------------------------------------------------------

View file

@ -1 +0,0 @@
languages/us.lang

View file

@ -1,19 +0,0 @@
ZO
MA
DI
WO
DO
VR
ZA
JAN
FEB
MAR
APR
MEI
JUN
JUL
AUG
SEP
OKT
NOV
DEC

View file

@ -1,20 +0,0 @@
NE
PO
TO
SR
CE
PE
SO
NE
JAN
FEB
MAR
APR
MAJ
JUN
JUL
AVG
SEP
OKT
NOV
DEC

View file

@ -1,19 +0,0 @@
SU
MO
TU
WE
TH
FR
SA
JAN
FEB
MAR
APR
MAY
JUN
JUL
AUG
SEP
OCT
NOV
DEC

View file

@ -20,3 +20,6 @@ clean::
rm $$i; \ rm $$i; \
done done
rm wmtime rm wmtime
install:: wmtime
install -m 755 wmtime $(DESTDIR)/usr/bin

View file

@ -16,7 +16,7 @@
.\" along with this program; if not, write to the Free Software .\" along with this program; if not, write to the Free Software
.\" Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. .\" Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
.\" .\"
.TH WMTIME 1 "May 1998" "WMTIME 1.0b2" .TH WMTIME 1 "October 2013" "WMTIME 1.1"
.SH NAME .SH NAME
wmtime \- Window Maker dockapp that displays the time and date wmtime \- Window Maker dockapp that displays the time and date

View file

@ -92,7 +92,7 @@ const char* default_left_action = NULL;
const char* default_middle_action = NULL; const char* default_middle_action = NULL;
const char* default_right_action = NULL; const char* default_right_action = NULL;
#define WMMON_VERSION "1.0b2" #define WMMON_VERSION "1.1"
/********************/ /********************/
/* Global Variables */ /* Global Variables */