⬆️ Bump dioxus version (main -> 0.6.1)
Some checks failed
ci/woodpecker/push/dockerize Pipeline failed
ci/woodpecker/push/deploy unknown status

This commit is contained in:
2024-12-29 16:22:20 +01:00
parent a533f1869d
commit 6586edf287
2 changed files with 4 additions and 5 deletions

View File

@@ -43,8 +43,7 @@ tracing-forest = "0.1.6"
turf = "0.9.3"
# Dioxus
# dioxus-free-icons = { version = "0.8", features = ["ionicons", "font-awesome-solid"] }
dioxus-free-icons = { git = "https://github.com/ASR-ASU/dioxus-free-icons.git", branch = "asr/dioxus-0.6", features = ["ionicons", "font-awesome-solid"] }
dioxus-free-icons = { version = "0.9", features = ["ionicons", "font-awesome-solid"] }
modx = "0.1.2"
# Matrix rich text editor
@@ -56,7 +55,7 @@ tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing-web = "0.1.3"
# Dioxus
dioxus = { git = "https://github.com/DioxusLabs/dioxus.git", branch = "main", features = ["web"] }
dioxus = { version = "0.6.1", features = ["web"] }
web-sys = "0.3.69"
# Matrix
@@ -70,7 +69,7 @@ time = "0.3.36"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "time"] }
# Dioxus
dioxus = { git = "https://github.com/DioxusLabs/dioxus.git", branch = "main", features = ["desktop"] }
dioxus = { version = "0.6.1", features = ["desktop"] }
# Matrix
matrix-sdk = { git = "https://github.com/matrix-org/matrix-rust-sdk.git", default-features = false, features = ["rustls-tls"] }

View File

@@ -9,7 +9,7 @@ turf::style_sheet!("src/ui/components/wallpaper.scss");
pub fn Wallpaper(display_version: Option<bool>) -> Element {
let background_image = format!(
"url({})",
manganis::mg!(file("public/images/wallpaper-pattern.svg"))
manganis::asset!("public/images/wallpaper-pattern.svg")
);
let version = display_version.map(|flag| if flag { Some(GIT_VERSION) } else { None });