From 35282996407072bccbf74240ebfab928f31fb652 Mon Sep 17 00:00:00 2001 From: Samuel Date: Thu, 26 Dec 2024 11:37:37 -0300 Subject: [PATCH] Release 0.13.4 (#576) --- CHANGELOG.md | 3 + README.md | 2 +- crates/zng-app/Cargo.toml | 2 +- crates/zng-ext-clipboard/Cargo.toml | 8 +- crates/zng-ext-config/Cargo.toml | 6 +- crates/zng-ext-font/Cargo.toml | 8 +- crates/zng-ext-fs-watcher/Cargo.toml | 4 +- crates/zng-ext-hot-reload/Cargo.toml | 6 +- crates/zng-ext-image/Cargo.toml | 4 +- crates/zng-ext-input/Cargo.toml | 6 +- crates/zng-ext-l10n/Cargo.toml | 6 +- crates/zng-ext-single-instance/Cargo.toml | 6 +- crates/zng-ext-svg/Cargo.toml | 6 +- crates/zng-ext-undo/Cargo.toml | 8 +- crates/zng-ext-window/Cargo.toml | 8 +- crates/zng-view-prebuilt/Cargo.toml | 2 +- crates/zng-view/src/lib.rs | 2 +- crates/zng-wgt-access/Cargo.toml | 8 +- crates/zng-wgt-ansi-text/Cargo.toml | 16 ++-- crates/zng-wgt-button/Cargo.toml | 24 ++--- crates/zng-wgt-checkerboard/Cargo.toml | 4 +- crates/zng-wgt-container/Cargo.toml | 6 +- crates/zng-wgt-data-view/Cargo.toml | 6 +- crates/zng-wgt-data/Cargo.toml | 4 +- crates/zng-wgt-dialog/Cargo.toml | 36 ++++---- crates/zng-wgt-fill/Cargo.toml | 4 +- crates/zng-wgt-filter/Cargo.toml | 4 +- crates/zng-wgt-grid/Cargo.toml | 10 +- crates/zng-wgt-image/Cargo.toml | 16 ++-- crates/zng-wgt-input/Cargo.toml | 16 ++-- crates/zng-wgt-inspector/Cargo.toml | 60 ++++++------ crates/zng-wgt-layer/Cargo.toml | 20 ++-- crates/zng-wgt-markdown/Cargo.toml | 50 +++++----- crates/zng-wgt-material-icons/Cargo.toml | 10 +- crates/zng-wgt-menu/Cargo.toml | 46 +++++----- crates/zng-wgt-panel/Cargo.toml | 8 +- crates/zng-wgt-progress/Cargo.toml | 18 ++-- crates/zng-wgt-rule-line/Cargo.toml | 8 +- crates/zng-wgt-scroll/Cargo.toml | 22 ++--- crates/zng-wgt-settings/Cargo.toml | 50 +++++----- crates/zng-wgt-size-offset/Cargo.toml | 4 +- crates/zng-wgt-slider/Cargo.toml | 18 ++-- crates/zng-wgt-stack/Cargo.toml | 8 +- crates/zng-wgt-style/Cargo.toml | 6 +- crates/zng-wgt-text-input/Cargo.toml | 38 ++++---- crates/zng-wgt-text/Cargo.toml | 28 +++--- crates/zng-wgt-toggle/Cargo.toml | 34 +++---- crates/zng-wgt-tooltip/Cargo.toml | 20 ++-- crates/zng-wgt-transform/Cargo.toml | 4 +- crates/zng-wgt-undo-history/Cargo.toml | 28 +++--- crates/zng-wgt-undo/Cargo.toml | 6 +- crates/zng-wgt-webrender-debug/Cargo.toml | 8 +- crates/zng-wgt-window/Cargo.toml | 30 +++--- crates/zng-wgt-wrap/Cargo.toml | 10 +- crates/zng-wgt/Cargo.toml | 4 +- crates/zng/Cargo.toml | 106 +++++++++++----------- crates/zng/README.md | 2 +- crates/zng/src/app.rs | 2 +- crates/zng/src/icon.rs | 2 +- crates/zng/src/lib.rs | 2 +- 60 files changed, 448 insertions(+), 445 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c1fbc7e4..ddc0ebc85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Unreleased + +# 0.13.4 + * Fix crash handler creating a temp file in the executable directory. # 0.13.3 diff --git a/README.md b/README.md index 063d5c0aa..30f3bc852 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ First add `zng` to your `Cargo.toml`, or call `cargo add zng -F view_prebuilt`: ```toml [dependencies] -zng = { version = "0.13.3", features = ["view_prebuilt"] } +zng = { version = "0.13.4", features = ["view_prebuilt"] } ``` Then create your first window: diff --git a/crates/zng-app/Cargo.toml b/crates/zng-app/Cargo.toml index c7e12ec1d..39c8063e6 100644 --- a/crates/zng-app/Cargo.toml +++ b/crates/zng-app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-app" -version = "0.14.2" +version = "0.14.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" diff --git a/crates/zng-ext-clipboard/Cargo.toml b/crates/zng-ext-clipboard/Cargo.toml index 930006318..148a9b461 100644 --- a/crates/zng-ext-clipboard/Cargo.toml +++ b/crates/zng-ext-clipboard/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-clipboard" -version = "0.3.2" +version = "0.3.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -13,11 +13,11 @@ keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] zng-app-context = { path = "../zng-app-context", version = "0.5.13" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-app = { path = "../zng-app", version = "0.14.3" } zng-var = { path = "../zng-var", version = "0.5.12" } zng-view-api = { path = "../zng-view-api", version = "0.11.2" } zng-txt = { path = "../zng-txt", version = "0.2.8" } -zng-ext-image = { path = "../zng-ext-image", version = "0.3.2" } -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } +zng-ext-image = { path = "../zng-ext-image", version = "0.3.3" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } tracing = "0.1" diff --git a/crates/zng-ext-config/Cargo.toml b/crates/zng-ext-config/Cargo.toml index 7d38c5272..7954b20ea 100644 --- a/crates/zng-ext-config/Cargo.toml +++ b/crates/zng-ext-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-config" -version = "0.4.2" +version = "0.4.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -21,13 +21,13 @@ ron = ["dep:ron", "zng-ext-fs-watcher/ron"] [dependencies] zng-app-context = { path = "../zng-app-context", version = "0.5.13" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-app = { path = "../zng-app", version = "0.14.3" } zng-var = { path = "../zng-var", version = "0.5.12" } zng-txt = { path = "../zng-txt", version = "0.2.8" } zng-task = { path = "../zng-task", version = "0.4.14" } zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } zng-unique-id = { path = "../zng-unique-id", version = "0.4.8" } -zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.3.2", features = [ +zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.3.3", features = [ "json", ] } zng-state-map = { path = "../zng-state-map", version = "0.3.8" } diff --git a/crates/zng-ext-font/Cargo.toml b/crates/zng-ext-font/Cargo.toml index df99b2f6d..b1c2766fb 100644 --- a/crates/zng-ext-font/Cargo.toml +++ b/crates/zng-ext-font/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-font" -version = "0.5.3" +version = "0.5.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -26,15 +26,15 @@ svg = [] [dependencies] zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } zng-app-context = { path = "../zng-app-context", version = "0.5.13" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-app = { path = "../zng-app", version = "0.14.3" } zng-txt = { path = "../zng-txt", version = "0.2.8" } zng-view-api = { path = "../zng-view-api", version = "0.11.2" } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.2" } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.3" } zng-var = { path = "../zng-var", version = "0.5.12" } zng-task = { path = "../zng-task", version = "0.4.14" } zng-layout = { path = "../zng-layout", version = "0.2.33" } zng-color = { path = "../zng-color", version = "0.4.2" } -zng-ext-image = { path = "../zng-ext-image", version = "0.3.2" } +zng-ext-image = { path = "../zng-ext-image", version = "0.3.3" } serde = "1.0" unicase = "2.7" diff --git a/crates/zng-ext-fs-watcher/Cargo.toml b/crates/zng-ext-fs-watcher/Cargo.toml index 493215a8e..07e87a97a 100644 --- a/crates/zng-ext-fs-watcher/Cargo.toml +++ b/crates/zng-ext-fs-watcher/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-fs-watcher" -version = "0.3.2" +version = "0.3.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -23,7 +23,7 @@ ron = ["dep:ron"] [dependencies] zng-app-context = { path = "../zng-app-context", version = "0.5.13" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-app = { path = "../zng-app", version = "0.14.3" } zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } zng-var = { path = "../zng-var", version = "0.5.12" } zng-txt = { path = "../zng-txt", version = "0.2.8" } diff --git a/crates/zng-ext-hot-reload/Cargo.toml b/crates/zng-ext-hot-reload/Cargo.toml index bcd6b1ec0..4a82ce12b 100644 --- a/crates/zng-ext-hot-reload/Cargo.toml +++ b/crates/zng-ext-hot-reload/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-hot-reload" -version = "0.2.2" +version = "0.2.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -19,8 +19,8 @@ zng-ext-hot-reload-proc-macros = { path = "../zng-ext-hot-reload-proc-macros", v zng-unique-id = { path = "../zng-unique-id", version = "0.4.8", features = ["hot_reload"] } zng-env = { path = "../zng-env", version = "0.3.8" } zng-app-context = { path = "../zng-app-context", version = "0.5.13" } -zng-app = { path = "../zng-app", version = "0.14.2" } -zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.3.2" } +zng-app = { path = "../zng-app", version = "0.14.3" } +zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.3.3" } zng-unit = { path = "../zng-unit", version = "0.2.11" } zng-var = { path = "../zng-var", version = "0.5.12" } zng-task = { path = "../zng-task", version = "0.4.14" } diff --git a/crates/zng-ext-image/Cargo.toml b/crates/zng-ext-image/Cargo.toml index ce30b7d03..fac9384bf 100644 --- a/crates/zng-ext-image/Cargo.toml +++ b/crates/zng-ext-image/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-image" -version = "0.3.2" +version = "0.3.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -19,7 +19,7 @@ http = ["zng-task/http"] zng-app-context = { path = "../zng-app-context", version = "0.5.13" } zng-unique-id = { path = "../zng-unique-id", version = "0.4.8" } zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-app = { path = "../zng-app", version = "0.14.3" } zng-view-api = { path = "../zng-view-api", version = "0.11.2" } zng-txt = { path = "../zng-txt", version = "0.2.8" } zng-var = { path = "../zng-var", version = "0.5.12" } diff --git a/crates/zng-ext-input/Cargo.toml b/crates/zng-ext-input/Cargo.toml index f0e97bc67..6bc45c248 100644 --- a/crates/zng-ext-input/Cargo.toml +++ b/crates/zng-ext-input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-input" -version = "0.6.2" +version = "0.6.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -15,14 +15,14 @@ keywords = ["gui", "ui", "user-interface", "zng"] zng-app-context = { path = "../zng-app-context", version = "0.5.13" } zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } zng-view-api = { path = "../zng-view-api", version = "0.11.2" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-app = { path = "../zng-app", version = "0.14.3" } zng-txt = { path = "../zng-txt", version = "0.2.8" } zng-var = { path = "../zng-var", version = "0.5.12" } zng-layout = { path = "../zng-layout", version = "0.2.33" } zng-handle = { path = "../zng-handle", version = "0.2.5" } zng-state-map = { path = "../zng-state-map", version = "0.3.8" } zng-unique-id = { path = "../zng-unique-id", version = "0.4.8" } -zng-ext-window = { path = "../zng-ext-window", version = "0.4.2" } +zng-ext-window = { path = "../zng-ext-window", version = "0.4.3" } tracing = "0.1" parking_lot = "0.12" diff --git a/crates/zng-ext-l10n/Cargo.toml b/crates/zng-ext-l10n/Cargo.toml index b9b4f3197..d29dbaa38 100644 --- a/crates/zng-ext-l10n/Cargo.toml +++ b/crates/zng-ext-l10n/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-l10n" -version = "0.6.2" +version = "0.6.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -20,14 +20,14 @@ default = ["tar"] zng-ext-l10n-proc-macros = { path = "../zng-ext-l10n-proc-macros", version = "0.2.9" } zng-app-context = { path = "../zng-app-context", version = "0.5.13" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-app = { path = "../zng-app", version = "0.14.3" } zng-var = { path = "../zng-var", version = "0.5.12" } zng-txt = { path = "../zng-txt", version = "0.2.8" } zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } zng-view-api = { path = "../zng-view-api", version = "0.11.2" } zng-layout = { path = "../zng-layout", version = "0.2.33" } zng-task = { path = "../zng-task", version = "0.4.14" } -zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.3.2" } +zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.3.3" } zng-env = { path = "../zng-env", version = "0.3.8" } fluent = "0.16" diff --git a/crates/zng-ext-single-instance/Cargo.toml b/crates/zng-ext-single-instance/Cargo.toml index 1a84a17b4..c91195e0d 100644 --- a/crates/zng-ext-single-instance/Cargo.toml +++ b/crates/zng-ext-single-instance/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-single-instance" -version = "0.4.2" +version = "0.4.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -13,10 +13,10 @@ keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] zng-env = { path = "../zng-env", version = "0.3.8" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-app = { path = "../zng-app", version = "0.14.3" } zng-txt = { path = "../zng-txt", version = "0.2.8" } zng-task = { path = "../zng-task", version = "0.4.14" } -zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.3.2" } +zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.3.3" } parking_lot = "0.12" single-instance = "0.3" diff --git a/crates/zng-ext-svg/Cargo.toml b/crates/zng-ext-svg/Cargo.toml index cab1099d7..9ab6a1d12 100644 --- a/crates/zng-ext-svg/Cargo.toml +++ b/crates/zng-ext-svg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-svg" -version = "0.2.2" +version = "0.2.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,8 +12,8 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-app = { path = "../zng-app", version = "0.14.2" } -zng-ext-image = { path = "../zng-ext-image", version = "0.3.2" } +zng-app = { path = "../zng-app", version = "0.14.3" } +zng-ext-image = { path = "../zng-ext-image", version = "0.3.3" } zng-txt = { path = "../zng-txt", version = "0.2.8" } zng-unit = { path = "../zng-unit", version = "0.2.11" } zng-task = { path = "../zng-task", version = "0.4.14" } diff --git a/crates/zng-ext-undo/Cargo.toml b/crates/zng-ext-undo/Cargo.toml index f0d296b37..2bc77119d 100644 --- a/crates/zng-ext-undo/Cargo.toml +++ b/crates/zng-ext-undo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-undo" -version = "0.3.2" +version = "0.3.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -14,12 +14,12 @@ keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } zng-app-context = { path = "../zng-app-context", version = "0.5.13" } -zng-app = { path = "../zng-app", version = "0.14.2" } -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } +zng-app = { path = "../zng-app", version = "0.14.3" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } zng-var = { path = "../zng-var", version = "0.5.12" } zng-txt = { path = "../zng-txt", version = "0.2.8" } zng-state-map = { path = "../zng-state-map", version = "0.3.8" } -zng-ext-input = { path = "../zng-ext-input", version = "0.6.2" } +zng-ext-input = { path = "../zng-ext-input", version = "0.6.3" } atomic = "0.6" parking_lot = "0.12" diff --git a/crates/zng-ext-window/Cargo.toml b/crates/zng-ext-window/Cargo.toml index 722ed096c..9873d6d4c 100644 --- a/crates/zng-ext-window/Cargo.toml +++ b/crates/zng-ext-window/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-window" -version = "0.4.2" +version = "0.4.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -21,17 +21,17 @@ http = ["zng-task/http"] zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } zng-unique-id = { path = "../zng-unique-id", version = "0.4.8" } zng-app-context = { path = "../zng-app-context", version = "0.5.13" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-app = { path = "../zng-app", version = "0.14.3" } zng-var = { path = "../zng-var", version = "0.5.12" } zng-txt = { path = "../zng-txt", version = "0.2.8" } zng-layout = { path = "../zng-layout", version = "0.2.33" } zng-state-map = { path = "../zng-state-map", version = "0.3.8" } zng-view-api = { path = "../zng-view-api", version = "0.11.2" } zng-task = { path = "../zng-task", version = "0.4.14" } -zng-ext-image = { path = "../zng-ext-image", version = "0.3.2" } +zng-ext-image = { path = "../zng-ext-image", version = "0.3.3" } zng-color = { path = "../zng-color", version = "0.4.2" } zng-env = { path = "../zng-env", version = "0.3.8" } -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } serde = { version = "1.0", features = ["derive"] } bitflags = { version = "2.5", features = ["serde", "bytemuck"] } diff --git a/crates/zng-view-prebuilt/Cargo.toml b/crates/zng-view-prebuilt/Cargo.toml index 5223f8b24..316970a22 100644 --- a/crates/zng-view-prebuilt/Cargo.toml +++ b/crates/zng-view-prebuilt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-view-prebuilt" -version = "0.13.3" +version = "0.13.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" diff --git a/crates/zng-view/src/lib.rs b/crates/zng-view/src/lib.rs index 650896a4f..f79387c26 100644 --- a/crates/zng-view/src/lib.rs +++ b/crates/zng-view/src/lib.rs @@ -11,7 +11,7 @@ //! //! ```toml //! [dependencies] -//! zng = "0.13.3" +//! zng = "0.13.4" //! zng-view = "0.7.2" //! ``` //! diff --git a/crates/zng-wgt-access/Cargo.toml b/crates/zng-wgt-access/Cargo.toml index 22d1ff77b..191572a98 100644 --- a/crates/zng-wgt-access/Cargo.toml +++ b/crates/zng-wgt-access/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-access" -version = "0.3.2" +version = "0.3.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,7 +12,7 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-app = { path = "../zng-app", version = "0.14.3" } zng-view-api = { path = "../zng-view-api", version = "0.11.2" } -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.3" } diff --git a/crates/zng-wgt-ansi-text/Cargo.toml b/crates/zng-wgt-ansi-text/Cargo.toml index 1d96bb406..93c005b2a 100644 --- a/crates/zng-wgt-ansi-text/Cargo.toml +++ b/crates/zng-wgt-ansi-text/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-ansi-text" -version = "0.4.3" +version = "0.4.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,12 +12,12 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.2" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.2" } -zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.5.2" } -zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.4.2" } -zng-ext-font = { path = "../zng-ext-font", version = "0.5.3" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.4" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.3" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.3" } +zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.5.3" } +zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.4.3" } +zng-ext-font = { path = "../zng-ext-font", version = "0.5.4" } serde = { version = "1.0", features = ["derive"] } diff --git a/crates/zng-wgt-button/Cargo.toml b/crates/zng-wgt-button/Cargo.toml index a32bb6fe6..03381551d 100644 --- a/crates/zng-wgt-button/Cargo.toml +++ b/crates/zng-wgt-button/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-button" -version = "0.5.3" +version = "0.5.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -13,14 +13,14 @@ keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] zng-var = { path = "../zng-var", version = "0.5.12" } -zng-app = { path = "../zng-app", version = "0.14.2" } -zng-ext-font = { path = "../zng-ext-font", version = "0.5.3" } -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.2" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.2" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.2" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.2" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.2" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.2" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } -zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.5.3" } +zng-app = { path = "../zng-app", version = "0.14.3" } +zng-ext-font = { path = "../zng-ext-font", version = "0.5.4" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.3" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.3" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.3" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.3" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.3" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.3" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.4" } +zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.5.4" } diff --git a/crates/zng-wgt-checkerboard/Cargo.toml b/crates/zng-wgt-checkerboard/Cargo.toml index 29c48e66d..56500ecc7 100644 --- a/crates/zng-wgt-checkerboard/Cargo.toml +++ b/crates/zng-wgt-checkerboard/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-checkerboard" -version = "0.4.2" +version = "0.4.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,6 +12,6 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } zng-color = { path = "../zng-color", version = "0.4.2" } serde = "1.0" diff --git a/crates/zng-wgt-container/Cargo.toml b/crates/zng-wgt-container/Cargo.toml index 0099a27c4..6627a0fbc 100644 --- a/crates/zng-wgt-container/Cargo.toml +++ b/crates/zng-wgt-container/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-container" -version = "0.5.2" +version = "0.5.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,7 +12,7 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-app = { path = "../zng-app", version = "0.14.3" } serde = { version = "1.0", features = ["derive"] } diff --git a/crates/zng-wgt-data-view/Cargo.toml b/crates/zng-wgt-data-view/Cargo.toml index c2453996b..dcf168459 100644 --- a/crates/zng-wgt-data-view/Cargo.toml +++ b/crates/zng-wgt-data-view/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-data-view" -version = "0.4.2" +version = "0.4.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,9 +12,9 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } zng-var = { path = "../zng-var", version = "0.5.12" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.2" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.3" } parking_lot = "0.12" tracing = "0.1" diff --git a/crates/zng-wgt-data/Cargo.toml b/crates/zng-wgt-data/Cargo.toml index d6522725d..17c66efd1 100644 --- a/crates/zng-wgt-data/Cargo.toml +++ b/crates/zng-wgt-data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-data" -version = "0.3.2" +version = "0.3.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,7 +12,7 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } zng-color = { path = "../zng-color", version = "0.4.2" } zng-var = { path = "../zng-var", version = "0.5.12" } diff --git a/crates/zng-wgt-dialog/Cargo.toml b/crates/zng-wgt-dialog/Cargo.toml index 135569021..d3095a9fb 100644 --- a/crates/zng-wgt-dialog/Cargo.toml +++ b/crates/zng-wgt-dialog/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-dialog" -version = "0.2.3" +version = "0.2.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,24 +12,24 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.2" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.2" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.2" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.2" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.2" } -zng-ext-window = { path = "../zng-ext-window", version = "0.4.2" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.3" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.3" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.3" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.3" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.3" } +zng-ext-window = { path = "../zng-ext-window", version = "0.4.3" } +zng-app = { path = "../zng-app", version = "0.14.3" } zng-var = { path = "../zng-var", version = "0.5.12" } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.2" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } -zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.5.3" } -zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.4.3" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.2" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.3" } -zng-ext-font = { path = "../zng-ext-font", version = "0.5.3" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.2" } -zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.3.2" } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.3" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.4" } +zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.5.4" } +zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.4.4" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.3" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.4" } +zng-ext-font = { path = "../zng-ext-font", version = "0.5.4" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.3" } +zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.3.3" } zng-view-api = { path = "../zng-view-api", version = "0.11.2" } tracing = "0.1" diff --git a/crates/zng-wgt-fill/Cargo.toml b/crates/zng-wgt-fill/Cargo.toml index 2eb6e1608..486937cb5 100644 --- a/crates/zng-wgt-fill/Cargo.toml +++ b/crates/zng-wgt-fill/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-fill" -version = "0.3.2" +version = "0.3.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,4 +12,4 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } diff --git a/crates/zng-wgt-filter/Cargo.toml b/crates/zng-wgt-filter/Cargo.toml index 26f313c47..f77e58420 100644 --- a/crates/zng-wgt-filter/Cargo.toml +++ b/crates/zng-wgt-filter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-filter" -version = "0.3.2" +version = "0.3.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,5 +12,5 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } zng-color = { path = "../zng-color", version = "0.4.2" } diff --git a/crates/zng-wgt-grid/Cargo.toml b/crates/zng-wgt-grid/Cargo.toml index 339be41d6..a10d6cf98 100644 --- a/crates/zng-wgt-grid/Cargo.toml +++ b/crates/zng-wgt-grid/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-grid" -version = "0.4.2" +version = "0.4.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,10 +12,10 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.2" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.2" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.3" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.3" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.3" } zng-layout = { path = "../zng-layout", version = "0.2.33" } tracing = "0.1" diff --git a/crates/zng-wgt-image/Cargo.toml b/crates/zng-wgt-image/Cargo.toml index 9a942e840..615f9aa1e 100644 --- a/crates/zng-wgt-image/Cargo.toml +++ b/crates/zng-wgt-image/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-image" -version = "0.4.3" +version = "0.4.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,12 +12,12 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-app = { path = "../zng-app", version = "0.14.2" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.2" } -zng-ext-image = { path = "../zng-ext-image", version = "0.3.2" } -zng-ext-window = { path = "../zng-ext-window", version = "0.4.2" } -zng-wgt-window = { path = "../zng-wgt-window", version = "0.7.3" } -zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.4.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-app = { path = "../zng-app", version = "0.14.3" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.3" } +zng-ext-image = { path = "../zng-ext-image", version = "0.3.3" } +zng-ext-window = { path = "../zng-ext-window", version = "0.4.3" } +zng-wgt-window = { path = "../zng-wgt-window", version = "0.7.4" } +zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.4.3" } serde = { version = "1.0", features = ["derive"] } diff --git a/crates/zng-wgt-input/Cargo.toml b/crates/zng-wgt-input/Cargo.toml index 4bdb82a79..8ead1459b 100644 --- a/crates/zng-wgt-input/Cargo.toml +++ b/crates/zng-wgt-input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-input" -version = "0.3.2" +version = "0.3.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,11 +12,11 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.3.2" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.2" } -zng-ext-input = { path = "../zng-ext-input", version = "0.6.2" } -zng-ext-window = { path = "../zng-ext-window", version = "0.4.2" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.3.3" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.3" } +zng-ext-input = { path = "../zng-ext-input", version = "0.6.3" } +zng-ext-window = { path = "../zng-ext-window", version = "0.4.3" } +zng-app = { path = "../zng-app", version = "0.14.3" } zng-view-api = { path = "../zng-view-api", version = "0.11.2" } -zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.3.2" } +zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.3.3" } diff --git a/crates/zng-wgt-inspector/Cargo.toml b/crates/zng-wgt-inspector/Cargo.toml index 6fb28908d..2f10877f9 100644 --- a/crates/zng-wgt-inspector/Cargo.toml +++ b/crates/zng-wgt-inspector/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-inspector" -version = "0.3.3" +version = "0.3.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -23,37 +23,37 @@ live = [] crash_handler = ["zng-app/crash_handler", "dep:open"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-app = { path = "../zng-app", version = "0.14.3" } zng-env = { path = "../zng-env", version = "0.3.8" } -zng-ext-input = { path = "../zng-ext-input", version = "0.6.2" } -zng-ext-font = { path = "../zng-ext-font", version = "0.5.3" } -zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.3.2" } -zng-ext-image = { path = "../zng-ext-image", version = "0.3.2" } -zng-ext-config = { path = "../zng-ext-config", version = "0.4.2", default-features = false } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.2" } +zng-ext-input = { path = "../zng-ext-input", version = "0.6.3" } +zng-ext-font = { path = "../zng-ext-font", version = "0.5.4" } +zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.3.3" } +zng-ext-image = { path = "../zng-ext-image", version = "0.3.3" } +zng-ext-config = { path = "../zng-ext-config", version = "0.4.3", default-features = false } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.3" } zng-view-api = { path = "../zng-view-api", version = "0.11.2" } -zng-wgt-dialog = { path = "../zng-wgt-dialog", version = "0.2.3" } -zng-ext-window = { path = "../zng-ext-window", version = "0.4.2" } -zng-wgt-window = { path = "../zng-wgt-window", version = "0.7.3" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.3" } -zng-wgt-toggle = { path = "../zng-wgt-toggle", version = "0.4.3" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.2" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.2" } -zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.5.3" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } -zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.5.3" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.2" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.2" } -zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.5.2" } -zng-wgt-menu = { path = "../zng-wgt-menu", version = "0.4.3" } -zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.4.2" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.2" } -zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.4.3" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.2" } -zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.4.3" } -zng-wgt-ansi-text = { path = "../zng-wgt-ansi-text", version = "0.4.3" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.2" } +zng-wgt-dialog = { path = "../zng-wgt-dialog", version = "0.2.4" } +zng-ext-window = { path = "../zng-ext-window", version = "0.4.3" } +zng-wgt-window = { path = "../zng-wgt-window", version = "0.7.4" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.4" } +zng-wgt-toggle = { path = "../zng-wgt-toggle", version = "0.4.4" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.3" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.3" } +zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.5.4" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.4" } +zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.5.4" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.3" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.3" } +zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.5.3" } +zng-wgt-menu = { path = "../zng-wgt-menu", version = "0.4.4" } +zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.4.3" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.3" } +zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.4.4" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.3" } +zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.4.4" } +zng-wgt-ansi-text = { path = "../zng-wgt-ansi-text", version = "0.4.4" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.3" } zng-layout = { path = "../zng-layout", version = "0.2.33" } zng-var = { path = "../zng-var", version = "0.5.12" } zng-color = { path = "../zng-color", version = "0.4.2" } diff --git a/crates/zng-wgt-layer/Cargo.toml b/crates/zng-wgt-layer/Cargo.toml index 88a1facd0..4942b5863 100644 --- a/crates/zng-wgt-layer/Cargo.toml +++ b/crates/zng-wgt-layer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-layer" -version = "0.4.2" +version = "0.4.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,16 +12,16 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.2" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.2" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.2" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.2" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.2" } -zng-ext-window = { path = "../zng-ext-window", version = "0.4.2" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.3" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.3" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.3" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.3" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.3" } +zng-ext-window = { path = "../zng-ext-window", version = "0.4.3" } +zng-app = { path = "../zng-app", version = "0.14.3" } zng-var = { path = "../zng-var", version = "0.5.12" } -zng-ext-input = { path = "../zng-ext-input", version = "0.6.2" } +zng-ext-input = { path = "../zng-ext-input", version = "0.6.3" } zng-view-api = { path = "../zng-view-api", version = "0.11.2", default-features = false } parking_lot = "0.12" diff --git a/crates/zng-wgt-markdown/Cargo.toml b/crates/zng-wgt-markdown/Cargo.toml index 5b70de33d..e8c54a27d 100644 --- a/crates/zng-wgt-markdown/Cargo.toml +++ b/crates/zng-wgt-markdown/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-markdown" -version = "0.4.3" +version = "0.4.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,30 +12,30 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } -zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.5.2" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.2" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.3" } -zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.4.2" } -zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.4.3" } -zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.4.3" } -zng-wgt-grid = { path = "../zng-wgt-grid", version = "0.4.2" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.2" } -zng-wgt-ansi-text = { path = "../zng-wgt-ansi-text", version = "0.4.3" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.2" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.2" } -zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.3.2" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.2" } -zng-wgt-image = { path = "../zng-wgt-image", version = "0.4.3" } -zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.5.3" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.2" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.2" } -zng-ext-input = { path = "../zng-ext-input", version = "0.6.2" } -zng-ext-image = { path = "../zng-ext-image", version = "0.3.2" } -zng-ext-font = { path = "../zng-ext-font", version = "0.5.3" } -zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.3.2" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.4" } +zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.5.3" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.3" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.4" } +zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.4.3" } +zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.4.4" } +zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.4.4" } +zng-wgt-grid = { path = "../zng-wgt-grid", version = "0.4.3" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.3" } +zng-wgt-ansi-text = { path = "../zng-wgt-ansi-text", version = "0.4.4" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.3" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.3" } +zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.3.3" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.3" } +zng-wgt-image = { path = "../zng-wgt-image", version = "0.4.4" } +zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.5.4" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.3" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.3" } +zng-ext-input = { path = "../zng-ext-input", version = "0.6.3" } +zng-ext-image = { path = "../zng-ext-image", version = "0.3.3" } +zng-ext-font = { path = "../zng-ext-font", version = "0.5.4" } +zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.3.3" } +zng-app = { path = "../zng-app", version = "0.14.3" } pulldown-cmark = "0.12" http = "1.1" diff --git a/crates/zng-wgt-material-icons/Cargo.toml b/crates/zng-wgt-material-icons/Cargo.toml index 9a79e421a..d5281b9af 100644 --- a/crates/zng-wgt-material-icons/Cargo.toml +++ b/crates/zng-wgt-material-icons/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-material-icons" -version = "0.4.3" +version = "0.4.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -30,11 +30,11 @@ rounded = [] sharp = [] [dependencies] -zng-app = { path = "../zng-app", version = "0.14.2" } -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } +zng-app = { path = "../zng-app", version = "0.14.3" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } zng-var = { path = "../zng-var", version = "0.5.12" } -zng-ext-font = { path = "../zng-ext-font", version = "0.5.3" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } +zng-ext-font = { path = "../zng-ext-font", version = "0.5.4" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.4" } phf = { version = "0.11", default-features = false } tracing = "0.1" diff --git a/crates/zng-wgt-menu/Cargo.toml b/crates/zng-wgt-menu/Cargo.toml index f99daf951..e497f436e 100644 --- a/crates/zng-wgt-menu/Cargo.toml +++ b/crates/zng-wgt-menu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-menu" -version = "0.4.3" +version = "0.4.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,26 +12,26 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-app = { path = "../zng-app", version = "0.14.3" } zng-layout = { path = "../zng-layout", version = "0.2.33" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.2" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.2" } -zng-wgt-panel = { path = "../zng-wgt-panel", version = "0.4.3" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.2" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.3" } -zng-ext-input = { path = "../zng-ext-input", version = "0.6.2" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.2" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } -zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.5.2" } -zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.4.2" } -zng-ext-font = { path = "../zng-ext-font", version = "0.5.3" } -zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.4.3" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.2" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.2" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.2" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.2" } -zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.4.3" } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.2" } -zng-wgt-toggle = { path = "../zng-wgt-toggle", version = "0.4.3" } -zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.5.3" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.3" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.3" } +zng-wgt-panel = { path = "../zng-wgt-panel", version = "0.4.4" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.3" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.4" } +zng-ext-input = { path = "../zng-ext-input", version = "0.6.3" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.3" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.4" } +zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.5.3" } +zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.4.3" } +zng-ext-font = { path = "../zng-ext-font", version = "0.5.4" } +zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.4.4" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.3" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.3" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.3" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.3" } +zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.4.4" } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.3" } +zng-wgt-toggle = { path = "../zng-wgt-toggle", version = "0.4.4" } +zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.5.4" } diff --git a/crates/zng-wgt-panel/Cargo.toml b/crates/zng-wgt-panel/Cargo.toml index 0e2d13ab3..88ecf2a73 100644 --- a/crates/zng-wgt-panel/Cargo.toml +++ b/crates/zng-wgt-panel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-panel" -version = "0.4.3" +version = "0.4.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,6 +12,6 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.4.3" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.4.4" } +zng-app = { path = "../zng-app", version = "0.14.3" } diff --git a/crates/zng-wgt-progress/Cargo.toml b/crates/zng-wgt-progress/Cargo.toml index 146ad320b..90807de65 100644 --- a/crates/zng-wgt-progress/Cargo.toml +++ b/crates/zng-wgt-progress/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-progress" -version = "0.2.3" +version = "0.2.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,16 +12,16 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } -zng-ext-font = { path = "../zng-ext-font", version = "0.5.3" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.4" } +zng-ext-font = { path = "../zng-ext-font", version = "0.5.4" } zng-layout = { path = "../zng-layout", version = "0.2.33" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-app = { path = "../zng-app", version = "0.14.3" } zng-task = { path = "../zng-task", version = "0.4.14" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.2" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.2" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.2" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.2" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.3" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.3" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.3" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.3" } zng-var = { path = "../zng-var", version = "0.5.12" } tracing = "0.1" diff --git a/crates/zng-wgt-rule-line/Cargo.toml b/crates/zng-wgt-rule-line/Cargo.toml index ad1159256..203ca8d07 100644 --- a/crates/zng-wgt-rule-line/Cargo.toml +++ b/crates/zng-wgt-rule-line/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-rule-line" -version = "0.4.3" +version = "0.4.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,6 +12,6 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.2" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.3" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.4" } diff --git a/crates/zng-wgt-scroll/Cargo.toml b/crates/zng-wgt-scroll/Cargo.toml index 04ba5da7d..5185f62a8 100644 --- a/crates/zng-wgt-scroll/Cargo.toml +++ b/crates/zng-wgt-scroll/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-scroll" -version = "0.5.2" +version = "0.5.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -21,16 +21,16 @@ debug_default = [] dyn_closure = [] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.2" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.2" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.2" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.2" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.2" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.2" } -zng-app = { path = "../zng-app", version = "0.14.2" } -zng-ext-window = { path = "../zng-ext-window", version = "0.4.2" } -zng-ext-input = { path = "../zng-ext-input", version = "0.6.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.3" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.3" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.3" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.3" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.3" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.3" } +zng-app = { path = "../zng-app", version = "0.14.3" } +zng-ext-window = { path = "../zng-ext-window", version = "0.4.3" } +zng-ext-input = { path = "../zng-ext-input", version = "0.6.3" } zng-var = { path = "../zng-var", version = "0.5.12" } zng-color = { path = "../zng-color", version = "0.4.2" } diff --git a/crates/zng-wgt-settings/Cargo.toml b/crates/zng-wgt-settings/Cargo.toml index 3597376f1..61299bf77 100644 --- a/crates/zng-wgt-settings/Cargo.toml +++ b/crates/zng-wgt-settings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-settings" -version = "0.2.3" +version = "0.2.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,31 +12,31 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-app = { path = "../zng-app", version = "0.14.2" } -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } +zng-app = { path = "../zng-app", version = "0.14.3" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } zng-var = { path = "../zng-var", version = "0.5.12" } -zng-ext-config = { path = "../zng-ext-config", version = "0.4.2" } -zng-ext-font = { path = "../zng-ext-font", version = "0.5.3" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } -zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.4.2" } -zng-wgt-toggle = { path = "../zng-wgt-toggle", version = "0.4.3" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.2" } -zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.5.2" } -zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.5.3" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.3" } -zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.4.3" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.2" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.2" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.2" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.2" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.2" } -zng-wgt-markdown = { path = "../zng-wgt-markdown", version = "0.4.3" } -zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.5.3" } -zng-ext-input = { path = "../zng-ext-input", version = "0.6.2" } -zng-ext-window = { path = "../zng-ext-window", version = "0.4.2" } -zng-wgt-window = { path = "../zng-wgt-window", version = "0.7.3" } +zng-ext-config = { path = "../zng-ext-config", version = "0.4.3" } +zng-ext-font = { path = "../zng-ext-font", version = "0.5.4" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.4" } +zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.4.3" } +zng-wgt-toggle = { path = "../zng-wgt-toggle", version = "0.4.4" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.3" } +zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.5.3" } +zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.5.4" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.4" } +zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.4.4" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.3" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.3" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.3" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.3" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.3" } +zng-wgt-markdown = { path = "../zng-wgt-markdown", version = "0.4.4" } +zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.5.4" } +zng-ext-input = { path = "../zng-ext-input", version = "0.6.3" } +zng-ext-window = { path = "../zng-ext-window", version = "0.4.3" } +zng-wgt-window = { path = "../zng-wgt-window", version = "0.7.4" } zng-env = { path = "../zng-env", version = "0.3.8" } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.2" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.2" } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.3" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.3" } serde = { version = "1.0", features = ["derive"] } diff --git a/crates/zng-wgt-size-offset/Cargo.toml b/crates/zng-wgt-size-offset/Cargo.toml index 0437964e3..739fd8b01 100644 --- a/crates/zng-wgt-size-offset/Cargo.toml +++ b/crates/zng-wgt-size-offset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-size-offset" -version = "0.3.2" +version = "0.3.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,7 +12,7 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } euclid = "0.22" serde = { version = "1.0", features = ["derive"] } diff --git a/crates/zng-wgt-slider/Cargo.toml b/crates/zng-wgt-slider/Cargo.toml index 85679e5ac..61e6007c6 100644 --- a/crates/zng-wgt-slider/Cargo.toml +++ b/crates/zng-wgt-slider/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-slider" -version = "0.2.2" +version = "0.2.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -13,14 +13,14 @@ keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] zng-var = { path = "../zng-var", version = "0.5.12" } -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.2" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.2" } -zng-ext-input = { path = "../zng-ext-input", version = "0.6.2" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.2" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.2" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.2" } -zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.3.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.3" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.3" } +zng-ext-input = { path = "../zng-ext-input", version = "0.6.3" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.3" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.3" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.3" } +zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.3.3" } parking_lot = "0.12" tracing = "0.1" diff --git a/crates/zng-wgt-stack/Cargo.toml b/crates/zng-wgt-stack/Cargo.toml index 684134c4d..72ef62983 100644 --- a/crates/zng-wgt-stack/Cargo.toml +++ b/crates/zng-wgt-stack/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-stack" -version = "0.4.2" +version = "0.4.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -21,9 +21,9 @@ debug_default = [] dyn_closure = [] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.2" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.3" } +zng-app = { path = "../zng-app", version = "0.14.3" } zng-layout = { path = "../zng-layout", version = "0.2.33" } zng-var = { path = "../zng-var", version = "0.5.12" } diff --git a/crates/zng-wgt-style/Cargo.toml b/crates/zng-wgt-style/Cargo.toml index 83b838fee..8cba06d34 100644 --- a/crates/zng-wgt-style/Cargo.toml +++ b/crates/zng-wgt-style/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-style" -version = "0.4.2" +version = "0.4.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -16,7 +16,7 @@ keywords = ["gui", "ui", "user-interface", "zng"] trace_widget = ["zng-app/trace_widget"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-app = { path = "../zng-app", version = "0.14.3" } tracing = "0.1" diff --git a/crates/zng-wgt-text-input/Cargo.toml b/crates/zng-wgt-text-input/Cargo.toml index 85bd35f5f..43dcbeb95 100644 --- a/crates/zng-wgt-text-input/Cargo.toml +++ b/crates/zng-wgt-text-input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-text-input" -version = "0.5.3" +version = "0.5.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,22 +12,22 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.2" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.2" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.2" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.2" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.2" } -zng-wgt-undo = { path = "../zng-wgt-undo", version = "0.3.2" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.2" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.2" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.3" } -zng-wgt-menu = { path = "../zng-wgt-menu", version = "0.4.3" } -zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.4.3" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.2" } -zng-wgt-data = { path = "../zng-wgt-data", version = "0.3.2" } -zng-app = { path = "../zng-app", version = "0.14.2" } -zng-ext-input = { path = "../zng-ext-input", version = "0.6.2" } -zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.3.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.4" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.3" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.3" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.3" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.3" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.3" } +zng-wgt-undo = { path = "../zng-wgt-undo", version = "0.3.3" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.3" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.3" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.4" } +zng-wgt-menu = { path = "../zng-wgt-menu", version = "0.4.4" } +zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.4.4" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.3" } +zng-wgt-data = { path = "../zng-wgt-data", version = "0.3.3" } +zng-app = { path = "../zng-app", version = "0.14.3" } +zng-ext-input = { path = "../zng-ext-input", version = "0.6.3" } +zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.3.3" } zng-var = { path = "../zng-var", version = "0.5.12" } diff --git a/crates/zng-wgt-text/Cargo.toml b/crates/zng-wgt-text/Cargo.toml index b16c448ab..24865a5f6 100644 --- a/crates/zng-wgt-text/Cargo.toml +++ b/crates/zng-wgt-text/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-text" -version = "0.5.3" +version = "0.5.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,23 +12,23 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } zng-app-context = { path = "../zng-app-context", version = "0.5.13" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-app = { path = "../zng-app", version = "0.14.3" } zng-color = { path = "../zng-color", version = "0.4.2" } zng-layout = { path = "../zng-layout", version = "0.2.33" } -zng-wgt-data = { path = "../zng-wgt-data", version = "0.3.2" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.2" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.2" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.2" } -zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.5.2" } -zng-ext-undo = { path = "../zng-ext-undo", version = "0.3.2" } -zng-ext-font = { path = "../zng-ext-font", version = "0.5.3" } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.2" } +zng-wgt-data = { path = "../zng-wgt-data", version = "0.3.3" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.3" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.3" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.3" } +zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.5.3" } +zng-ext-undo = { path = "../zng-ext-undo", version = "0.3.3" } +zng-ext-font = { path = "../zng-ext-font", version = "0.5.4" } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.3" } zng-view-api = { path = "../zng-view-api", version = "0.11.2" } -zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.3.2" } -zng-ext-input = { path = "../zng-ext-input", version = "0.6.2" } -zng-ext-window = { path = "../zng-ext-window", version = "0.4.2" } +zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.3.3" } +zng-ext-input = { path = "../zng-ext-input", version = "0.6.3" } +zng-ext-window = { path = "../zng-ext-window", version = "0.4.3" } atomic = "0.6" tracing = "0.1" diff --git a/crates/zng-wgt-toggle/Cargo.toml b/crates/zng-wgt-toggle/Cargo.toml index 2a72dad4f..49d799913 100644 --- a/crates/zng-wgt-toggle/Cargo.toml +++ b/crates/zng-wgt-toggle/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-toggle" -version = "0.4.3" +version = "0.4.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,22 +12,22 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.3" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.2" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.2" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.2" } -zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.5.2" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.2" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.2" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.2" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.2" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.2" } -zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.3.2" } -zng-ext-input = { path = "../zng-ext-input", version = "0.6.2" } -zng-ext-font = { path = "../zng-ext-font", version = "0.5.3" } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.4" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.3" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.3" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.3" } +zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.5.3" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.3" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.3" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.3" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.4" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.3" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.3" } +zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.3.3" } +zng-ext-input = { path = "../zng-ext-input", version = "0.6.3" } +zng-ext-font = { path = "../zng-ext-font", version = "0.5.4" } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.3" } zng-var = { path = "../zng-var", version = "0.5.12" } parking_lot = "0.12" diff --git a/crates/zng-wgt-tooltip/Cargo.toml b/crates/zng-wgt-tooltip/Cargo.toml index 5cfaea839..a0a765d9e 100644 --- a/crates/zng-wgt-tooltip/Cargo.toml +++ b/crates/zng-wgt-tooltip/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-tooltip" -version = "0.5.3" +version = "0.5.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,12 +12,12 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.2" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.2" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.2" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.2" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.2" } -zng-app = { path = "../zng-app", version = "0.14.2" } -zng-ext-input = { path = "../zng-ext-input", version = "0.6.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.3" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.3" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.4" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.3" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.3" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.3" } +zng-app = { path = "../zng-app", version = "0.14.3" } +zng-ext-input = { path = "../zng-ext-input", version = "0.6.3" } diff --git a/crates/zng-wgt-transform/Cargo.toml b/crates/zng-wgt-transform/Cargo.toml index 757c0aa78..89150c74e 100644 --- a/crates/zng-wgt-transform/Cargo.toml +++ b/crates/zng-wgt-transform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-transform" -version = "0.3.2" +version = "0.3.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,6 +12,6 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } euclid = "0.22" diff --git a/crates/zng-wgt-undo-history/Cargo.toml b/crates/zng-wgt-undo-history/Cargo.toml index e8704eb61..efa74236b 100644 --- a/crates/zng-wgt-undo-history/Cargo.toml +++ b/crates/zng-wgt-undo-history/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-undo-history" -version = "0.4.3" +version = "0.4.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,16 +12,16 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.3" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.2" } -zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.5.2" } -zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.4.2" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.2" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.2" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.2" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.2" } -zng-ext-undo = { path = "../zng-ext-undo", version = "0.3.2" } -zng-ext-input = { path = "../zng-ext-input", version = "0.6.2" } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.4" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.4" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.3" } +zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.5.3" } +zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.4.3" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.3" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.3" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.3" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.3" } +zng-ext-undo = { path = "../zng-ext-undo", version = "0.3.3" } +zng-ext-input = { path = "../zng-ext-input", version = "0.6.3" } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.3" } diff --git a/crates/zng-wgt-undo/Cargo.toml b/crates/zng-wgt-undo/Cargo.toml index 4fe2209b2..39b308db2 100644 --- a/crates/zng-wgt-undo/Cargo.toml +++ b/crates/zng-wgt-undo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-undo" -version = "0.3.2" +version = "0.3.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,5 +12,5 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-ext-undo = { path = "../zng-ext-undo", version = "0.3.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-ext-undo = { path = "../zng-ext-undo", version = "0.3.3" } diff --git a/crates/zng-wgt-webrender-debug/Cargo.toml b/crates/zng-wgt-webrender-debug/Cargo.toml index 1682391ac..f3debb128 100644 --- a/crates/zng-wgt-webrender-debug/Cargo.toml +++ b/crates/zng-wgt-webrender-debug/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-webrender-debug" -version = "0.3.2" +version = "0.3.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,9 +12,9 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-app = { path = "../zng-app", version = "0.14.2" } -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-ext-window = { path = "../zng-ext-window", version = "0.4.2" } +zng-app = { path = "../zng-app", version = "0.14.3" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-ext-window = { path = "../zng-ext-window", version = "0.4.3" } zng-view-api = { path = "../zng-view-api", version = "0.11.2" } webrender-api = { package = "zng-webrender-api", version = "0.64.0" } diff --git a/crates/zng-wgt-window/Cargo.toml b/crates/zng-wgt-window/Cargo.toml index e5c31798d..b1f4ed4db 100644 --- a/crates/zng-wgt-window/Cargo.toml +++ b/crates/zng-wgt-window/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-window" -version = "0.7.3" +version = "0.7.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -19,24 +19,24 @@ debug_default = ["zng-wgt/debug_default"] dyn_closure = ["zng-wgt/dyn_closure"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.2" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.2" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } -zng-app = { path = "../zng-app", version = "0.14.2" } -zng-ext-window = { path = "../zng-ext-window", version = "0.4.2" } -zng-ext-config = { path = "../zng-ext-config", version = "0.4.2", default-features = false } -zng-ext-input = { path = "../zng-ext-input", version = "0.6.2" } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.2" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.3" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.3" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.4" } +zng-app = { path = "../zng-app", version = "0.14.3" } +zng-ext-window = { path = "../zng-ext-window", version = "0.4.3" } +zng-ext-config = { path = "../zng-ext-config", version = "0.4.3", default-features = false } +zng-ext-input = { path = "../zng-ext-input", version = "0.6.3" } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.3" } zng-var = { path = "../zng-var", version = "0.5.12" } zng-color = { path = "../zng-color", version = "0.4.2" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.2" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.2" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.3" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.3" } # used only by fallback_chrome -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.2" } -zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.4.2" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.3" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.3" } +zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.4.3" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.4" } serde = { version = "1.0", features = ["derive"] } paste = "1.0" diff --git a/crates/zng-wgt-wrap/Cargo.toml b/crates/zng-wgt-wrap/Cargo.toml index bcde2afcc..af7ea1f46 100644 --- a/crates/zng-wgt-wrap/Cargo.toml +++ b/crates/zng-wgt-wrap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-wrap" -version = "0.4.3" +version = "0.4.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,10 +12,10 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } -zng-ext-font = { path = "../zng-ext-font", version = "0.5.3" } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.4" } +zng-ext-font = { path = "../zng-ext-font", version = "0.5.4" } zng-layout = { path = "../zng-layout", version = "0.2.33" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-app = { path = "../zng-app", version = "0.14.3" } tracing = "0.1" diff --git a/crates/zng-wgt/Cargo.toml b/crates/zng-wgt/Cargo.toml index 6ba53635e..e394ab524 100644 --- a/crates/zng-wgt/Cargo.toml +++ b/crates/zng-wgt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt" -version = "0.6.2" +version = "0.6.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -27,7 +27,7 @@ http = ["zng-task/http"] [dependencies] zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } -zng-app = { path = "../zng-app", version = "0.14.2" } +zng-app = { path = "../zng-app", version = "0.14.3" } zng-color = { path = "../zng-color", version = "0.4.2" } zng-app-context = { path = "../zng-app-context", version = "0.5.13" } zng-var = { path = "../zng-var", version = "0.5.12" } diff --git a/crates/zng/Cargo.toml b/crates/zng/Cargo.toml index b0f826650..78d1625b2 100644 --- a/crates/zng/Cargo.toml +++ b/crates/zng/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng" -version = "0.13.3" +version = "0.13.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -209,59 +209,59 @@ zng-env = { path = "../zng-env", version = "0.3.8" } zng-unique-id = { path = "../zng-unique-id", version = "0.4.8" } # app -zng-app = { path = "../zng-app", version = "0.14.2", default-features = false } -zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.3.2" } -zng-ext-config = { path = "../zng-ext-config", version = "0.4.2", default-features = false } -zng-ext-font = { path = "../zng-ext-font", version = "0.5.3" } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.2", features = ["tar"] } -zng-ext-image = { path = "../zng-ext-image", version = "0.3.2" } -zng-ext-svg = { path = "../zng-ext-svg", version = "0.2.2", optional = true } -zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.3.2" } -zng-ext-window = { path = "../zng-ext-window", version = "0.4.2" } -zng-ext-input = { path = "../zng-ext-input", version = "0.6.2" } -zng-ext-undo = { path = "../zng-ext-undo", version = "0.3.2" } -zng-ext-hot-reload = { path = "../zng-ext-hot-reload", version = "0.2.2", optional = true } +zng-app = { path = "../zng-app", version = "0.14.3", default-features = false } +zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.3.3" } +zng-ext-config = { path = "../zng-ext-config", version = "0.4.3", default-features = false } +zng-ext-font = { path = "../zng-ext-font", version = "0.5.4" } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.3", features = ["tar"] } +zng-ext-image = { path = "../zng-ext-image", version = "0.3.3" } +zng-ext-svg = { path = "../zng-ext-svg", version = "0.2.3", optional = true } +zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.3.3" } +zng-ext-window = { path = "../zng-ext-window", version = "0.4.3" } +zng-ext-input = { path = "../zng-ext-input", version = "0.6.3" } +zng-ext-undo = { path = "../zng-ext-undo", version = "0.3.3" } +zng-ext-hot-reload = { path = "../zng-ext-hot-reload", version = "0.2.3", optional = true } # widgets -zng-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.2" } -zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.3.2" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.2" } -zng-wgt-data = { path = "../zng-wgt-data", version = "0.3.2" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.2" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.2" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.2" } -zng-wgt-undo = { path = "../zng-wgt-undo", version = "0.3.2" } -zng-wgt-data-view = { path = "../zng-wgt-data-view", version = "0.4.2" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.2" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.2" } -zng-wgt-checkerboard = { path = "../zng-wgt-checkerboard", version = "0.4.2" } -zng-wgt-window = { path = "../zng-wgt-window", version = "0.7.3" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.2" } -zng-wgt-undo-history = { path = "../zng-wgt-undo-history", version = "0.4.3" } -zng-wgt-image = { path = "../zng-wgt-image", version = "0.4.3" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } -zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.5.3" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.3" } -zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.4.2" } -zng-wgt-panel = { path = "../zng-wgt-panel", version = "0.4.3" } -zng-wgt-grid = { path = "../zng-wgt-grid", version = "0.4.2" } -zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.4.3" } -zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.4.3" } -zng-wgt-toggle = { path = "../zng-wgt-toggle", version = "0.4.3" } -zng-wgt-menu = { path = "../zng-wgt-menu", version = "0.4.3" } -zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.5.2" } -zng-wgt-ansi-text = { path = "../zng-wgt-ansi-text", version = "0.4.3" } -zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.5.3" } -zng-wgt-markdown = { path = "../zng-wgt-markdown", version = "0.4.3" } -zng-wgt-inspector = { path = "../zng-wgt-inspector", version = "0.3.3" } -zng-wgt-settings = { path = "../zng-wgt-settings", version = "0.2.3" } -zng-wgt-dialog = { path = "../zng-wgt-dialog", version = "0.2.3" } -zng-wgt-progress = { path = "../zng-wgt-progress", version = "0.2.3" } -zng-wgt-slider = { path = "../zng-wgt-slider", version = "0.2.2" } - -zng-wgt-material-icons = { path = "../zng-wgt-material-icons", version = "0.4.3", default-features = false, optional = true } -zng-ext-single-instance = { path = "../zng-ext-single-instance", version = "0.4.2", optional = true } +zng-wgt = { path = "../zng-wgt", version = "0.6.3" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.3.3" } +zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.3.3" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.3.3" } +zng-wgt-data = { path = "../zng-wgt-data", version = "0.3.3" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.3.3" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.3.3" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.5.3" } +zng-wgt-undo = { path = "../zng-wgt-undo", version = "0.3.3" } +zng-wgt-data-view = { path = "../zng-wgt-data-view", version = "0.4.3" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.3.3" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.4.3" } +zng-wgt-checkerboard = { path = "../zng-wgt-checkerboard", version = "0.4.3" } +zng-wgt-window = { path = "../zng-wgt-window", version = "0.7.4" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.3" } +zng-wgt-undo-history = { path = "../zng-wgt-undo-history", version = "0.4.4" } +zng-wgt-image = { path = "../zng-wgt-image", version = "0.4.4" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.4" } +zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.5.4" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.4" } +zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.4.3" } +zng-wgt-panel = { path = "../zng-wgt-panel", version = "0.4.4" } +zng-wgt-grid = { path = "../zng-wgt-grid", version = "0.4.3" } +zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.4.4" } +zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.4.4" } +zng-wgt-toggle = { path = "../zng-wgt-toggle", version = "0.4.4" } +zng-wgt-menu = { path = "../zng-wgt-menu", version = "0.4.4" } +zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.5.3" } +zng-wgt-ansi-text = { path = "../zng-wgt-ansi-text", version = "0.4.4" } +zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.5.4" } +zng-wgt-markdown = { path = "../zng-wgt-markdown", version = "0.4.4" } +zng-wgt-inspector = { path = "../zng-wgt-inspector", version = "0.3.4" } +zng-wgt-settings = { path = "../zng-wgt-settings", version = "0.2.4" } +zng-wgt-dialog = { path = "../zng-wgt-dialog", version = "0.2.4" } +zng-wgt-progress = { path = "../zng-wgt-progress", version = "0.2.4" } +zng-wgt-slider = { path = "../zng-wgt-slider", version = "0.2.3" } + +zng-wgt-material-icons = { path = "../zng-wgt-material-icons", version = "0.4.4", default-features = false, optional = true } +zng-ext-single-instance = { path = "../zng-ext-single-instance", version = "0.4.3", optional = true } tracing = "0.1" @@ -272,7 +272,7 @@ zng-view-api = { path = "../zng-view-api", version = "0.11.2", default-features zng-view = { path = "../zng-view", version = "0.7.2", default-features = false, optional = true } [target.'cfg(not(any(target_arch = "wasm32", target_os = "android", target_os = "ios")))'.dependencies] -zng-view-prebuilt = { path = "../zng-view-prebuilt", version = "0.13.3", optional = true } +zng-view-prebuilt = { path = "../zng-view-prebuilt", version = "0.13.4", optional = true } [build-dependencies] cfg_aliases = "0.2" diff --git a/crates/zng/README.md b/crates/zng/README.md index f1f6806d9..e3bb028bb 100644 --- a/crates/zng/README.md +++ b/crates/zng/README.md @@ -10,7 +10,7 @@ First add `zng` to your `Cargo.toml`, or call `cargo add zng -F view_prebuilt`: ```toml [dependencies] -zng = { version = "0.13.3", features = ["view_prebuilt"] } +zng = { version = "0.13.4", features = ["view_prebuilt"] } ``` Then create your first window: diff --git a/crates/zng/src/app.rs b/crates/zng/src/app.rs index 49dbb8cb8..c89187769 100644 --- a/crates/zng/src/app.rs +++ b/crates/zng/src/app.rs @@ -23,7 +23,7 @@ //! //! ```toml //! [dependencies] -//! zng = { version = "0.13.3", features = ["view_prebuilt"] } +//! zng = { version = "0.13.4", features = ["view_prebuilt"] } //! ``` //! //! ```no_run diff --git a/crates/zng/src/icon.rs b/crates/zng/src/icon.rs index 2c751782b..c99d1b001 100644 --- a/crates/zng/src/icon.rs +++ b/crates/zng/src/icon.rs @@ -80,7 +80,7 @@ pub use zng_wgt_text::icon::{ico_color, ico_size, GlyphIcon, GlyphSource, Icon}; /// [Material Design Icons]: https://github.com/google/material-design-icons /// /// ```toml -/// zng = { version = "0.13.3", features = ["material_icons"] } +/// zng = { version = "0.13.4", features = ["material_icons"] } /// ``` /// /// Handlers are registered for [`ICONS`] that provides the icons, the raw codepoints and glyph icon metadata is available in each font module. diff --git a/crates/zng/src/lib.rs b/crates/zng/src/lib.rs index 3d4d2d0c7..833404cfc 100644 --- a/crates/zng/src/lib.rs +++ b/crates/zng/src/lib.rs @@ -17,7 +17,7 @@ //! //! ```toml //! [dependencies] -//! zng = { version = "0.13.3", features = ["view_prebuilt"] } +//! zng = { version = "0.13.4", features = ["view_prebuilt"] } //! ``` //! //! Then create your first app: