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.
---
wmtime/CHANGES | 6 ++++++
wmtime/INSTALL | 35 +++++++++++++++--------------------
wmtime/README | 24 +++++++++---------------
wmtime/language | 1 -
wmtime/languages/nl.lang | 19 -------------------
wmtime/languages/slovene.lang | 20 --------------------
wmtime/languages/us.lang | 19 -------------------
wmtime/wmtime/Makefile | 3 +++
wmtime/wmtime/wmtime.1 | 2 +-
wmtime/wmtime/wmtime.c | 2 +-
10 files changed, 35 insertions(+), 96 deletions(-)
delete mode 120000 wmtime/language
delete mode 100644 wmtime/languages/nl.lang
delete mode 100644 wmtime/languages/slovene.lang
delete mode 100644 wmtime/languages/us.lang
diff --git a/wmtime/CHANGES b/wmtime/CHANGES
index 3b3410f..fe5dd3e 100644
--- a/wmtime/CHANGES
+++ b/wmtime/CHANGES
@@ -3,6 +3,12 @@ WMTime changes.
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
- Locale support has been added.
diff --git a/wmtime/INSTALL b/wmtime/INSTALL
index 6a4ad4d..04f3fbb 100644
--- a/wmtime/INSTALL
+++ b/wmtime/INSTALL
@@ -7,28 +7,23 @@ Nothing particular, but a computer might come in handy doh ;-)
Installation
--------------------------------------------------------------
-1) % tar -zxvf wmtime-1.0.tar.gz
-2) % cd wmtime.app/wmtime
-3)* Optional, make a symlink to your preffered language like:
- % rm language
- % ln -s languages/slovene.lang language
-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)
-
-
-3)* The default language is US/English, WMTime currently only
- supports the US/English, Dutch and Slovenia languages.
-
- A locale version of your language is very simple to create,
- just take a look at the supplied '.lang' files in the
- wmtime.app/wmtime/languages/ directory.
+1) % tar -zxvf wmtime-1.1.tar.gz
+2) % cd wmtime/wmtime
+3)* xmkmf -a (for *BSD systems needed only!).
+4) % make
+5) % make install (as root)
+
+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.
+
+ You may change this behavior by setting the LANG
+ environment variable, e.g.,
- 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.
+ % LANG=es_MX.UTF-8 wmtime
-4)* This Imakefile was kindly donated by Pascal Hofstede but
+7)* This Imakefile was kindly donated by Pascal Hofstede but
untested by the authors because we don't have a *BSD box
to test and try it out... we're working on generic
Imakefiles though ;-)
diff --git a/wmtime/README b/wmtime/README
index 8afef4a..3b77228 100644
--- a/wmtime/README
+++ b/wmtime/README
@@ -1,21 +1,16 @@
-WMTime-1.0b2 - The 2nd public BETA release
+WMTime-1.1
--------------------------------------------------------------
Authors...: Martijn Pieterse ([email protected])
Antoine Nulle ([email protected])
-
-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:
- [email protected]
-
- The official WMTime support website address:
+Maintainer: Doug Torrance ([email protected])
+
+Note......: The official WMTime support website address:
- http://windowmaker.mezaway.org
+ http://wmtime.sourceforge.net
Credits...: Bobby Mezaway ([email protected]) for generously
- hosting our website
+ hosting the original website
Pascal G.Hofstee ([email protected])
for supplying an Imakefile for *BSD systems
Alen Salamun ([email protected])
@@ -58,10 +53,9 @@ COPYING GNU General Public License Version 2.
Bugs
--------------------------------------------------------------
-If you discover any bugs in this software, please send a
-bugreport to [email protected] and describe
-the problem as detailed as you can.
-
+If you discover any bugs in this software, please submit a
+bugreport at
+https://sourceforge.net/p/wmtime/tickets/
Copyright
--------------------------------------------------------------
diff --git a/wmtime/language b/wmtime/language
deleted file mode 120000
index 859b6bb..0000000
--- a/wmtime/language
+++ /dev/null
@@ -1 +0,0 @@
-languages/us.lang
\ No newline at end of file
diff --git a/wmtime/languages/nl.lang b/wmtime/languages/nl.lang
deleted file mode 100644
index 46ef65b..0000000
--- a/wmtime/languages/nl.lang
+++ /dev/null
@@ -1,19 +0,0 @@
-ZO
-MA
-DI
-WO
-DO
-VR
-ZA
-JAN
-FEB
-MAR
-APR
-MEI
-JUN
-JUL
-AUG
-SEP
-OKT
-NOV
-DEC
diff --git a/wmtime/languages/slovene.lang b/wmtime/languages/slovene.lang
deleted file mode 100644
index 2a6d7de..0000000
--- a/wmtime/languages/slovene.lang
+++ /dev/null
@@ -1,20 +0,0 @@
-NE
-PO
-TO
-SR
-CE
-PE
-SO
-NE
-JAN
-FEB
-MAR
-APR
-MAJ
-JUN
-JUL
-AVG
-SEP
-OKT
-NOV
-DEC
diff --git a/wmtime/languages/us.lang b/wmtime/languages/us.lang
deleted file mode 100644
index 77b4538..0000000
--- a/wmtime/languages/us.lang
+++ /dev/null
@@ -1,19 +0,0 @@
-SU
-MO
-TU
-WE
-TH
-FR
-SA
-JAN
-FEB
-MAR
-APR
-MAY
-JUN
-JUL
-AUG
-SEP
-OCT
-NOV
-DEC
diff --git a/wmtime/wmtime/Makefile b/wmtime/wmtime/Makefile
index a1c3c58..85bb745 100755
--- a/wmtime/wmtime/Makefile
+++ b/wmtime/wmtime/Makefile
@@ -20,3 +20,6 @@ clean::
rm $$i; \
done
rm wmtime
+
+install:: wmtime
+ install -m 755 wmtime $(DESTDIR)/usr/bin
\ No newline at end of file
diff --git a/wmtime/wmtime/wmtime.1 b/wmtime/wmtime/wmtime.1
index f17156c..08dbd35 100644
--- a/wmtime/wmtime/wmtime.1
+++ b/wmtime/wmtime/wmtime.1
@@ -16,7 +16,7 @@
.\" along with this program; if not, write to the Free Software
.\" 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
wmtime \- Window Maker dockapp that displays the time and date
diff --git a/wmtime/wmtime/wmtime.c b/wmtime/wmtime/wmtime.c
index 6609b59..d5cc8b2 100644
--- a/wmtime/wmtime/wmtime.c
+++ b/wmtime/wmtime/wmtime.c
@@ -92,7 +92,7 @@ const char* default_left_action = NULL;
const char* default_middle_action = NULL;
const char* default_right_action = NULL;
-#define WMMON_VERSION "1.0b2"
+#define WMMON_VERSION "1.1"
/********************/
/* Global Variables */
--
1.8.1.2
--
To unsubscribe, send mail to [email protected].