summaryrefslogtreecommitdiff
path: root/audio/amarok/patches
diff options
context:
space:
mode:
authorwiz <wiz>2005-02-28 16:54:42 +0000
committerwiz <wiz>2005-02-28 16:54:42 +0000
commiteadb60f439fafc38ad2493c44d219c4402c5c925 (patch)
tree0fdca360c14a0d442097f1088b98e1db43ba95a9 /audio/amarok/patches
parent4b07f1bf29c949121a7698eeea17cdc3463ab25b (diff)
downloadpkgsrc-eadb60f439fafc38ad2493c44d219c4402c5c925.tar.gz
Update to 1.2.1:
VERSION 1.2.1: FIX: Made the Tag-Editor only operate on visible items. (BR 100268) ADD: Database settings added to the first-run wizard. FIX: playlist2html generates UTF-8 output now. (BR 100140) FIX: Bitrate/length showed random values for untagged mp3 files. (BR 100200) FIX: Crash when recoding stream MetaData without CODEC selected. (BR 100077) CHG: Show an additional "Compilations with Artist" box in ContextBrowser. ADD: Remember collapse-state of boxes in ContextBrowser. (BR 98664) ADD: Display an error when unable to connect to MySQL. ADD: Konqueror Sidebar now has full drag and drop support. CHG: Replaced "Blue Wolf" icon with Nenad Grujicic's amaroK 1.1 icon, due to legal issues. ADD: Parameter "%score" shows the current song's score in OSD. CHG: When you delete a song within amaroK, it gets removed from the Collection automatically. FIX: Directory column in the playlist was eating the first letter. ADD: New DCOP call "playlist: setStopAfterCurrent(bool)". (BR 99944) FIX: Coverfetcher: Do not crash when no cover was found. (BR 99942) FIX: Support for amazon.co.jp was broken. CHG: Toolbar items reordered for optimal usability, as suggested by Aaron "Tom Green" Seigo. FIX: Show covers for albums containing chars '#' or '?'. (BR 96971 99780) ADD: Help file for the playlist2html script. ADD: New DCOP call "playlist: int getActiveIndex()". ADD: New DCOP call "playlist: playByIndex(int)". CHG: Upgraded internal SQLite database to 3.1.3. FIX: Update the database after editing tags in playlist. (BR 99593) ADD: New DCOP function "player: trackPlayCounter". (BR 99575) ADD: .ram playlist support with code from Kaffeine. (BR 96101) FIX: amaroK can now determine the correct track-length even for formats unknown to TagLib. Makes it possible to seek e.g. in m4a tracks. ADD: Can now pick from multiple Musicbrainz results. Patch from Jonathan Halcrow <gte899j@prism.gatech.edu>. (BR 89701) ADD: May now set a custom cover on multiple albums in the Cover-Manager. ADD: Support relative path of tracks in writing playlists. (BR 91053) FIX: Don't inline-edit tags for the whole playlist's selection. FIX: Fix "Recode Tags" crash issues. (BR 95041) ADD: "Set Custom Cover" can fetch remote images. (BR 90499)
Diffstat (limited to 'audio/amarok/patches')
-rw-r--r--audio/amarok/patches/patch-aa23
1 files changed, 0 insertions, 23 deletions
diff --git a/audio/amarok/patches/patch-aa b/audio/amarok/patches/patch-aa
deleted file mode 100644
index a733f4fe3de..00000000000
--- a/audio/amarok/patches/patch-aa
+++ /dev/null
@@ -1,23 +0,0 @@
-$NetBSD: patch-aa,v 1.2 2005/02/20 20:41:40 wiz Exp $
-
---- amarok/src/amarokcore/crashhandler.cpp.orig 2005-02-13 14:01:30.000000000 +0100
-+++ amarok/src/amarokcore/crashhandler.cpp
-@@ -42,15 +42,15 @@ namespace amaroK
- runCommand( const QCString &command )
- {
- static const uint SIZE = 40960; //40 KiB
-- static char stdout[ SIZE ];
-+ static char amarok_stdout[ SIZE ];
-
- debug() << "Running: " << command << endl;
-
- FILE *process = ::popen( command, "r" );
-- stdout[ std::fread( (void*)stdout, sizeof(char), SIZE-1, process ) ] = '\0';
-+ amarok_stdout[ std::fread( (void*)amarok_stdout, sizeof(char), SIZE-1, process ) ] = '\0';
- ::pclose( process );
-
-- return QString::fromLocal8Bit( stdout );
-+ return QString::fromLocal8Bit( amarok_stdout );
- }
-
- void