Cassandra McCarthy
Cassandra McCarthy
This PR implements Forum Channels support. Continued from #1833. Closes #1675.
Closes #1709. Closes #1867. Changelog --------- Remove `TriggerType::HarmfulLink`, add `TriggerType::MentionSpam`. Add requests `CreateAutoModerationRule`, `DeleteAutoModerationRule`, `GetAutoModerationRule`, `GetGuildAutoModerationRules`, and `UpdateAutoModerationRule`. `CreateAutoModerationRule` ensures the correct trigger metadata is supplied by replacing `exec` with...
Continued from #1487. Closes #1466.
Validation can be performed on other fields, such as `CreateRole::name`. A once-over should be done on all of our request builder methods to ensure that everything is validated. This list...
```rust pub enum Foo { Bar { a: String, b: i32, } } ``` becomes ```rust #[non_exhaustive] pub enum Foo { Bar(Bar), } #[non_exhaustive] pub struct Bar { pub a:...
I am using the `{tab}` character in my `agenda_event_format`: `"{calendar-color}{cancelled}{start-end-time-style}{tab}{title}{repeat-symbol} {reset}{calendar}{reset}"`, and here is my output. ``` [cassie@houndoom ~]$ khal calendar -a Calendar -a Classes Su Mo Tu We Th...
I'd like TomatoBar to enable the work focus when the timer starts, and turn it off when it ends. I looked into Automator for this, but I'm not familiar enough...
When I get home, I add my fillup to Firefly, and the only way I can see it is by editing. It would be nice to see the total cost...
If gas is `$1.80` a gallon, the fill-up list displays this as `$1.8`. This could be fixed by adding something similar to line 30 of the same component: https://github.com/linuxserver/Clarkson/blob/master/src/app/components/fuel-list/fuel-list.component.html#L30 I...