Mads Marquart

Results 251 issues of Mads Marquart

I'm not sure exactly what's wrong here, probably something specific to my setup. The console shows the following on load: ``` Uncaught TypeError: img.parentNode is null ``` And the following...

Seems like the [`muda`](https://github.com/tauri-apps/muda) is more maintained, so let's move stuff from this crate to that, and deprecate `menubar`. CC @amrbashir, does Tauri want the crate name?

See comments in the code for reasoning. The impl for `Id` is the same as `Arc`, the impl for `Id` is the same as `Box` and the impl for `WeakId`...

Goodness, can't believe I haven't seen this crate before now! I mean, there's so much good stuff in here, I've looked at it for like an hour and only really...

I'm considering `cfg`-gating the use of `bitflags!` in my libraries, and to that end it would be nice if it was possible to apply attributes to the generated `impl`s as...

As recommended by Clang developers in https://github.com/llvm/llvm-project/issues/88271#issuecomment-2050425068, we already specify `--target`, and that should be enough. Related: https://github.com/rust-lang/cc-rs/pull/1029, the `-mxros-version-min`/`-mvisionos-version-min` option does not exist. CC @BlackHoleFox.

Register for event-loop lifecycle events using the `NSNotification` API instead of application delegates. This gives the user full control over the application delegate, which opens several doors for customization that...

S - enhancement
DS - macos
S - docs
DS - ios

How to store and clear the internal state should be internal to the implementation on each backend. I'm doing this because I want to refactor the macOS backend to not...

S - maintenance

Since https://github.com/rust-windowing/winit/pull/3709, we do a blanket impl of `ApplicationHandler` for `&mut` references. This means that we can now change `run_app_x` methods to consume the application instead of taking a reference...

S - api
C - nominated

AppKit/UIKit has a concept of "run loops", which are effectively a queue of events that are repeatedly consumed from, and when empty, the consuming thread is `std::thread::park`ed until new events...

B - bug
DS - macos
DS - ios
C - needs discussion