Update of /cvsroot/btplusplus/BT++/src
In directory sc8-pr-cvs1:/tmp/cvs-serv13101/src
Modified Files:
BT++.py LoaderManager.py
Log Message:
Implemented seed number control
Updated to wxPython 2.4.0.6 (false/true deprecated)
Fixed: If last torrent completed it wasn't removed from list
Fixed: Chckboxes in WT++ config not working
Added shell command to BT++.py
Added WT++ readme
Updated BT++ readme (linux setup)
Improved some html templates
Index: BT++.py
===================================================================
RCS file: /cvsroot/btplusplus/BT++/src/BT++.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** BT++.py 22 Feb 2003 13:37:16 -0000 1.2
--- BT++.py 16 Mar 2003 01:17:57 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ #!/usr/bin/python
+
from sys import argv, version
from os import path, chdir, mkdir
Index: LoaderManager.py
===================================================================
RCS file: /cvsroot/btplusplus/BT++/src/LoaderManager.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** LoaderManager.py 9 Mar 2003 16:14:34 -0000 1.5
--- LoaderManager.py 16 Mar 2003 01:17:58 -0000 1.6
***************
*** 145,150 ****
# UPDATE TORRENT LIST
tors = listdir( self.DirTorrent )
- if len(tors) == 0:
- return
FilesConf = ConfigFile()
--- 145,148 ----
***************
*** 166,169 ****
--- 164,169 ----
self.Loaders.remove(l)
con = true
+
+ FilesConf.Save()
for loader in self.Loaders:
***************
*** 175,178 ****
--- 175,181 ----
new.append(key)
+
+ if len(tors) == 0:
+ return
for tor in tors:
|