Updated version numbers, URLs, and dates throughout

git-svn-id: svn://svn.savannah.nongnu.org/lash/trunk@7 1de19dc7-4e3f-0410-a61d-eddf686bf0b7
This commit is contained in:
Dave Robillard 2005-09-15 09:23:33 +00:00
parent c345d7d6f8
commit 8e3a0133b2
6 changed files with 22 additions and 7 deletions

View File

@ -1,3 +1,9 @@
This file has not been updated for any of the 0.5.0 changes. Sorry.
-Dave
Wed Jul 23 22:16:09 BST 2003 node <node@insanity.tek.net>
lashd
* moved loader to $(top_srcdir)/loader

8
NEWS
View File

@ -1,3 +1,11 @@
0.5.0:
* numerous fixed for random behaviour resulting in failed session restores
* bitrot removal, GCC4 fixes, autotools updates, etc
* added GTK control panel server interface client
* removed all traces of former name (API is incompatible with previous
releases)
0.4.0:
* low level tcp protocol has changed along with a lot of structure clean ups

View File

@ -7,7 +7,7 @@
@ifinfo
This is the LASH Audio Session Handler Reference Manual,
Edition 0.4.0, October 2003 for LASH version 0.2.
Edition 0.5.0, September 2005 for LASH version 0.5.
Copyright @copyright{} 2002, 2003 Robert Ham (rah@@bash.sh)
@ -24,8 +24,8 @@ Free Documentation License''.
@titlepage
@title LASH Reference Manual
@subtitle Audio application session management and configuration
@subtitle Edition 0.4.0, October 2003
@subtitle Covering LASH 0.4.0
@subtitle Edition 0.5.0, September 2005
@subtitle Covering LASH 0.5.0
@author Bob Ham (rah@@bash.sh)
@page
@ -48,9 +48,9 @@ Free Documentation License''.
@ifinfo
This is the LASH Audio Session Handler
Reference Manual, edition 0.4.0, October 2003 for LASH version 0.4.0.
Reference Manual, edition 0.5.0, September 2005 for LASH version 0.5.0.
@url{http://pkl.net/~node/lash.html}
@url{http://www.nongnu.org/lash}
@end ifinfo

View File

@ -17,7 +17,7 @@ AC_ARG_ENABLE(lash,
])
if test "$CHANGEME_enable_lash" = "yes"; then
PKG_CHECK_MODULES(LASH, lash-1.0 >= 0.4.0, LASH_FOUND="yes", LASH_FOUND="no")
PKG_CHECK_MODULES(LASH, lash-1.0 >= 0.5.0, LASH_FOUND="yes", LASH_FOUND="no")
if test "$LASH_FOUND" = "yes"; then
AC_DEFINE(HAVE_LASH, 1, [whether or not we are supporting lash])

View File

@ -31,6 +31,7 @@ typedef uint32_t lash_protocol_t;
/*
* Protocol versions (release: protocol):
*
* 0.4: 2.0
* 0.3: 1.1
* 0.2: 1.0
* 0.1: 0.0 (implied by the 0ing of the lash_event_t.event_data)

View File

@ -641,7 +641,7 @@ project_create_xml(project_t * project)
/* dtd */
xmlCreateIntSubset(doc, BAD_CAST "lash_project", NULL,
BAD_CAST
"http://purge.bash.sh/~rah/lash-project-1.0.dtd");
"http://www.nongnu.org/lash/lash-project-1.0.dtd");
/* root node */
lash_project = xmlNewDocNode(doc, NULL, BAD_CAST "lash_project", NULL);