-
Notifications
You must be signed in to change notification settings - Fork 169
Add column "Created" #562
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add column "Created" #562
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -346,6 +346,7 @@ | |
| "torrents.properties.comment": "Comment", | ||
| "torrents.properties.date.added": "Added", | ||
| "torrents.properties.date.created": "Created", | ||
| "torrents.properties.date.finished": "Completed", | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| "torrents.properties.directory": "Location", | ||
| "torrents.properties.download.speed": "Download Speed", | ||
| "torrents.properties.download.total": "Downloaded", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,6 +20,7 @@ const defaultFloodSettings: Readonly<FloodSettings> = { | |
| {id: 'seeds', visible: true}, | ||
| {id: 'dateAdded', visible: true}, | ||
| {id: 'dateCreated', visible: false}, | ||
| {id: 'dateFinished', visible: true}, | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we want to display this by default?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Up to you
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm guessing you don't want it displayed by default, so I'll change it. |
||
| {id: 'directory', visible: false}, | ||
| {id: 'hash', visible: false}, | ||
| {id: 'isPrivate', visible: false}, | ||
|
|
@@ -41,6 +42,7 @@ const defaultFloodSettings: Readonly<FloodSettings> = { | |
| seeds: 100, | ||
| dateAdded: 100, | ||
| dateCreated: 100, | ||
| dateFinished: 100, | ||
| directory: 100, | ||
| hash: 100, | ||
| isPrivate: 100, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We would need a new icon here.