Hunter Wittenborn
Hunter Wittenborn
### Description of feature Standard Debian packages install licenses at `/usr/share/doc/${pkgname}/copyright`, with all applicable licenses under `copyright`. They take the format described at https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/, but with makedeb there currently isn't...
Since both projects are listed on our homepage, we should probably ensure that both projects always build fine. Just clone their setups and build the packages in the CI, then...
### Details Hey! I've added act to the [MPR](https://mpr.makedeb.org/packages/act), which is an AUR-like repository for Debian and Ubuntu based systems. Would there be any interest in adding instructions for installing...
If you look at the Matrix icon used on homepages it doesn't have the same width as the other icons:  I'm not sure what the branding requirements are for...
It would be nice to be able to add `ColoredString` instances together, so that something like `"blue".blue() + "red".red()` could be done. It would also be nice to add normal...
Rust has several [formatter traits](https://doc.rust-lang.org/std/fmt/#formatting-traits), all of could be printed out (and likewise colored). Currently this crate only provides a way to print via the `Display` trait - any formatting...
I'd consider checking if a value is null to be a pretty common task, and I think it'd be a pretty good candidate for a builtin function. Currently I have...
This is a bit of a personal choice thing, but I was thinking it's what was intended. Cover buttons currently take up the entire available vertical width:  Using the...
Currently, things like the `Component` trait are in the Relm4 prelude, but async traits such as `AsyncComponent` are not. I think it would be good to include those as well,...
It appears that when a panic happens anywhere in the `Component` trait (or any others that function similarly to it) that panics are captured. After the panic occurs, it seems...