Jonas Broeckmann

Results 6 issues of Jonas Broeckmann

How it is: `float g = ((color & 0x000FF000) >>> 8) / 255f;` How it should be: `float g = ((color & 0x0000FF00) >>> 8) / 255f;`

fixed-in-dev

Moved from comment on pull request: https://github.com/ajalt/mordant/pull/192#issuecomment-2254610167 `ESC` can both mean the escape key was pressed as well as be the start of an escape sequence. It might be possible...

- [x] I have read the [Contributing Guide](https://github.com/ScoopInstaller/.github/blob/main/.github/CONTRIBUTING.md).

review-needed

Second bug from https://github.com/charleskorn/kaml/pull/607 (as preparation for the PR) > Previously it was not possible to implement a content based polymorphic serializer in the case that one of the types...

First bug from https://github.com/charleskorn/kaml/pull/607 > Previously the `node` property on the decoders was not traversed in deep YAML trees (e.g. with `YamlMapLikeInputBase` and `YamlListInput`). This behaviour is different from the...

- [x] Implemented `YamlContentPolymorphicSerializer` in the same manner as [`JsonContentPolymorphicSerializer`](https://kotlinlang.org/api/kotlinx.serialization/kotlinx-serialization-json/kotlinx.serialization.json/-json-content-polymorphic-serializer/) - [x] Implemented tests for `YamlContentPolymorphicSerializer` - Depends on: - https://github.com/charleskorn/kaml/pull/617 - https://github.com/charleskorn/kaml/pull/618 Example usage: ```kotlin @Serializable(with = AnimalSerializer::class) sealed...