-
-
Notifications
You must be signed in to change notification settings - Fork 21
Implement downloads #201
base: main
Are you sure you want to change the base?
Implement downloads #201
Conversation
The previous event didn't trigger on click.
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.
Awesome work! I did a quick pass over code style and am going to dogfood this for a while, but left some quick notes, mostly around indentation/whitespace.
src/Widgets/DownloadsButton.vala
Outdated
* | ||
* Authored by: Adrian Cochrane <[email protected]> | ||
*/ | ||
namespace Ephemeral { |
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.
I typically avoid the extra indentation level and just namespace the class itself, i.e. Ephemeral.DownloadsButton
. I think I'd like to do that here as well for consistency with the rest of the codebase.
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.
I differed for the sake of two helper classes, but I can make that adjustment.
Co-Authored-By: Cassidy James Blaede <[email protected]>
Co-Authored-By: Cassidy James Blaede <[email protected]>
Co-Authored-By: Cassidy James Blaede <[email protected]>
Co-Authored-By: Cassidy James Blaede <[email protected]>
Co-Authored-By: Cassidy James Blaede <[email protected]>
Co-Authored-By: Cassidy James Blaede <[email protected]>
Co-Authored-By: Cassidy James Blaede <[email protected]>
Co-Authored-By: Cassidy James Blaede <[email protected]>
Co-Authored-By: Cassidy James Blaede <[email protected]>
Co-Authored-By: Cassidy James Blaede <[email protected]>
Co-Authored-By: Cassidy James Blaede <[email protected]>
Co-Authored-By: Cassidy James Blaede <[email protected]>
Co-Authored-By: Cassidy James Blaede <[email protected]>
Co-Authored-By: Cassidy James Blaede <[email protected]>
Co-Authored-By: Cassidy James Blaede <[email protected]>
Co-Authored-By: Cassidy James Blaede <[email protected]>
I've gone over your feedback and incorporated it into my pull request. |
Fixes #36
It matches your mockup, except it uses a ListBox for better keyboard input and nicer layout upon removing a download. And as requested it shows a Toast once the download has been completed.