slint-ui 1.2.0 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -22,9 +22,9 @@ The license does not permit the use of the Software within Embedded Systems. An
|
|
|
22
22
|
|
|
23
23
|
You may distribute the Software as part of an Application, modified or unmodified, provided that You do all of the following:
|
|
24
24
|
|
|
25
|
-
(a) Display the [`AboutSlint`](https://slint.dev/snapshots/master/docs/slint/src/
|
|
25
|
+
(a) Display the [`AboutSlint`](https://slint.dev/snapshots/master/docs/slint/src/language/widgets/aboutslint.html) widget in an "About" screen or dialog that is accessible from the top level menu of the Application.
|
|
26
26
|
|
|
27
|
-
(b) Display the [Slint attribution badge](https://github.com/slint-ui/slint/tree/master/logo/
|
|
27
|
+
(b) Display the [Slint attribution badge](https://github.com/slint-ui/slint/tree/master/logo/MadeWithSlint-logo-whitebg.png) on a public webpage, preferably where the binaries of your Application can be downloaded from, in such a way that it can be easily found by any visitor to that page.
|
|
28
28
|
|
|
29
29
|
(c) You may not remove or alter any license notices (including copyright notices, disclaimers of warranty, or limitations of liability) contained within the source code form of the Software.
|
|
30
30
|
|
package/native/Cargo.toml
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
[package]
|
|
5
5
|
name = "slint-node"
|
|
6
|
-
version = "1.2.
|
|
6
|
+
version = "1.2.2"
|
|
7
7
|
authors = ["Slint Developers <info@slint.dev>"]
|
|
8
8
|
edition = "2021"
|
|
9
9
|
build = "build.rs"
|
|
@@ -20,9 +20,9 @@ crate-type = ["cdylib"]
|
|
|
20
20
|
name = "slint_node_native"
|
|
21
21
|
|
|
22
22
|
[dependencies]
|
|
23
|
-
i-slint-compiler = { version = "=1.2.
|
|
24
|
-
i-slint-core = { version = "=1.2.
|
|
25
|
-
slint-interpreter = { version = "=1.2.
|
|
23
|
+
i-slint-compiler = { version = "=1.2.2"}
|
|
24
|
+
i-slint-core = { version = "=1.2.2"}
|
|
25
|
+
slint-interpreter = { version = "=1.2.2", features = ["display-diagnostics"] }
|
|
26
26
|
|
|
27
27
|
vtable = { version = "0.1.6"}
|
|
28
28
|
|