summaryrefslogtreecommitdiff
path: root/audio/amarok/patches
diff options
context:
space:
mode:
authorseb <seb>2005-03-22 01:09:08 +0000
committerseb <seb>2005-03-22 01:09:08 +0000
commit325e850c32a9edbd25579b85b7ca5773d4a50de3 (patch)
tree51beddc19c9295d48e1b5ed5d128797817a3d9d3 /audio/amarok/patches
parent3947764c5bf53e2599a3c806c48b83bb990dabfd (diff)
downloadpkgsrc-325e850c32a9edbd25579b85b7ca5773d4a50de3.tar.gz
Update to version 1.2.2
Changes since last packaged version (1.2.1): FEATURES: * Context Browser CSS styles can now be installed and selected from the appearance settings. * Append Suggestions now has an icon in the statusbar. * When selecting multiple files, the "View/Edit Meta Information" dialog will show the tags that are common to all of them. (BR 100423) * A line graph equalizer added as a script "graphequalizer." CHANGES: * Add 25-track and 50-track smart-playlists. * Update current-track icons to include greater padding. * The contextbrowser now uses data:-URLs instead of temp image files, so they cannot be left on disk when amaroK terminates unexpectedly, and the Konqueror/Universal sidebar can show them when amaroK is not running. BUGFIXES: * escape '&' char in contextmenu entry (BR 101276) * Track is set as a number in the database, so shouldn't be added rounded by quotes. (BR 101208) * Rewrote the broken .pls playlist parser. * Handle delay gap between songs properly with aRts engine. (BR 90404) * Switched order of "Make playlist" and "Queue after current track" menus to avoid playlist destruction. (BR 96164 part 1) * Visualizations with LibVisual didn't work in some cases. (BR 99627) * amaroK could fail to build if the whole kdeextragear-1 module was compiled, due to conflicts with K3B on the MusicBrainz check. (BR 100906) * Images shown on OSD where incorrect for action notifications. * The handbook translations were not built when amaroK was installed from the tarball. I've written a new release script in Ruby, which can handle the new structure of kde-i18n. (BR 100498) * GStreamer-engine can now play vorbis radio streams properly, with full metadata support. (BR 89821) * GStreamer-engine now uses the "decodebin" autoplugger, which fixes the lag issues that some users had during crossfading. (BR 99570)
Diffstat (limited to 'audio/amarok/patches')
-rw-r--r--audio/amarok/patches/patch-aa14
1 files changed, 14 insertions, 0 deletions
diff --git a/audio/amarok/patches/patch-aa b/audio/amarok/patches/patch-aa
new file mode 100644
index 00000000000..2514156d352
--- /dev/null
+++ b/audio/amarok/patches/patch-aa
@@ -0,0 +1,14 @@
+$NetBSD: patch-aa,v 1.4 2005/03/22 01:09:08 seb Exp $
+
+--- amarok/src/scripts/graphequalizer/stdinreader.h.orig 2005-03-14 03:34:30.000000000 +0000
++++ amarok/src/scripts/graphequalizer/stdinreader.h
+@@ -27,7 +27,8 @@ Q_OBJECT
+ void dataRecieved()
+ {
+ QString signal;
+- QTextIStream(stdin) >> signal;
++ FILE *f = stdin;
++ QTextIStream(f) >> signal;
+ if(signal == "configure")
+ emit openWindow();
+ }