From 3996bde98800fe6f7c894a1210e6fe3584bbec8d Mon Sep 17 00:00:00 2001 From: Samuel Date: Tue, 24 Dec 2024 23:31:29 -0300 Subject: [PATCH] Release 0.13.3 (#574) --- CHANGELOG.md | 3 ++ README.md | 2 +- crates/zng-ext-font/Cargo.toml | 2 +- crates/zng-view-prebuilt/Cargo.toml | 2 +- crates/zng-view/src/lib.rs | 2 +- crates/zng-wgt-ansi-text/Cargo.toml | 6 ++-- crates/zng-wgt-button/Cargo.toml | 8 ++--- crates/zng-wgt-dialog/Cargo.toml | 12 +++---- crates/zng-wgt-image/Cargo.toml | 4 +-- crates/zng-wgt-inspector/Cargo.toml | 26 +++++++------- crates/zng-wgt-markdown/Cargo.toml | 18 +++++----- crates/zng-wgt-material-icons/Cargo.toml | 6 ++-- crates/zng-wgt-menu/Cargo.toml | 18 +++++----- crates/zng-wgt-panel/Cargo.toml | 4 +-- crates/zng-wgt-progress/Cargo.toml | 6 ++-- crates/zng-wgt-rule-line/Cargo.toml | 4 +-- crates/zng-wgt-settings/Cargo.toml | 20 +++++------ crates/zng-wgt-text-input/Cargo.toml | 10 +++--- crates/zng-wgt-text/Cargo.toml | 4 +-- crates/zng-wgt-toggle/Cargo.toml | 8 ++--- crates/zng-wgt-tooltip/Cargo.toml | 4 +-- crates/zng-wgt-undo-history/Cargo.toml | 6 ++-- crates/zng-wgt-window/Cargo.toml | 6 ++-- crates/zng-wgt-wrap/Cargo.toml | 6 ++-- crates/zng/Cargo.toml | 44 ++++++++++++------------ crates/zng/README.md | 2 +- crates/zng/src/app.rs | 2 +- crates/zng/src/icon.rs | 2 +- crates/zng/src/lib.rs | 2 +- 29 files changed, 121 insertions(+), 118 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3db5e2c82..e32eb9460 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Unreleased + +# 0.13.3 + * Fix hang rendering some text with image emojis. # 0.13.2 diff --git a/README.md b/README.md index 966f0ec94..063d5c0aa 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.2", features = ["view_prebuilt"] } +zng = { version = "0.13.3", features = ["view_prebuilt"] } ``` Then create your first window: diff --git a/crates/zng-ext-font/Cargo.toml b/crates/zng-ext-font/Cargo.toml index b456eeff6..df99b2f6d 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.2" +version = "0.5.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" diff --git a/crates/zng-view-prebuilt/Cargo.toml b/crates/zng-view-prebuilt/Cargo.toml index 25facd95a..5223f8b24 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.2" +version = "0.13.3" 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 ec9cfc687..650896a4f 100644 --- a/crates/zng-view/src/lib.rs +++ b/crates/zng-view/src/lib.rs @@ -11,7 +11,7 @@ //! //! ```toml //! [dependencies] -//! zng = "0.13.2" +//! zng = "0.13.3" //! zng-view = "0.7.2" //! ``` //! diff --git a/crates/zng-wgt-ansi-text/Cargo.toml b/crates/zng-wgt-ansi-text/Cargo.toml index dfc895df3..1d96bb406 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.2" +version = "0.4.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-wgt = { path = "../zng-wgt", version = "0.6.2" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.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.2" } +zng-ext-font = { path = "../zng-ext-font", version = "0.5.3" } serde = { version = "1.0", features = ["derive"] } diff --git a/crates/zng-wgt-button/Cargo.toml b/crates/zng-wgt-button/Cargo.toml index 2842cee4c..a32bb6fe6 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.2" +version = "0.5.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -14,7 +14,7 @@ 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.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" } @@ -22,5 +22,5 @@ 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.2" } -zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.5.2" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } +zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.5.3" } diff --git a/crates/zng-wgt-dialog/Cargo.toml b/crates/zng-wgt-dialog/Cargo.toml index bebd6aa96..135569021 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.2" +version = "0.2.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -22,12 +22,12 @@ zng-ext-window = { path = "../zng-ext-window", version = "0.4.2" } zng-app = { path = "../zng-app", version = "0.14.2" } 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.2" } -zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.5.2" } -zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.4.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.2" } -zng-ext-font = { path = "../zng-ext-font", version = "0.5.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-view-api = { path = "../zng-view-api", version = "0.11.2" } diff --git a/crates/zng-wgt-image/Cargo.toml b/crates/zng-wgt-image/Cargo.toml index bb074a646..9a942e840 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.2" +version = "0.4.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -17,7 +17,7 @@ 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.2" } +zng-wgt-window = { path = "../zng-wgt-window", version = "0.7.3" } zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.4.2" } serde = { version = "1.0", features = ["derive"] } diff --git a/crates/zng-wgt-inspector/Cargo.toml b/crates/zng-wgt-inspector/Cargo.toml index 28626169a..6fb28908d 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.2" +version = "0.3.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -27,32 +27,32 @@ zng-wgt = { path = "../zng-wgt", version = "0.6.2" } zng-app = { path = "../zng-app", version = "0.14.2" } 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.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-view-api = { path = "../zng-view-api", version = "0.11.2" } -zng-wgt-dialog = { path = "../zng-wgt-dialog", version = "0.2.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.2" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.2" } -zng-wgt-toggle = { path = "../zng-wgt-toggle", 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.2" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.2" } -zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.5.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.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.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.2" } -zng-wgt-ansi-text = { path = "../zng-wgt-ansi-text", version = "0.4.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-layout = { path = "../zng-layout", version = "0.2.33" } zng-var = { path = "../zng-var", version = "0.5.12" } diff --git a/crates/zng-wgt-markdown/Cargo.toml b/crates/zng-wgt-markdown/Cargo.toml index 1e24b7b89..5b70de33d 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.2" +version = "0.4.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -13,27 +13,27 @@ 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.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.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.2" } -zng-wgt-rule-line = { path = "../zng-wgt-rule-line", 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.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.2" } -zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.5.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.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" } diff --git a/crates/zng-wgt-material-icons/Cargo.toml b/crates/zng-wgt-material-icons/Cargo.toml index 089301c1f..9a79e421a 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.2" +version = "0.4.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -33,8 +33,8 @@ sharp = [] zng-app = { path = "../zng-app", version = "0.14.2" } zng-wgt = { path = "../zng-wgt", version = "0.6.2" } zng-var = { path = "../zng-var", version = "0.5.12" } -zng-ext-font = { path = "../zng-ext-font", version = "0.5.2" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.2" } +zng-ext-font = { path = "../zng-ext-font", version = "0.5.3" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } 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 e0b103df7..f99daf951 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.2" +version = "0.4.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -17,21 +17,21 @@ zng-app = { path = "../zng-app", version = "0.14.2" } 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.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.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.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.2" } -zng-wgt-wrap = { path = "../zng-wgt-wrap", 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.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.2" } -zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.5.2" } +zng-wgt-toggle = { path = "../zng-wgt-toggle", version = "0.4.3" } +zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.5.3" } diff --git a/crates/zng-wgt-panel/Cargo.toml b/crates/zng-wgt-panel/Cargo.toml index 82da257b5..0e2d13ab3 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.2" +version = "0.4.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -13,5 +13,5 @@ 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.2" } +zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.4.3" } zng-app = { path = "../zng-app", version = "0.14.2" } diff --git a/crates/zng-wgt-progress/Cargo.toml b/crates/zng-wgt-progress/Cargo.toml index d9177b26e..146ad320b 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.2" +version = "0.2.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -13,8 +13,8 @@ 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.2" } -zng-ext-font = { path = "../zng-ext-font", version = "0.5.2" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } +zng-ext-font = { path = "../zng-ext-font", version = "0.5.3" } zng-layout = { path = "../zng-layout", version = "0.2.33" } zng-app = { path = "../zng-app", version = "0.14.2" } zng-task = { path = "../zng-task", version = "0.4.14" } diff --git a/crates/zng-wgt-rule-line/Cargo.toml b/crates/zng-wgt-rule-line/Cargo.toml index f754bae69..ad1159256 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.2" +version = "0.4.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -14,4 +14,4 @@ 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.2" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } diff --git a/crates/zng-wgt-settings/Cargo.toml b/crates/zng-wgt-settings/Cargo.toml index 2eb5f8546..3597376f1 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.2" +version = "0.2.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -16,25 +16,25 @@ zng-app = { path = "../zng-app", version = "0.14.2" } zng-wgt = { path = "../zng-wgt", version = "0.6.2" } 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.2" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.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.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.2" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.2" } -zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.4.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.2" } -zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.5.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.2" } +zng-wgt-window = { path = "../zng-wgt-window", version = "0.7.3" } 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" } diff --git a/crates/zng-wgt-text-input/Cargo.toml b/crates/zng-wgt-text-input/Cargo.toml index 2ef304eab..85bd35f5f 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.2" +version = "0.5.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -13,7 +13,7 @@ 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.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" } @@ -22,9 +22,9 @@ 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.2" } -zng-wgt-menu = { path = "../zng-wgt-menu", version = "0.4.2" } -zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.4.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" } diff --git a/crates/zng-wgt-text/Cargo.toml b/crates/zng-wgt-text/Cargo.toml index 058301af6..b16c448ab 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.2" +version = "0.5.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -23,7 +23,7 @@ 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.2" } +zng-ext-font = { path = "../zng-ext-font", version = "0.5.3" } zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.2" } zng-view-api = { path = "../zng-view-api", version = "0.11.2" } zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.3.2" } diff --git a/crates/zng-wgt-toggle/Cargo.toml b/crates/zng-wgt-toggle/Cargo.toml index 41c6dbf81..2a72dad4f 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.2" +version = "0.4.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -13,7 +13,7 @@ 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.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" } @@ -21,12 +21,12 @@ 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.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.2" } +zng-ext-font = { path = "../zng-ext-font", version = "0.5.3" } zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.6.2" } zng-var = { path = "../zng-var", version = "0.5.12" } diff --git a/crates/zng-wgt-tooltip/Cargo.toml b/crates/zng-wgt-tooltip/Cargo.toml index f6198be21..5cfaea839 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.2" +version = "0.5.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -15,7 +15,7 @@ keywords = ["gui", "ui", "user-interface", "zng"] 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.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" } diff --git a/crates/zng-wgt-undo-history/Cargo.toml b/crates/zng-wgt-undo-history/Cargo.toml index 48560e35f..e8704eb61 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.2" +version = "0.4.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -13,8 +13,8 @@ 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.2" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.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" } diff --git a/crates/zng-wgt-window/Cargo.toml b/crates/zng-wgt-window/Cargo.toml index 245c425fd..e5c31798d 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.2" +version = "0.7.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -22,7 +22,7 @@ dyn_closure = ["zng-wgt/dyn_closure"] 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.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 } @@ -36,7 +36,7 @@ zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.4.2" } # 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.2" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.3" } 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 0db76faa1..bcde2afcc 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.2" +version = "0.4.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -13,8 +13,8 @@ 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.2" } -zng-ext-font = { path = "../zng-ext-font", version = "0.5.2" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.3" } +zng-ext-font = { path = "../zng-ext-font", version = "0.5.3" } zng-layout = { path = "../zng-layout", version = "0.2.33" } zng-app = { path = "../zng-app", version = "0.14.2" } diff --git a/crates/zng/Cargo.toml b/crates/zng/Cargo.toml index 0d65b10df..b0f826650 100644 --- a/crates/zng/Cargo.toml +++ b/crates/zng/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng" -version = "0.13.2" +version = "0.13.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -212,7 +212,7 @@ zng-unique-id = { path = "../zng-unique-id", version = "0.4.8" } 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.2" } +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 } @@ -236,31 +236,31 @@ 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.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.2" } -zng-wgt-image = { path = "../zng-wgt-image", version = "0.4.2" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.5.2" } -zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.5.2" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.5.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.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.2" } -zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.4.2" } -zng-wgt-toggle = { path = "../zng-wgt-toggle", version = "0.4.2" } -zng-wgt-menu = { path = "../zng-wgt-menu", 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.2" } -zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.5.2" } -zng-wgt-markdown = { path = "../zng-wgt-markdown", version = "0.4.2" } -zng-wgt-inspector = { path = "../zng-wgt-inspector", version = "0.3.2" } -zng-wgt-settings = { path = "../zng-wgt-settings", version = "0.2.2" } -zng-wgt-dialog = { path = "../zng-wgt-dialog", version = "0.2.2" } -zng-wgt-progress = { path = "../zng-wgt-progress", version = "0.2.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.2", default-features = false, optional = true } +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 } 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.2", optional = true } +zng-view-prebuilt = { path = "../zng-view-prebuilt", version = "0.13.3", optional = true } [build-dependencies] cfg_aliases = "0.2" diff --git a/crates/zng/README.md b/crates/zng/README.md index 69e9db3c4..f1f6806d9 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.2", features = ["view_prebuilt"] } +zng = { version = "0.13.3", features = ["view_prebuilt"] } ``` Then create your first window: diff --git a/crates/zng/src/app.rs b/crates/zng/src/app.rs index 57f11eb3c..49dbb8cb8 100644 --- a/crates/zng/src/app.rs +++ b/crates/zng/src/app.rs @@ -23,7 +23,7 @@ //! //! ```toml //! [dependencies] -//! zng = { version = "0.13.2", features = ["view_prebuilt"] } +//! zng = { version = "0.13.3", features = ["view_prebuilt"] } //! ``` //! //! ```no_run diff --git a/crates/zng/src/icon.rs b/crates/zng/src/icon.rs index c23168b2e..2c751782b 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.2", features = ["material_icons"] } +/// zng = { version = "0.13.3", 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 50bffbb79..3d4d2d0c7 100644 --- a/crates/zng/src/lib.rs +++ b/crates/zng/src/lib.rs @@ -17,7 +17,7 @@ //! //! ```toml //! [dependencies] -//! zng = { version = "0.13.2", features = ["view_prebuilt"] } +//! zng = { version = "0.13.3", features = ["view_prebuilt"] } //! ``` //! //! Then create your first app: