Version: 0.12.8 (using KDE KDE 3.4.2) Installed from: Debian testing/unstable Packages Sebastià <annonygmouse@yahoo.co.uk> reported the following issue on the Debian bug tracker (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=342648): When trying to burn an ISO image on the file dialog I access the file using media:/ protocol. When I click on "OK" a popup dialog appears saying that I can only select local files and does not allow the ISO to be burnt.
SVN commit 487840 by trueg: Support for media:// urls in the image writing dialogs. BUG: 118127 M +2 -0 ChangeLog M +1 -1 src/misc/k3bcdimagewritingdialog.cpp M +1 -1 src/misc/k3bisoimagewritingdialog.cpp --- branches/stable/extragear/multimedia/k3b/ChangeLog #487839:487840 @@ -13,6 +13,8 @@ * Automatically use a newly installed version of an external application at the next K3b start. * Complete new set of K3b action icons for project types and tools. Many thanks to Marcel Dierkes. * Show text on the burn button to make it catch the eye. + * Support for media:// urls in the Image writing dialogs. + * Fixed problems with files bigger than 2 GB on some systems. 0.12.8 ====== --- branches/stable/extragear/multimedia/k3b/src/misc/k3bcdimagewritingdialog.cpp #487839:487840 @@ -969,7 +969,7 @@ QString K3bCdImageWritingDialog::imagePath() const { - return KURL::fromPathOrURL( m_editImagePath->url() ).path(); + return K3b::convertToLocalUrl( KURL::fromPathOrURL( m_editImagePath->url() ) ).path(); } --- branches/stable/extragear/multimedia/k3b/src/misc/k3bisoimagewritingdialog.cpp #487839:487840 @@ -494,7 +494,7 @@ QString K3bIsoImageWritingDialog::imagePath() const { - return KURL::fromPathOrURL( m_editImagePath->url() ).path(); + return K3b::convertToLocalUrl( KURL::fromPathOrURL( m_editImagePath->url() ) ).path(); }