From 423d103fb3486932773127ff53373218dea677ba Mon Sep 17 00:00:00 2001 From: Doug Torrance Date: Fri, 28 Nov 2014 10:22:54 -0600 Subject: [PATCH] libdockapp: Merge ChangeLog into NEWS (they were largely the same). --- libdockapp/{ChangeLog => NEWS} | 13 +++++++++---- libdockapp/examples/basic/basic.c | 4 ++-- libdockapp/src/dockapp.h | 2 +- 3 files changed, 12 insertions(+), 7 deletions(-) rename libdockapp/{ChangeLog => NEWS} (92%) diff --git a/libdockapp/ChangeLog b/libdockapp/NEWS similarity index 92% rename from libdockapp/ChangeLog rename to libdockapp/NEWS index 5c5c202..2556212 100644 --- a/libdockapp/ChangeLog +++ b/libdockapp/NEWS @@ -1,6 +1,7 @@ -This file is maintained by dtorrance@monmouthcollege.edu +This file is maintained by dtorrance@monmouthcollege.edu, and available +from http://libdockapp.sourceforge.net -Changelog for all libDockApp users. +News for for all libDockApp users. ---------------------------------- This file contains a reverse chronology of changes. The contents of this file will apply mostly to developers of dockapps. @@ -12,8 +13,8 @@ Please read this when you update. Added dockapp.pc file for use with pkg-config. 20050716: - Release of libDockapp 0.6.1. - Fixed parsing of multi-char short options. + Release of libdockapp 0.6.1 + Fixed parsing multi-character short options. 20050522: Release of libDockapp 0.6.0. @@ -52,6 +53,10 @@ Please read this when you update. Child windows of a dockapp are now mapped as well when calling DAShow(). + Reworked basic example to use a Window instead of drawing and erasing + pixmaps by hand. This removes a lot of the complex parts of the + example. + Revamped the Changelog. Changedates have become important now that we use them for backward compatibility. diff --git a/libdockapp/examples/basic/basic.c b/libdockapp/examples/basic/basic.c index 2f94905..1ff6606 100644 --- a/libdockapp/examples/basic/basic.c +++ b/libdockapp/examples/basic/basic.c @@ -57,8 +57,8 @@ main(int argc, char **argv) "use libDockapp.\n", "Basic example version 1.1"); - /* Tell libdockapp what version we expect it to be (a date from the - * ChangeLog should do). + /* Tell libdockapp what version we expect it to be (a date from + * NEWS should do). */ DASetExpectedVersion(20020126); diff --git a/libdockapp/src/dockapp.h b/libdockapp/src/dockapp.h index edcc5f8..18442b1 100644 --- a/libdockapp/src/dockapp.h +++ b/libdockapp/src/dockapp.h @@ -143,7 +143,7 @@ extern unsigned long DAExpectedVersion; /* * Set the version of the library that the dockapp expects. * This is a date in the format 'yyyymmdd'. You can find this date - * in the ChangeLog. + * in NEWS. */ void DASetExpectedVersion(unsigned long expectedVersion); -- 2.11.4.GIT