Benedikt Werner
Benedikt Werner
With "Preview selected window" enabled, the positioning and size of the preview sometimes goes out of sync with the actual position of the window, e.g. the preview is way smaller...
Example code to be patched: ```csharp class C { IEnumerator FirstEnumerator() { yield return SecondEnumerator(); } static IEnumerator SecondEnumerator() { yield break; } } ``` Example plugin: ```csharp [BepInPlugin("test", "test",...
In Scala 3, `if` without an `else` always evaluates to `Unit`. This means code like `div(if (cond) h1("a"), ...)` now never produces anything, even if the conditions is true, which...
When a float input has a current value like `7`, it's impossible to type a `.` after it to eventually type something like `7.5`. The reason is that it parses...
Fixes #15 I'm actually rather confused why the current code doesn't already work and just allows me to use `,` everywhere. After looking into it a bit, apparently, during the...
When opening the manager, the period is removed from all float settings, so e.g. `0.7` just becomes `7`. Saving then ofc gives wildly incorrect values. I also can't type a...
Not sure if this is the right place to post this but I ran into the following issue trying to use the `credentialless` attribute with Twitter tweet embeds: The iframes...
As discussed on [email protected], Envoy currently panics when receiving an Oauth callback while the Oauth has no healthy upstream (e.g. because Envoy can't resolve its hostname), because the onSuccess callback...