rev 9281 - in kde-extras/ktorrent/branches/experimental/debian: . patches

Modestas Vainius modax-guest at alioth.debian.org
Tue Feb 5 03:00:57 UTC 2008


Author: modax-guest
Date: 2008-02-05 03:00:57 +0000 (Tue, 05 Feb 2008)
New Revision: 9281

Added:
   kde-extras/ktorrent/branches/experimental/debian/patches/04_pastedialog_support_remote_urls.diff
Modified:
   kde-extras/ktorrent/branches/experimental/debian/changelog
   kde-extras/ktorrent/branches/experimental/debian/ktorrent.1
   kde-extras/ktorrent/branches/experimental/debian/patches/series
Log:
A bugfix for "Paste Torrent URL" dialog to accept remote URLs.
Another man page update

Modified: kde-extras/ktorrent/branches/experimental/debian/changelog
===================================================================
--- kde-extras/ktorrent/branches/experimental/debian/changelog	2008-02-05 00:43:02 UTC (rev 9280)
+++ kde-extras/ktorrent/branches/experimental/debian/changelog	2008-02-05 03:00:57 UTC (rev 9281)
@@ -31,6 +31,9 @@
     - 03_trunk_pull_r769910.diff - pull trunk up to revision 769910. Version
       bump related changes skipped. This patch should fix socket leak which
       made ktorrent almost unusable for more than 20 minutes.
+    - 04_pastedialog_support_remote_urls.diff - add back support for remote
+      urls in "Paste Torrent URL" dialog. The patch fixes incorrect KUrl API
+      usage.
   * Add "DM-Upload-Allowed: yes" to debian/control source section.
   * Tweak overrides.lintian by adding "libktcore2 libktupnp1" to
     package-name-doesnt-match-sonames. These libraries are supposed to be used
@@ -39,14 +42,18 @@
     page, because ktshell has not been ported yet.
   * Add a man page for the new 'ktupnptest' binary.
   * Bug fixes:
-    * "Refuses to add downloads to existing group" - seems to work in this
-      release (Closes: #460470)
-    * "wrong translate" - the string in question is translated differently in
+    - "Refuses to add downloads to existing group" - seems to work in this
+      release (Closes: #460470).
+    - "wrong translate" - the string in question is translated differently in
       this release. If I'm not wrong, the translation is correct
       (Closes: #459241).
+    - "chunks window download speed column is misleading" - ktorrent 3.0
+      groups all chunks from the same peer into single listitem for which
+      only single total speed associated with that peer is shown. Therefore,
+      there is no confusion anymore (Closes: #372162).
   * Update debian/copyright.
 
- -- Debian KDE Extras Team <pkg-kde-extras at lists.alioth.debian.org>  Mon, 04 Feb 2008 22:51:29 +0200
+ -- Debian KDE Extras Team <pkg-kde-extras at lists.alioth.debian.org>  Tue, 05 Feb 2008 04:40:57 +0200
 
 ktorrent (2.2.4.dfsg.1-1) unstable; urgency=medium
 

Modified: kde-extras/ktorrent/branches/experimental/debian/ktorrent.1
===================================================================
--- kde-extras/ktorrent/branches/experimental/debian/ktorrent.1	2008-02-05 00:43:02 UTC (rev 9280)
+++ kde-extras/ktorrent/branches/experimental/debian/ktorrent.1	2008-02-05 03:00:57 UTC (rev 9281)
@@ -1,8 +1,8 @@
-.TH KTORRENT 1 "JUNE 2007"
+.TH ktorrent 1 "FEBRUARY 2008"
 .SH NAME
 ktorrent \- a BitTorrent program for KDE.
 .SH SYNOPSIS
-\fBktorrent\fP [Qt-options] [KDE-options] [URL]
+\fBktorrent\fP [Qt-options] [KDE-options] [Options] [URL]
 .SH DESCRIPTION
 \fBKTorrent\fP is a BitTorrent program for KDE. You can use it to
 download files from BitTorent network. Its features include speed capping
@@ -11,6 +11,12 @@
 
 If you specify URL, KTorrent will load the torrent from the specified location and
 start downloading it.
+
+.SS Options
+.TP
+\fB\-\-silent\fP
+Silently open torrent given on URL
+
 .SS Generic options
 .TP
 \fB\-\-help\fP

Added: kde-extras/ktorrent/branches/experimental/debian/patches/04_pastedialog_support_remote_urls.diff
===================================================================
--- kde-extras/ktorrent/branches/experimental/debian/patches/04_pastedialog_support_remote_urls.diff	                        (rev 0)
+++ kde-extras/ktorrent/branches/experimental/debian/patches/04_pastedialog_support_remote_urls.diff	2008-02-05 03:00:57 UTC (rev 9281)
@@ -0,0 +1,11 @@
+--- ktorrent-3.0~rc1.dfsg.1/ktorrent/pastedialog.cpp	2008-01-27 13:56:53.000000000 +0200
++++ ktorrent-3.0~rc1.dfsg.1/ktorrent/pastedialog.cpp	2008-02-05 04:35:07.000000000 +0200
+@@ -49,7 +49,7 @@
+ 
+ 	void PasteDialog::accept()
+ 	{
+-		KUrl url = KUrl::fromPath ( m_url->text() );
++		KUrl url( m_url->text() );
+ 		if ( url.isValid() )
+ 		{
+ 			m_core->load ( url );

Modified: kde-extras/ktorrent/branches/experimental/debian/patches/series
===================================================================
--- kde-extras/ktorrent/branches/experimental/debian/patches/series	2008-02-05 00:43:02 UTC (rev 9280)
+++ kde-extras/ktorrent/branches/experimental/debian/patches/series	2008-02-05 03:00:57 UTC (rev 9281)
@@ -1,3 +1,4 @@
 01_system_geoip_and_flags.diff
 02_kclosestnodessearch_cleanup.diff
 03_trunk_pull_r769910.diff -p0
+04_pastedialog_support_remote_urls.diff




More information about the pkg-kde-commits mailing list