feat: Tooltips and Better Surface Management
This commit is contained in:
parent
c7edd37b03
commit
337b80d4ca
90 changed files with 3651 additions and 977 deletions
15
Cargo.toml
15
Cargo.toml
|
|
@ -66,11 +66,14 @@ tokio = [
|
|||
# Wayland window support
|
||||
wayland = [
|
||||
"ashpd?/wayland",
|
||||
"autosize",
|
||||
"iced_runtime/wayland",
|
||||
"iced/wayland",
|
||||
"iced_winit/wayland",
|
||||
"cctk",
|
||||
"surface-message",
|
||||
]
|
||||
surface-message = []
|
||||
# multi-window support
|
||||
multi-window = ["iced/multi-window"]
|
||||
# Render with wgpu
|
||||
|
|
@ -84,11 +87,19 @@ winit_wgpu = ["winit", "wgpu"]
|
|||
xdg-portal = ["ashpd"]
|
||||
qr_code = ["iced/qr_code"]
|
||||
markdown = ["iced/markdown"]
|
||||
async-std = [
|
||||
"dep:async-std",
|
||||
"ashpd/async-std",
|
||||
"rfd?/async-std",
|
||||
"zbus?/async-io",
|
||||
"iced/async-std",
|
||||
]
|
||||
|
||||
[dependencies]
|
||||
apply = "0.3.0"
|
||||
ashpd = { version = "0.9.1", default-features = false, optional = true }
|
||||
async-fs = { version = "2.1", optional = true }
|
||||
async-std = { version = "1.10", optional = true }
|
||||
cctk = { git = "https://github.com/pop-os/cosmic-protocols", package = "cosmic-client-toolkit", rev = "178eb0b", optional = true }
|
||||
chrono = "0.4.35"
|
||||
cosmic-config = { path = "cosmic-config" }
|
||||
|
|
@ -104,7 +115,9 @@ libc = { version = "0.2.155", optional = true }
|
|||
license = { version = "3.5.1", optional = true }
|
||||
mime = { version = "0.3.17", optional = true }
|
||||
palette = "0.7.3"
|
||||
rfd = { version = "0.14.0", default-features = false, features = ["xdg-portal"], optional = true }
|
||||
rfd = { version = "0.14.0", default-features = false, features = [
|
||||
"xdg-portal",
|
||||
], optional = true }
|
||||
rustix = { version = "0.38.34", features = [
|
||||
"pipe",
|
||||
"process",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue