This commit is contained in:
parent
ec3c14f1c0
commit
bcec5bdf09
@ -104,22 +104,23 @@
|
||||
|
||||
gp->use_encryption->setChecked(Settings::useEncryption());
|
||||
gp->allow_unencrypted->setChecked(Settings::allowUnencryptedConnections());
|
||||
--- plugins/webinterface/php_interface.cpp 2007/02/09 12:38:50 1.1
|
||||
+++ plugins/webinterface/php_interface.cpp 2007/02/09 12:42:14
|
||||
@@ -126,7 +126,7 @@
|
||||
ret.append(QString("\"max_upload_speed\" => \"%1\",").arg(core->getMaxUploadSpeed()));
|
||||
ret.append(QString("\"max_downloads\" => \"%1\",").arg(Settings::maxDownloads()));
|
||||
ret.append(QString("\"max_seeds\"=> \"%1\",").arg(Settings::maxSeeds()));
|
||||
- ret.append(QString("\"dht_support\" => \"%1\",").arg(Settings::dhtSupport()));
|
||||
+ ret.append(QString("\"dht_support\" => \"%1\",").arg(false));
|
||||
ret.append(QString("\"use_encryption\" => \"%1\"").arg(Settings::useEncryption()));
|
||||
ret.append(");\n}\n");
|
||||
|
||||
@@ -149,32 +149,6 @@
|
||||
Out(SYS_WEB| LOG_DEBUG) << "exec " << it.key().latin1() << endl;
|
||||
switch(it.key()[0]){
|
||||
--- plugins/webinterface/php_interface.cpp 2007/03/06 09:40:49 1.1
|
||||
+++ plugins/webinterface/php_interface.cpp 2007/03/06 09:42:44
|
||||
@@ -130,7 +130,7 @@
|
||||
ret.append(QString("\"max_upload_speed\" => \"%1\",").arg(core->getMaxUploadSpeed()));
|
||||
ret.append(QString("\"max_downloads\" => \"%1\",").arg(Settings::maxDownloads()));
|
||||
ret.append(QString("\"max_seeds\"=> \"%1\",").arg(Settings::maxSeeds()));
|
||||
- ret.append(QString("\"dht_support\" => \"%1\",").arg(Settings::dhtSupport()));
|
||||
+ ret.append(QString("\"dht_support\" => \"%1\",").arg(false));
|
||||
ret.append(QString("\"use_encryption\" => \"%1\"").arg(Settings::useEncryption()));
|
||||
ret.append(");\n}\n");
|
||||
|
||||
@@ -155,32 +155,6 @@
|
||||
switch(it.key()[0])
|
||||
{
|
||||
case 'd':
|
||||
- if(it.key()=="dht"){
|
||||
- if(it.key()=="dht")
|
||||
- {
|
||||
- if(it.data()=="start")
|
||||
- {
|
||||
- Settings::setDhtSupport(true);
|
||||
@ -144,7 +145,6 @@
|
||||
- ht.start(kt::DataDir() + "dht_table",Settings::dhtPort());
|
||||
- }
|
||||
- }
|
||||
- else
|
||||
goto notsupported;
|
||||
break;
|
||||
case 'e':
|
||||
if(it.key()=="encription")
|
||||
|
3
ktorrent-2.1.1.tar.gz
Normal file
3
ktorrent-2.1.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cde1ea4222febc92d44623e3d86333e52ce3cbf02373d50dde431882dc9bd785
|
||||
size 3159931
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f8c3f4dd7a247d1158570ea71cb7f17e10306cfc34b03c757b6b546a831086d3
|
||||
size 3459985
|
@ -1,3 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 6 10:39:55 CET 2007 - stbinner@suse.de
|
||||
|
||||
- update to version 2.1.1:
|
||||
* Rewrite of webserver
|
||||
* New webgui : coldmilk
|
||||
* Networking thread has been split up in 2 threads, one for
|
||||
upload, one for download
|
||||
* Significant speed improvements when downloading over a LAN
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 9 12:21:30 CET 2007 - stbinner@suse.de
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package ktorrent (Version 2.1.0)
|
||||
# spec file for package ktorrent (Version 2.1.1)
|
||||
#
|
||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
@ -16,10 +16,10 @@ URL: http://ktorrent.pwsp.net/
|
||||
License: GNU General Public License (GPL)
|
||||
Group: Productivity/Networking/Other
|
||||
Summary: KDE BitTorrent Client
|
||||
Version: 2.1.0
|
||||
Release: 3
|
||||
Version: 2.1.1
|
||||
Release: 1
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%define rversion 2.1
|
||||
%define rversion %{version}
|
||||
Source: %{name}-%{rversion}.tar.gz
|
||||
Patch2: remove-links.diff
|
||||
Patch3: ktorrent-lazy-binding.diff
|
||||
@ -102,12 +102,19 @@ make DESTDIR=$RPM_BUILD_ROOT install
|
||||
/opt/kde3/share/apps/*
|
||||
/opt/kde3/%_lib/kde3/*
|
||||
/opt/kde3/%_lib/libktorrent.*
|
||||
/opt/kde3/%_lib/libktorrent-2.1.so
|
||||
/opt/kde3/%_lib/libktorrent-%{version}.so
|
||||
/opt/kde3/share/config.kcfg/*.kcfg
|
||||
/opt/kde3/share/services/*.desktop
|
||||
/opt/kde3/share/servicetypes/*.desktop
|
||||
|
||||
%changelog -n ktorrent
|
||||
%changelog
|
||||
* Tue Mar 06 2007 - stbinner@suse.de
|
||||
- update to version 2.1.1:
|
||||
* Rewrite of webserver
|
||||
* New webgui : coldmilk
|
||||
* Networking thread has been split up in 2 threads, one for
|
||||
upload, one for download
|
||||
* Significant speed improvements when downloading over a LAN
|
||||
* Fri Feb 09 2007 - stbinner@suse.de
|
||||
- port and re-enable patch 16
|
||||
* Mon Feb 05 2007 - stbinner@suse.de
|
||||
|
Loading…
Reference in New Issue
Block a user