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.
This commit is contained in:
Doug Torrance 2014-08-18 17:56:24 -05:00 committed by Carlos R. Mafra
parent 2eeca91cc0
commit be98421494
4 changed files with 14 additions and 5 deletions

View file

@ -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 2004 October 24 2.0
Upped version number to 2.0. Upped version number to 2.0.

View file

@ -8,6 +8,10 @@ in the Makefile, or specify BUILD_CLI=1 on the make command line. ie,
make BUILD_CLI=1 make BUILD_CLI=1
make install 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 No uninstall is supported, but isn't exactly difficult to delete all
the files by hand . . . the files by hand . . .
@ -17,4 +21,4 @@ bin/acpi
man/man1/wmacpi.1 man/man1/wmacpi.1
man/man1/acpi.1 man/man1/acpi.1
Simon Fowler <simon@dreamcraft.com.au>, 2003-11-23 Simon Fowler <simon@dreamcraft.com.au>, 2005-01-05

View file

@ -153,7 +153,6 @@ Print the version information.
.TP .TP
.B \-h .B \-h
Display help. Display help.
.TP
.SH AUTHOR .SH AUTHOR
.B wmacpi .B wmacpi
was originally written by Tim Copperfield <timecop@japan.co.jp>, then was originally written by Tim Copperfield <timecop@japan.co.jp>, then

View file

@ -37,7 +37,7 @@
#include "libacpi.h" #include "libacpi.h"
#include "wmacpi.h" #include "wmacpi.h"
#define WMACPI_VER "2.0" #define WMACPI_VER "2.1rc1"
/* main pixmap */ /* main pixmap */
#ifdef LOW_COLOR #ifdef LOW_COLOR
@ -53,8 +53,8 @@ struct dockapp {
Pixmap pixmap; /* main pixmap */ Pixmap pixmap; /* main pixmap */
Pixmap mask; /* mask pixmap */ Pixmap mask; /* mask pixmap */
Pixmap text; /* pixmap for text scroller */ Pixmap text; /* pixmap for text scroller */
unsigned width; /* width of pixmap */ unsigned short width; /* width of pixmap */
unsigned height; /* height of pixmap */ unsigned short height; /* height of pixmap */
int screen; /* current screen */ int screen; /* current screen */
int tw; /* text width inside text pixmap */ int tw; /* text width inside text pixmap */
int update; /* need to redraw? */ int update; /* need to redraw? */