Rename "Peers" column to "Live/Seen"
This commit is contained in:
parent
b7be30aff5
commit
295e85e235
2 changed files with 7 additions and 1 deletions
6
TODO.md
6
TODO.md
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue