Opened 12 years ago

Closed 11 years ago

Last modified 10 years ago

#4488 closed Bug (wontfix)

Paused list shows paused and finished torrents

Reported by: bandit Owned by:
Priority: Normal Milestone: None Set
Component: Transmission Version: 2.33
Severity: Normal Keywords:
Cc:

Description

I would like to request that in a future release the paused list only shows the paused torrents not paused+finished.

I built the transmission-trunk-r12890 for linux and it still shows both paused and finished under the paused list.

Attachments (2)

transmission-separate_paused_and_finished.patch (1.8 KB) - added by sayap 10 years ago.
A simple patch to separate Paused and Finished for Qt, Gtk+, and Web clients. We don't have to suffer just because Mac people wants to put things into 4 piles.
filterclarify.patch (2.5 KB) - added by cfpp2p 10 years ago.
works nice, I like it. Patch adds new filter plus clarify and describe the filter meanings.

Download all attachments as: .zip

Change History (12)

comment:1 Changed 12 years ago by livings124

  • Version changed from 2.33+ to 2.33

comment:2 Changed 11 years ago by jordan

bandit, are the finished torrents you're seeing also paused?

transmission-gtk's filter code for showing paused torrents, and for showing finished torrents, are currently unrelated to each other:

        case ACTIVITY_FILTER_PAUSED:
            return st->activity == TR_STATUS_STOPPED;

        case ACTIVITY_FILTER_FINISHED:
            return st->finished == TRUE;

comment:3 Changed 11 years ago by livings124

A torrent cannot be finished without being paused. That finished filter will be a subset of the paused filters.

comment:4 Changed 11 years ago by jordan

  • Resolution set to invalid
  • Status changed from new to closed

comment:5 Changed 11 years ago by bandit

  • Resolution invalid deleted
  • Status changed from closed to reopened

Please look at the following example...
I have a total of 400 torrents
3 active
8 downloading
0 seeding
392 paused
326 finished
In my mind paused should = 66 neither started, active, or finished just PAUSED
Combining the finished and the paused, makes the finished tab seem redundant.
Going through 392 paused/finished torrents to change one from paused to finished or just start it again is a a real pain.

Even a way to sort the paused list to only show those not finished would at least be somewhat a fix.

comment:6 follow-up: Changed 11 years ago by livings124

  • Resolution set to wontfix
  • Status changed from reopened to closed

There are a lot of filters that are useful that could be added. The current filters are correct; you just want a "paused-not-finished" filter. A solution could be to sort by progress, which would be closer to what you want.

comment:7 in reply to: ↑ 6 Changed 11 years ago by bandit

Replying to livings124:

There are a lot of filters that are useful that could be added. The current filters are correct; you just want a "paused-not-finished" filter. A solution could be to sort by progress, which would be closer to what you want.

NO what I want is the freaking paused tab to show a paused torrents list not and finshed. In gtk-transmission it is either active,downloading,seeding,paused+finished, or finished.
THAT MAKES NO SENSE!! Why even have a paused list it should be renamed the paused+finished list to better state what it is.

It should be active,downloading,seeding,paused, OR finished. Alas that is not meant to be.

comment:8 Changed 11 years ago by livings124

Relax, don't take the response so personally. Although I am basing this off the Mac client which does not have a finished filter.

comment:9 Changed 11 years ago by bandit

That does sound harsh.I apologize.
I wondered what client you used, and if each was different. I keep so many torrents in finished so that I don't re-download the same ones again.
Even if you sort by progress the paused torrents are still intermingled through out the list with the finished ones. Switching to compact view does make it a little faster but you still have to go through the whole list to find each of the paused torrents.

http://oi55.tinypic.com/148n68i.jpg

Changed 10 years ago by sayap

A simple patch to separate Paused and Finished for Qt, Gtk+, and Web clients. We don't have to suffer just because Mac people wants to put things into 4 piles.

Changed 10 years ago by cfpp2p

works nice, I like it. Patch adds new filter plus clarify and describe the filter meanings.

comment:10 Changed 10 years ago by cfpp2p

for web client only

Note: See TracTickets for help on using tickets.