Mercurial > audlegacy
changeset 2703:fa67680f3a29 trunk
[svn] - add mpris root node to dbus-bindings.
author | nenolod |
---|---|
date | Mon, 07 May 2007 17:51:05 -0700 |
parents | 89155edffa31 |
children | 7d9139b393ce |
files | ChangeLog src/audacious/Makefile src/audacious/build_stamp.c src/audacious/mpris_root.xml |
diffstat | 4 files changed, 39 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon May 07 17:09:15 2007 -0700 +++ b/ChangeLog Mon May 07 17:51:05 2007 -0700 @@ -1,3 +1,11 @@ +2007-05-08 00:09:15 +0000 William Pitcock <nenolod@sacredspiral.co.uk> + revision [4430] + - rename *class prototypes to *klass to avoid keyword collisions in sun studio and icc. + + trunk/src/audacious/dbus.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + + 2007-05-06 22:16:34 +0000 William Pitcock <nenolod@sacredspiral.co.uk> revision [4428] - fix cuesheet bug in a better way (e.g. unbreak http:// streams)
--- a/src/audacious/Makefile Mon May 07 17:09:15 2007 -0700 +++ b/src/audacious/Makefile Mon May 07 17:51:05 2007 -0700 @@ -125,5 +125,7 @@ dbus-bindings.h: $(DBUS_BINDING_TOOL) --mode=glib-server --prefix=audacious_remote objects.xml > $@ + $(DBUS_BINDING_TOOL) --mode=glib-server --prefix=mpris mpris_root.xml >> $@ + @printf "%10s %-20s\n" DBUS-BIND $@ OBJECTIVE_DATA = audacious.desktop:$(datadir)/applications
--- a/src/audacious/build_stamp.c Mon May 07 17:09:15 2007 -0700 +++ b/src/audacious/build_stamp.c Mon May 07 17:51:05 2007 -0700 @@ -1,2 +1,2 @@ #include <glib.h> -const gchar *svn_stamp = "20070506-4428"; +const gchar *svn_stamp = "20070508-4430";
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/audacious/mpris_root.xml Mon May 07 17:51:05 2007 -0700 @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8" ?> + +<!-- + - Audacious: A cross-platform multimedia player + - Copyright (c) 2007 William Pitcock + - + - This program is free software; you can redistribute it and/or modify + - it under the terms of the GNU General Public License as published by + - the Free Software Foundation; under version 2 of the License. + - + - This program is distributed in the hope that it will be useful, + - but WITHOUT ANY WARRANTY; without even the implied warranty of + - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + - GNU General Public License for more details. + - + - You should have received a copy of the GNU General Public License + - along with this program; if not, write to the Free Software + - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + - 02110-1301, USA. + --> + +<node name="/"> + <interface name="org.freedesktop.MediaPlayer"> + <method name="Identity"> + <arg type="s" direction="out" /> + </method> + </interface> +</node>