Skip to content

Commit 4dcee10

Browse files
committed
feat: update dependencies and enhance button styles in the GUI
1 parent ee01ae7 commit 4dcee10

3 files changed

Lines changed: 39 additions & 106 deletions

File tree

Cargo.lock

Lines changed: 21 additions & 102 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[package]
22
name = "streamrs"
3-
version = "0.5.3"
3+
version = "0.5.4"
44
edition = "2024"
55
license = "MIT"
66

77
[dependencies]
88
adw = { package = "libadwaita", version = "0.9.1" }
99
chrono = "0.4.44"
1010
gtk = { package = "gtk4", version = "0.11.0" }
11-
hidapi = "2.6.4"
12-
image = "0.25.9"
11+
hidapi = "2.6.5"
12+
image = "0.25.10"
1313
resvg = "0.47.0"
1414
serde = { version = "1.0.228", features = ["derive"] }
15-
toml = "1.0.3"
15+
toml = "1.0.6"
1616

1717
[profile.release]
1818
strip = true

src/gui/core/style.rs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,24 @@ headerbar.window-titlebar {
153153
background: alpha(@accent_color, 0.80);
154154
color: @accent_fg_color;
155155
}
156+
.apply-button:hover {
157+
background: alpha(@accent_color, 0.92);
158+
}
159+
.apply-button:active {
160+
background: @accent_color;
161+
}
156162
.clear-button {
157163
background: alpha(#864a66, 0.45);
158164
color: #ffc1d5;
159165
}
166+
.clear-button:hover {
167+
background: alpha(#864a66, 0.62);
168+
color: #ffd8e5;
169+
}
170+
.clear-button:active {
171+
background: alpha(#864a66, 0.75);
172+
color: #ffe4ec;
173+
}
160174
.about-sheet {
161175
background: @window_bg_color;
162176
border-radius: 18px;

0 commit comments

Comments
 (0)