Rename "Peers" column to "Live/Seen"

This commit is contained in:
Igor Katson 2023-12-06 11:28:52 +00:00
parent b7be30aff5
commit 295e85e235
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5
2 changed files with 7 additions and 1 deletions

View file

@ -45,6 +45,12 @@ desktop:
- [ ] allow to change options later (even with a session restart) - [ ] allow to change options later (even with a session restart)
- [ ] look at logs - allow writing them to files? Set RUST_LOG through API - [ ] look at logs - allow writing them to files? Set RUST_LOG through API
persistence:
- [ ] store total uploaded bytes, so that on restart it comes back up
efficiency:
- [ ] once the torrent is completed, we don't need to remember old peers
refactor: refactor:
- [x] session persistence: should add torrents even if we haven't resolved it yet - [x] session persistence: should add torrents even if we haven't resolved it yet
- [x] where are peers stored - [x] where are peers stored

View file

@ -265,7 +265,7 @@ const TorrentRow: React.FC<{
<Speed statsResponse={statsResponse} /> <Speed statsResponse={statsResponse} />
</Column> </Column>
<Column label="ETA">{getCompletionETA(statsResponse)}</Column> <Column label="ETA">{getCompletionETA(statsResponse)}</Column>
<Column size={2} label="Peers">{formatPeersString()}</Column > <Column size={2} label="Live / Seen">{formatPeersString()}</Column >
<Column label="Actions"> <Column label="Actions">
<TorrentActions id={id} statsResponse={statsResponse} /> <TorrentActions id={id} statsResponse={statsResponse} />
</Column> </Column>