4 Commits
Author SHA1 Message Date
Ida Dahl c7782c82c4 Merge pull request #2 from hulthe/chores
Add window meta and update dependencies
2026-08-11 10:39:35 +02:00
hulthe 5be85370fb Update dependencies 2026-08-11 10:29:59 +02:00
hulthe 5a1506feea Fix srv edition 2026-08-11 10:29:59 +02:00
hulthe 932b5cd266 Add window title and icon 2026-06-29 21:30:28 +02:00
4 changed files with 1380 additions and 1134 deletions
Generated
+1373 -1131
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -39,7 +39,7 @@ serde_json = "1.0.148"
anyhow = "1.0.100"
[dependencies.slint]
version = "1.15.1"
version = "1.17.1"
default-features = false
features = [
"live-preview",
@@ -63,4 +63,4 @@ wasm-bindgen-futures = "0.4.56"
web-sys = "0.3.83"
[build-dependencies]
slint-build = "1.15.1"
slint-build = "1.17.1"
+4
View File
@@ -323,8 +323,12 @@ component ShopView inherits VerticalLayout {
export component App inherits Window {
title: "Inköpslista";
icon: @image-url("../images/icon.svg");
preferred-height: 700px;
preferred-width: 480px;
TabWidget {
Tab {
title: "Add";
+1 -1
View File
@@ -1,7 +1,7 @@
[package]
name = "inkopslista-srv"
version = "0.1.0"
edition = "2021"
edition = "2024"
[dependencies]
rocket = { version = "0.5.1", features = ["json"] }