webview: Use Wry crate version.
This commit is contained in:
parent
fdca75d5a7
commit
28d887cf5e
3 changed files with 10 additions and 17 deletions
7
Cargo.lock
generated
7
Cargo.lock
generated
|
|
@ -2879,7 +2879,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e310b3a6b5907f99202fcdb4960ff45b93735d7c7d96b760fcff8db2dc0e103d"
|
checksum = "e310b3a6b5907f99202fcdb4960ff45b93735d7c7d96b760fcff8db2dc0e103d"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cfg-if",
|
"cfg-if",
|
||||||
"windows-targets 0.48.5",
|
"windows-targets 0.52.6",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
@ -6354,8 +6354,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wry"
|
name = "wry"
|
||||||
version = "0.46.0"
|
version = "0.46.1"
|
||||||
source = "git+https://github.com/huacnlee/wry.git?branch=add-blur-method#8c0d413f0ac9699351a9ed3c6023b1c903758501"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "2f8c948dc5f7c23bd93ba03b85b7f679852589bb78e150424d993171e4ef7b73"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"block2",
|
"block2",
|
||||||
|
|
|
||||||
18
README.md
18
README.md
|
|
@ -8,6 +8,7 @@ A UI components for building desktop application by using [GPUI](https://gpui.rs
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- [x] Theming
|
- [x] Theming
|
||||||
|
- [x] TitleBar
|
||||||
- [ ] TextInput
|
- [ ] TextInput
|
||||||
- [x] Ctrl+a, e to move cursor to start/end
|
- [x] Ctrl+a, e to move cursor to start/end
|
||||||
- [x] Copy, Cut, Paste by keyboard
|
- [x] Copy, Cut, Paste by keyboard
|
||||||
|
|
@ -19,6 +20,7 @@ A UI components for building desktop application by using [GPUI](https://gpui.rs
|
||||||
- [x] OtpInput
|
- [x] OtpInput
|
||||||
- [x] Button
|
- [x] Button
|
||||||
- [x] Button with Icon
|
- [x] Button with Icon
|
||||||
|
- [x] ButtonGroup
|
||||||
- [x] IconButton
|
- [x] IconButton
|
||||||
- [x] Glost / Outline Button
|
- [x] Glost / Outline Button
|
||||||
- [x] Loading
|
- [x] Loading
|
||||||
|
|
@ -26,33 +28,23 @@ A UI components for building desktop application by using [GPUI](https://gpui.rs
|
||||||
- [x] Label
|
- [x] Label
|
||||||
- [x] Icon
|
- [x] Icon
|
||||||
- [x] Checkbox
|
- [x] Checkbox
|
||||||
- [x] With label
|
|
||||||
- [x] Radio
|
- [x] Radio
|
||||||
- [ ] RadioGroup
|
|
||||||
- [x] Switch
|
- [x] Switch
|
||||||
- [x] With Label (Left, Right side)
|
|
||||||
- [x] Toggle Animation
|
|
||||||
- [x] Dropdown
|
- [x] Dropdown
|
||||||
- [x] Tabs
|
- [x] Tabs
|
||||||
- [x] Tab
|
|
||||||
- [x] TabBar
|
|
||||||
- [x] Notification
|
- [x] Notification
|
||||||
- [x] Tooltip
|
- [x] Tooltip
|
||||||
- [x] Popover
|
- [x] Popover
|
||||||
- [x] Floating Popover
|
|
||||||
- [x] Child window Popover
|
|
||||||
- [x] Dockpanel
|
- [x] Dockpanel
|
||||||
- [x] Resizable
|
- [x] Resizable
|
||||||
- [x] Progress
|
- [x] Progress & Indicator
|
||||||
- [x] ProgressBar
|
|
||||||
- [x] Indicator
|
|
||||||
- [x] Slider
|
- [x] Slider
|
||||||
- [x] Skeleton
|
- [x] Skeleton
|
||||||
- [ ] DatePicker
|
- [ ] DatePicker
|
||||||
- [x] DatePicker
|
- [x] DatePicker
|
||||||
|
- [x] DateRangePicker
|
||||||
- [x] Calendar
|
- [x] Calendar
|
||||||
- [ ] TimePicker
|
- [ ] TimePicker
|
||||||
- [x] DateRangePicker
|
|
||||||
- [x] ColorPicker
|
- [x] ColorPicker
|
||||||
- [x] List
|
- [x] List
|
||||||
- [x] A complex List example.
|
- [x] A complex List example.
|
||||||
|
|
@ -70,7 +62,7 @@ A UI components for building desktop application by using [GPUI](https://gpui.rs
|
||||||
- [x] Drawer
|
- [x] Drawer
|
||||||
- [x] Modal
|
- [x] Modal
|
||||||
- [x] Notification
|
- [x] Notification
|
||||||
- [ ] Collapsible Notifications
|
- [x] WebView
|
||||||
|
|
||||||
## Showcase
|
## Showcase
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ resvg = { version = "0.41.0", default-features = false }
|
||||||
usvg = { version = "0.41.0", default-features = false }
|
usvg = { version = "0.41.0", default-features = false }
|
||||||
paste = "1"
|
paste = "1"
|
||||||
once_cell = "1.19.0"
|
once_cell = "1.19.0"
|
||||||
wry = { git = "https://github.com/huacnlee/wry.git", branch = "add-blur-method" }
|
wry = "0.46.1"
|
||||||
smol = "1"
|
smol = "1"
|
||||||
regex = "1"
|
regex = "1"
|
||||||
rust-i18n = "3"
|
rust-i18n = "3"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue