Hofer-Julian
Hofer-Julian
People are currently surprised that they can't subclass certain types. - Explain the concept of final types - Show how to find out whether your type is subclassable (e.g. by...
Extend the To-Do app to use Adwaita in a chapter later in the book but before explaining how to make a Linux app. This example created by @exalm can serve...
- Relm4 - GStreamer - Adwaita - Sourceview - Shumate - WebKitGTK - Zbus and Ashpd - Rsvg
After #827 is resolved all mentions of meson and flatpak in the book will be gone. We will then want to add a chapter which explains the step needed to...
A chapter about async would probably be a follow-up to the main event loop chapter. Content could include: - how to use channels from the futures crate - how to...
My archives contain folders owned by root. I've noticed that when up-to-date Vorta mounts these archives, these folders are not accessible anymore. The reason is that this commit https://github.com/borgbase/vorta/commit/95d964c40f6bc284cca2ed0d9dd5cff8096fcf34 stops...
`borg extract` recreates the whole file tree of the backup in the current working directory. These are sensible defaults for system backups, but maybe less suitable for Vorta which is...
Gir currently adds an "Implements" section to the docs (e.g. see [here](https://gtk-rs.org/gtk4-rs/gtk4/struct.Switch.html)) To me it would make sense to add a "Properties" section as well. After a quick look it...
At the moment if `clone!` fails to upgrade a weak reference it logs a message and returns `()`. ```rust button_decrease.connect_clicked(clone!(@weak button_increase => move |_| { number.set(number.get() - 1); button_increase.set_label(&number.get().to_string()); }));...