Chris
Chris
The generated plots are created with transparent backgrounds. This makes them impossible to read when embedded on a page with anything but white background color. This manifests even [in the...
`cargo sweep -r path` leaves the `target//incremental` directory as-is, which can amass a lot of redundant builds. I would expect sweep to clean this directory too.
Currently only mods installed through the manager will show up in the mod list. It would be good if all mods would show up in the list. There are a...
There are a lot of spots in the code rejected by mypy and pylint. It would be good to clean up these issues. There are a few approaches that can...
:clipboard: **Description** The search results on the site for searches with multiple results don't show any information to discern the results. It is impossible to figure out what each result...
HiDPI handling of the flex layout has regressed between versions `1.0.12` and `1.0.13`. It doesn't fill the full window anymore, leaving empty space depending on the scaling of the primary...
### Describe the feature This was previously reported in #4101 and a PR was opened in #4850. Calls to `require()` aren't transpiled when compiling to `module` targets. This causes module...
It would be convenient to have `enum class` support similar to how classes are implemented. ``` enum class EnumClass { Hesiod = 0, Theia = 1 }; state["EnumClass"].SetEnumClass( "Hesiod", EnumClass::Hesiod,...
While testing some async code shuffling handles between threads I came across a case where `.await` inside `.spawn()` doesn't return. I created a repro case here: https://github.com/Systemcluster/switchyard/blob/trunk/tests/repro.rs Running with `cargo...
Currently `remoteprocess` (and in turn `py-spy` and other dependents) fail to compile on Windows due to the missing feature. It's used here: https://github.com/benfred/remoteprocess/blob/3e94f997345565e3dfe36e1dc206abb557c13e67/src/windows/symbolication.rs#L11 Fixes [py-spy/issues/668](https://github.com/benfred/py-spy/issues/668)