mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-03 15:08:40 +00:00
Fix uncaught exception when closing deluge in classic mode
This commit is contained in:
parent
2a2f5d90ae
commit
37a00a48a7
2 changed files with 11 additions and 5 deletions
11
ChangeLog
11
ChangeLog
|
@ -8,15 +8,18 @@
|
||||||
* #1247: Fix deluge-gtk from hanging on shutdown
|
* #1247: Fix deluge-gtk from hanging on shutdown
|
||||||
* #995: Rewrote tracker_icons
|
* #995: Rewrote tracker_icons
|
||||||
|
|
||||||
==== Blocklist ====
|
==== GtkUI ====
|
||||||
* Implement local blocklist support
|
* Fix uncaught exception when closing deluge in classic mode
|
||||||
* #861: Pause transfers until blocklist is imported
|
|
||||||
|
|
||||||
==== Web ====
|
==== WebUI ====
|
||||||
* Migrate to ExtJS 3.1
|
* Migrate to ExtJS 3.1
|
||||||
* Add gzip compression of HTTP data to the server
|
* Add gzip compression of HTTP data to the server
|
||||||
* Improve the efficiency of the TorrentGrid
|
* Improve the efficiency of the TorrentGrid
|
||||||
|
|
||||||
|
==== Blocklist ====
|
||||||
|
* Implement local blocklist support
|
||||||
|
* #861: Pause transfers until blocklist is imported
|
||||||
|
|
||||||
=== Deluge 1.2.0 - "Bursting like an infected kidney" (10 January 2010) ===
|
=== Deluge 1.2.0 - "Bursting like an infected kidney" (10 January 2010) ===
|
||||||
==== Core ====
|
==== Core ====
|
||||||
* Implement new RPC protocol DelugeRPC replacing XMLRPC
|
* Implement new RPC protocol DelugeRPC replacing XMLRPC
|
||||||
|
|
|
@ -153,6 +153,9 @@ class MainWindow(component.Component):
|
||||||
return self.main_glade
|
return self.main_glade
|
||||||
|
|
||||||
def quit(self):
|
def quit(self):
|
||||||
|
if client.is_classicmode():
|
||||||
|
gtk.main_quit()
|
||||||
|
else:
|
||||||
reactor.stop()
|
reactor.stop()
|
||||||
|
|
||||||
def load_window_state(self):
|
def load_window_state(self):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue