Evan Almloff
Evan Almloff
Conflicts fixed, but this branch has a bunch of files marked as changed that should not be. #646 has the same changes recreated from master
A hash router is partially implemented (but currently commented out) [here](https://github.com/DioxusLabs/dioxus/blob/master/packages/router/src/history/web_hash.rs)
https://github.com/DioxusLabs/cli/pull/118 should fix this issue on windows. It uses Tauri's bundler. We need to test this on MacOS, and Linux
You can check the CARGO environment variable to see if the program is currently being run by cargo. We should integrate that into this code: https://github.com/DioxusLabs/dioxus/blob/master/packages/desktop/src/protocol.rs#L122 to get the asset...
Nested routes were added as part of #1020
It looks like the tauri bundler exposes options for embedding webview2 in the installer: https://docs.rs/tauri-utils/1.4.0/tauri_utils/config/enum.WebviewInstallMode.html. We now expose this as part of the bundler config
You can now use dioxus std to interact with the clipboard in a cross platform way! [Here is the code that handles the clipboard](https://github.com/DioxusLabs/dioxus-std/blob/master/src/clipboard/mod.rs)
This appears to be fixed by https://github.com/image-rs/image/pull/1976 and published in image `0.25`
> I think it might be better to have commands that are run whenever `dx serve` is run to be set in `Dioxus.toml` similar to how tauri uses `npm run...
> I would also love it if we didn't have a "tailwind.css" in our public folder that we had to commit, I'm aware we can just ignore it with .gitignore...