head 1.2; access; symbols pkgsrc-2013Q2:1.2.0.44 pkgsrc-2013Q2-base:1.2 pkgsrc-2012Q4:1.2.0.42 pkgsrc-2012Q4-base:1.2 pkgsrc-2011Q4:1.2.0.40 pkgsrc-2011Q4-base:1.2 pkgsrc-2011Q2:1.2.0.38 pkgsrc-2011Q2-base:1.2 pkgsrc-2009Q4:1.2.0.36 pkgsrc-2009Q4-base:1.2 pkgsrc-2008Q4:1.2.0.34 pkgsrc-2008Q4-base:1.2 pkgsrc-2008Q3:1.2.0.32 pkgsrc-2008Q3-base:1.2 cube-native-xorg:1.2.0.30 cube-native-xorg-base:1.2 pkgsrc-2008Q2:1.2.0.28 pkgsrc-2008Q2-base:1.2 pkgsrc-2008Q1:1.2.0.26 pkgsrc-2008Q1-base:1.2 pkgsrc-2007Q4:1.2.0.24 pkgsrc-2007Q4-base:1.2 pkgsrc-2007Q3:1.2.0.22 pkgsrc-2007Q3-base:1.2 pkgsrc-2007Q2:1.2.0.20 pkgsrc-2007Q2-base:1.2 pkgsrc-2007Q1:1.2.0.18 pkgsrc-2007Q1-base:1.2 pkgsrc-2006Q4:1.2.0.16 pkgsrc-2006Q4-base:1.2 pkgsrc-2006Q3:1.2.0.14 pkgsrc-2006Q3-base:1.2 pkgsrc-2006Q2:1.2.0.12 pkgsrc-2006Q2-base:1.2 pkgsrc-2006Q1:1.2.0.10 pkgsrc-2006Q1-base:1.2 pkgsrc-2005Q4:1.2.0.8 pkgsrc-2005Q4-base:1.2 pkgsrc-2005Q3:1.2.0.6 pkgsrc-2005Q3-base:1.2 pkgsrc-2005Q2:1.2.0.4 pkgsrc-2005Q2-base:1.2 pkgsrc-2005Q1:1.2.0.2 pkgsrc-2005Q1-base:1.2 pkgsrc-2004Q4:1.1.0.4 pkgsrc-2004Q4-base:1.1 pkgsrc-2004Q3:1.1.0.2 pkgsrc-2004Q3-base:1.1; locks; strict; comment @# @; 1.2 date 2005.03.20.11.09.47; author jmmv; state dead; branches; next 1.1; 1.1 date 2004.08.14.11.43.53; author kristerw; state Exp; branches; next ; desc @@ 1.2 log @Update to 0.2.0. I'm doing this before the freeze ends because: - 0.1.x doesn't work with libopendaap 0.3.x, the version we have in pkgsrc. Simply put, the package didn't build, as seen in several bulk builds. - 0.1.x was designed for gstreamer 0.6, but we have 0.8 in pkgsrc (which are incompatible). The package was patched to work with 0.8, but there might be problems, so it's safer to update. Changes in 0.2.0: - Add new Party Shuffle feature to allow selected ordering of songs from any available hosts. - Total rewrite of application core for improved stability and scalability. - Total rewrite of music player interface, fixes random freezes in gstreamer. (Works around gstreamer bug). - Add support for gstreamer 0.8. - Various GUI improvements - Add support for playing local songs dragged into the Party Shuffle area. - Add support for connecting to mt-daapd servers. - Plenty of bug fixes. Changes in 0.1.6: - Fix slow play start when starting from slow computers. - Remove host from list when it goes away. - Various backend changes. - Beat Birkhofer: Use the ESD sink (generally available on OS @ text @$NetBSD: patch-ac,v 1.1 2004/08/14 11:43:53 kristerw Exp $ --- daap.c.orig Sat Aug 14 13:30:46 2004 +++ daap.c Sat Aug 14 13:34:37 2004 @@@@ -453,6 +453,7 @@@@ for (i = 0; i < currentSongItemCount; i++) { + int minutes, seconds; char time[11] = {0}; char track[11] = {0}; char year[11] = {0}; @@@@ -464,8 +465,6 @@@@ strcasecmp(selected_album, currentSongItems[i].songalbum) != 0) continue; - int minutes, seconds; - seconds = (currentSongItems[i].songtime) / 1000; minutes = seconds / 60; seconds -= minutes * 60; @@@@ -562,11 +561,11 @@@@ char *get_song_display_str_withalloc(int id) { + char *buf; int songindex = findSongByID(id); if (!songindex) return NULL; - char *buf; buf = malloc(strlen(currentSongItems[songindex].songartist) + strlen(" - ") + strlen(currentSongItems[songindex].itemname) + 1); @ 1.1 log @Convert C99-isms to C89, to make this pckage build with gcc 2.95. @ text @d1 1 a1 1 $NetBSD$ @