enforce queue on resume all and update changelog

This commit is contained in:
Marcos Pinto 2007-08-03 04:37:47 +00:00
parent a37bccbf68
commit 452ee4089c
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
Deluge 0.5.4 (xx August 2007) Deluge 0.5.4 (xx August 2007)
* Option to use a random port every time * Option to use a random port every time
* Pause all/resume all in tray menu
* Proxy system redone - you can now specify different information for each * Proxy system redone - you can now specify different information for each
type of proxy (DHT, peer, tracker, web-seed) type of proxy (DHT, peer, tracker, web-seed)
* TorrentPieces plugin to view piece updates * TorrentPieces plugin to view piece updates

View File

@ -948,4 +948,4 @@ class Manager:
for index, unique_ID in enumerate(self.state.queue): for index, unique_ID in enumerate(self.state.queue):
torrent_state = self.get_core_torrent_state(unique_ID) torrent_state = self.get_core_torrent_state(unique_ID)
if torrent_state['is_paused']: if torrent_state['is_paused']:
self.set_user_pause(unique_ID, False, enforce_queue=False) self.set_user_pause(unique_ID, False, enforce_queue=True)