diff --git a/wmload/ChangeLog b/wmload/ChangeLog index 24872a2..c2e455f 100644 --- a/wmload/ChangeLog +++ b/wmload/ChangeLog @@ -1,3 +1,21 @@ +VERSION: 0.9.7 +RELEASE DATE: 23 August 2015 + -Bump _POSIX_C_SOURCE to 200112L. Otherwise, we get the following + warning during build. + wmload.c: In function ‘GetLoad’: + wmload.c:523:10: warning: incompatible implicit declaration of + built-in function ‘rint’ + *usr = rint(Maximum * (float)(*usr) /total); + ^ + Obtained from the Debian package [1]. + -Fix -Wunused-result compiler warning. Obtained from the Debian + package [2]. + + [1] https://sources.debian.net/src/wmload/0.9.6-1/debian/patches/ + bump_POSIX_C_SOURCE.patch/ + [2] https://sources.debian.net/src/wmload/0.9.6-1/debian/patches/ + fix_unused_result.patch/ + VERSION: 0.9.6 RELEASE DATE: 15 April 2015 -Clarify copyright information. diff --git a/wmload/wmload.c b/wmload/wmload.c index eeab18b..b3c2427 100644 --- a/wmload/wmload.c +++ b/wmload/wmload.c @@ -42,7 +42,7 @@ #define major_VER 0 #define minor_VER 9 -#define patch_VER 6 +#define patch_VER 7 #define MW_EVENTS (ExposureMask | ButtonPressMask | StructureNotifyMask) #define FALSE 0 #define Shape(num) (ONLYSHAPE ? num-5 : num)