Daniel Porteous (dport)

Results 226 issues of Daniel Porteous (dport)

I would love it if BackgroundMusic supported changing the overall volume. I have a device that doesn't allow you to do that, and BackgroundMusic helps a bit, but I have...

## Icon is grey instead of white **Description of the bug** On startup, the icon appears white for just a moment but then turns to grey. **Steps to reproduce** Start...

bug

Hey, as I look through more of the codebase, I so far see that every implementation of `ToJSON` / `ParseFromJSON` just calls out to serde directly. I wonder why these...

question

This PR adds support for YAML, in all the same ways that there is support for JSON. For the most part I just copied what we do for JSON, but...

Hey, there are a handful of changes in main that I'd like to use, but currently they're not in a released on crates.io. This means I have to target the...

question

Hey, I have some logging middleware where I'd love to do log based on `operation_id`, but I don't know how I can access that data from middleware. I can't see...

question

First, some code: ``` #[derive(Clone, Debug, PartialEq, Union)] #[oai(discriminator_name = "type", one_of)] pub enum WriteSetChange { DeleteModule(DeleteModule), DeleteResource(DeleteResource), } #[derive(Clone, Debug, PartialEq, Object)] pub struct DeleteModule { pub address: Address,...

question

I have an OpenAPI based server that says that it only ever returns JSON formatted errors. However, the framework doesn't do this by default. For most errors that originate from...

enhancement

Hey, I see in some places in the code base, we use `application/json` as the Content-Type: - poem-openapi/src/payload/json.rs Whereas in others, we use `application/json; charset=utf-8`: - poem/src/web/json.rs I wonder is...

bug

Hey, I see in Poem there is `deny_unknown_fields` for when deserializing objects. I wonder if there is a similar thing for query params. For example, if I have a function...

question