Projects
Multimedia
audacious-plugins
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 34
View file
audacious-plugins.changes
Changed
@@ -1,4 +1,9 @@ ------------------------------------------------------------------- +Sat Aug 28 00:00:00 UTC 2011 - detlef@links2linux.de + +- new upstream version <3.0.2> + +------------------------------------------------------------------- Sat Aug 13 00:00:00 UTC 2011 - detlef@links2linux.de - new upstream version <3.0.1>
View file
audacious-plugins.spec
Changed
@@ -3,7 +3,7 @@ %define grp Productivity/Multimedia/Sound/Players Name: audacious-plugins -Version: 3.0.1 +Version: 3.0.2 Release: 1 Summary: Plugins for Audacious
View file
audacious-plugins-3.0.1.tar.gz/configure -> audacious-plugins-3.0.2.tar.gz/configure
Changed
@@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.68 for audacious-plugins 3.0. +# Generated by GNU Autoconf 2.68 for audacious-plugins 3.0.2. # # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, @@ -559,8 +559,8 @@ # Identity of this package. PACKAGE_NAME='audacious-plugins' PACKAGE_TARNAME='audacious-plugins' -PACKAGE_VERSION='3.0' -PACKAGE_STRING='audacious-plugins 3.0' +PACKAGE_VERSION='3.0.2' +PACKAGE_STRING='audacious-plugins 3.0.2' PACKAGE_BUGREPORT='' PACKAGE_URL='' @@ -1600,7 +1600,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures audacious-plugins 3.0 to adapt to many kinds of systems. +\`configure' configures audacious-plugins 3.0.2 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1667,7 +1667,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of audacious-plugins 3.0:";; + short | recursive ) echo "Configuration of audacious-plugins 3.0.2:";; esac cat <<\_ACEOF @@ -1968,7 +1968,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -audacious-plugins configure 3.0 +audacious-plugins configure 3.0.2 generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. @@ -2502,7 +2502,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by audacious-plugins $as_me 3.0, which was +It was created by audacious-plugins $as_me 3.0.2, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ @@ -3006,7 +3006,7 @@ PACKAGE=audacious-plugins -VERSION=3.0 +VERSION=3.0.2 @@ -11449,7 +11449,7 @@ if test "x$enable_hotkey" = "xyes"; then - if test $enable_gtk3 = yes ; then + if test $use_gtk3 = yes ; then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GDKX11" >&5 @@ -17817,7 +17817,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by audacious-plugins $as_me 3.0, which was +This file was extended by audacious-plugins $as_me 3.0.2, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -17883,7 +17883,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -audacious-plugins config.status 3.0 +audacious-plugins config.status 3.0.2 configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\"
View file
audacious-plugins-3.0.1.tar.gz/configure.ac -> audacious-plugins-3.0.2.tar.gz/configure.ac
Changed
@@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([audacious-plugins], [3.0]) +AC_INIT([audacious-plugins], [3.0.2]) AC_COPYRIGHT([(C) 2005-2011 Audacious Team]) AC_PREREQ([2.59]) @@ -451,7 +451,7 @@ ) if test "x$enable_hotkey" = "xyes"; then - if test $enable_gtk3 = yes ; then + if test $use_gtk3 = yes ; then PKG_CHECK_MODULES(GDKX11, [gdk-x11-3.0], [have_hotkey="yes"], [have_hotkey="no"]) else PKG_CHECK_MODULES(GDKX11, [gdk-x11-2.0], [have_hotkey="yes"], [have_hotkey="no"])
View file
audacious-plugins-3.0.1.tar.gz/src/sid/xmms-sid.c -> audacious-plugins-3.0.2.tar.gz/src/sid/xmms-sid.c
Changed
@@ -158,8 +158,12 @@ xs_tuneinfo_free(xs_status.tuneInfo); xs_status.tuneInfo = NULL; - xs_status.sidPlayer->plrDeleteSID(&xs_status); - xs_status.sidPlayer->plrClose(&xs_status); + + if (xs_status.sidPlayer) + { + xs_status.sidPlayer->plrDeleteSID (& xs_status); + xs_status.sidPlayer->plrClose (& xs_status); + } xs_songlen_close(); xs_stil_close();
View file
audacious-plugins-3.0.1.tar.gz/src/skins/ui_playlist.c -> audacious-plugins-3.0.2.tar.gz/src/skins/ui_playlist.c
Changed
@@ -28,6 +28,7 @@ #include <gdk/gdkkeysyms.h> #include <gtk/gtk.h> +#include <audacious/audconfig.h> #include <audacious/debug.h> #include <audacious/drct.h> #include <audacious/gtk-compat.h>
View file
audacious-plugins-3.0.1.tar.gz/src/sndfile/plugin.c -> audacious-plugins-3.0.2.tar.gz/src/sndfile/plugin.c
Changed
@@ -111,6 +111,20 @@ g_mutex_free (control_mutex); } +static void copy_string (SNDFILE * sf, gint sf_id, Tuple * tup, gint tup_id) +{ + const gchar * str = sf_get_string (sf, sf_id); + if (str) + tuple_associate_string (tup, tup_id, NULL, str); +} + +static void copy_int (SNDFILE * sf, gint sf_id, Tuple * tup, gint tup_id) +{ + const gchar * str = sf_get_string (sf, sf_id); + if (str && atoi (str)) + tuple_associate_int (tup, tup_id, NULL, atoi (str)); +} + static Tuple * get_song_tuple (const gchar * filename, VFSFile * file) { SNDFILE *sndfile; @@ -125,13 +139,15 @@ ti = tuple_new_from_filename (filename); - if (sf_get_string(sndfile, SF_STR_TITLE) != NULL) - tuple_associate_string(ti, FIELD_TITLE, NULL, sf_get_string(sndfile, SF_STR_TITLE)); - - tuple_associate_string(ti, FIELD_ARTIST, NULL, sf_get_string(sndfile, SF_STR_ARTIST)); - tuple_associate_string(ti, FIELD_COMMENT, NULL, sf_get_string(sndfile, SF_STR_COMMENT)); - tuple_associate_string(ti, FIELD_DATE, NULL, sf_get_string(sndfile, SF_STR_DATE)); - tuple_associate_string(ti, -1, "software", sf_get_string(sndfile, SF_STR_SOFTWARE)); + /* I have no idea version of sndfile ALBUM, GENRE, and TRACKNUMBER were + * added in. -jlindgren */ + copy_string (sndfile, SF_STR_TITLE, ti, FIELD_TITLE); + copy_string (sndfile, SF_STR_ARTIST, ti, FIELD_ARTIST); +/* copy_string (sndfile, SF_STR_ALBUM, ti, FIELD_ALBUM); */ + copy_string (sndfile, SF_STR_COMMENT, ti, FIELD_COMMENT); +/* copy_string (sndfile, SF_STR_GENRE, ti, FIELD_GENRE); */ + copy_int (sndfile, SF_STR_DATE, ti, FIELD_YEAR); +/* copy_int (sndfile, SF_STR_TRACKNUMBER, ti, FIELD_TRACK_NUMBER); */ sf_close (sndfile);
View file
audacious-plugins-3.0.1.tar.gz/src/xspf/xspf.c -> audacious-plugins-3.0.2.tar.gz/src/xspf/xspf.c
Changed
@@ -399,6 +399,8 @@ switch (xs->type) { case TUPLE_STRING: scratch = tuple_get_string (tuple, xs->tupleField, NULL); + if (! scratch) + isOK = FALSE; break; case TUPLE_INT: scratchi = tuple_get_int (tuple, xs->tupleField, NULL);
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.