Miles Murgaw
Miles Murgaw
## Feature Request Add the ability to specify all or a list of platforms to create builds/bundles from. This would make releasing multi-platform projects as simple as a single command....
**Problem** When accessing URLs longer than 270 characters, the `dx serve` server returns HTTP 500. **Steps To Reproduce** - Host any web app using `dx serve` and enter a URL...
Removes the `default_platform` field in `Dioxus.toml` in favor of using default `Cargo.toml` features.
This adds hot reload support to the web renderer through the `window.postMessage` system for `dioxus-playground`. The `devtools-playground` feature enables this system. Required by https://github.com/DioxusLabs/playground/pull/13
This PR adds prebuilt binary (and fallback compile-from-source) installation of the wasm-bindgen CLI. This allows our CLI to build a project of *any* `wasm-bindgen` version as long as the installed...
Original issue: https://github.com/DogeDark/dioxus-logger/issues/6 cc @LuckyTurtleDev ## Feature Request Add compatibility between log and tracing in Dioxus Logger so that logs of both types are emitted. (such as from a `log`-based...
Adds a `optimize_files` option for `FolderAsset` e.g. ```rs const FOLDER_OPTIONS: FolderAssetOptions = FolderAssetOptions::new().with_optimize_files(true); ``` If the flag is set, the file will go under minor processing. The flag defaults to...
This PR fixes the `always-on-top` setting (the environment variable wasn't being set) and also makes a few revisions to make `CliSettings` the single source of truth for the settings it...
**Problem** The CLI handles hot reloads while the app is building. I've noticed occasional issues with this such as invalid templates crashing the app (needing a CLI restart). **Steps To...