* Show "Hashing:" for torrents that are queued for hashing.

* Allow different min/max peers setting for seeding. Patch by Josef
Drexler.

* Man page entry for "safe_sync" and "max/min_peers_seed".

* The p,o,i,u keys are now bound so they change ElementMenu directly.

* Bound ^P and ^N for moving up/down.


git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@758 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2006-08-15 19:35:43 +00:00
parent 4d988fccb9
commit ee7016f547
15 changed files with 145 additions and 62 deletions
+5 -1
View File
@@ -170,7 +170,11 @@ print_download_info(char* first, char* last, core::Download* d) {
char*
print_download_status(char* first, char* last, core::Download* d) {
if (!d->is_active())
if (d->is_active())
;
else if (d->variable_value("hashing") != 0)
first = print_buffer(first, last, "Hashing: ");
else if (!d->is_active())
first = print_buffer(first, last, "Inactive: ");
if (d->is_hash_checking()) {