From be984214947ac752a1c25cc1e1830b94911d9565 Mon Sep 17 00:00:00 2001 From: Doug Torrance Date: Mon, 18 Aug 2014 17:56:24 -0500 Subject: [PATCH] wmacpi: Bump to version 2.1rc1. Source obtained from http://sourceforge.net/projects/wmacpi/files/. 2005 Jan 5 2.1rc1 Typo fix in the manpage. Ported to libdockapp-0.5.0 - all this needed was changing the type of the dockapp width and height to unsigned short. --- wmacpi/ChangeLog | 6 ++++++ wmacpi/INSTALL | 6 +++++- wmacpi/wmacpi.1 | 1 - wmacpi/wmacpi.c | 6 +++--- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/wmacpi/ChangeLog b/wmacpi/ChangeLog index ebdcb2a..5c429a0 100644 --- a/wmacpi/ChangeLog +++ b/wmacpi/ChangeLog @@ -1,3 +1,9 @@ +2005 Jan 5 2.1rc1 + Typo fix in the manpage. + + Ported to libdockapp-0.5.0 - all this needed was changing the + type of the dockapp width and height to unsigned short. + 2004 October 24 2.0 Upped version number to 2.0. diff --git a/wmacpi/INSTALL b/wmacpi/INSTALL index 274d1f4..b456969 100644 --- a/wmacpi/INSTALL +++ b/wmacpi/INSTALL @@ -8,6 +8,10 @@ in the Makefile, or specify BUILD_CLI=1 on the make command line. ie, make BUILD_CLI=1 make install BUILD_CLI=1 +As of 2.1 wmacpi requires libdockapp-0.5.0 - the tarball is available +from the same place as the wmacpi tarball. If you're running Debian +testing you just need to install libdockapp-dev. + No uninstall is supported, but isn't exactly difficult to delete all the files by hand . . . @@ -17,4 +21,4 @@ bin/acpi man/man1/wmacpi.1 man/man1/acpi.1 -Simon Fowler , 2003-11-23 \ No newline at end of file +Simon Fowler , 2005-01-05 \ No newline at end of file diff --git a/wmacpi/wmacpi.1 b/wmacpi/wmacpi.1 index 070a219..47c02c5 100644 --- a/wmacpi/wmacpi.1 +++ b/wmacpi/wmacpi.1 @@ -153,7 +153,6 @@ Print the version information. .TP .B \-h Display help. -.TP .SH AUTHOR .B wmacpi was originally written by Tim Copperfield , then diff --git a/wmacpi/wmacpi.c b/wmacpi/wmacpi.c index 46c3f9e..ca89135 100644 --- a/wmacpi/wmacpi.c +++ b/wmacpi/wmacpi.c @@ -37,7 +37,7 @@ #include "libacpi.h" #include "wmacpi.h" -#define WMACPI_VER "2.0" +#define WMACPI_VER "2.1rc1" /* main pixmap */ #ifdef LOW_COLOR @@ -53,8 +53,8 @@ struct dockapp { Pixmap pixmap; /* main pixmap */ Pixmap mask; /* mask pixmap */ Pixmap text; /* pixmap for text scroller */ - unsigned width; /* width of pixmap */ - unsigned height; /* height of pixmap */ + unsigned short width; /* width of pixmap */ + unsigned short height; /* height of pixmap */ int screen; /* current screen */ int tw; /* text width inside text pixmap */ int update; /* need to redraw? */ -- 2.11.4.GIT