Evan Almloff

Results 533 comments of Evan Almloff

> Is the new websocket-based update mechanism expected to require network permissions on Android? And if so, does that imply that fully offline apps are no longer supported, or is...

> [@ealmloff](https://github.com/ealmloff) Thank you for your answer. I am very happy that it should still work offline, too. Just to be clear that there is no misunderstanding: In my case...

In the short term, using a Vec of Elements as children can work, it just makes using the component less clean: ```rust #![allow(non_snake_case)] use dioxus::prelude::*; fn main() { dioxus_desktop::launch(app) }...

In the longer term, a way to traverse through a single template could be beneficial. A single Element node can contain many different nodes, so it will never have a...

> ```rust > impl Route {...} > ``` This issue is tracking iterating over the VNodes directly which is difficult because of the template structure. Iterating over routes is significantly...

> I wonder if we might be able to add a header with a magic number to identify different versions from each other, letting us support the old format and...

We could, wasm-bindgen does something similar requiring a matching version of the wasm-bindgen-cli and wasm-bindgen itself. That has made it difficult to work with wasm bindgen programmatically in our CLI....

The CLI now decodes both the 0.7.0-0.7.1 version of assets (under the `__MANGANIS__` symbol prefix) and the new more stable serialization (under the `__ASSETS__` symbol prefix) While this is still...

It required a larger change than I was expecting, but the solution we talked about yesterday does work for backwards compatibility. It now bundles under the old __MANGNIS__ symbol name...

That sounds similar to https://github.com/DioxusLabs/dioxus/pull/4929. Can you try a version of dioxus after that commit?