forked from slint-ui/slint
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
64 changed files
with
120 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "slint-cpp" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
build = "build.rs" | ||
|
@@ -40,11 +40,11 @@ experimental = ["i-slint-renderer-skia", "raw-window-handle"] | |
default = ["backend-winit", "renderer-winit-femtovg", "backend-qt", "experimental"] | ||
|
||
[dependencies] | ||
i-slint-backend-selector = { version = "=1.0.2", path="../../internal/backends/selector" } | ||
i-slint-backend-testing = { version = "=1.0.2", path="../../internal/backends/testing", optional = true } | ||
i-slint-renderer-skia = { version = "=1.0.2", path="../../internal/renderers/skia", optional = true, features = ["x11", "wayland"] } | ||
i-slint-core = { version = "=1.0.2", path="../../internal/core", features = ["ffi"] } | ||
slint-interpreter = { version = "=1.0.2", path="../../internal/interpreter", default-features = false, features = ["ffi", "compat-1-0"], optional = true } | ||
i-slint-backend-selector = { version = "=1.0.3", path="../../internal/backends/selector" } | ||
i-slint-backend-testing = { version = "=1.0.3", path="../../internal/backends/testing", optional = true } | ||
i-slint-renderer-skia = { version = "=1.0.3", path="../../internal/renderers/skia", optional = true, features = ["x11", "wayland"] } | ||
i-slint-core = { version = "=1.0.3", path="../../internal/core", features = ["ffi"] } | ||
slint-interpreter = { version = "=1.0.3", path="../../internal/interpreter", default-features = false, features = ["ffi", "compat-1-0"], optional = true } | ||
raw-window-handle = { version = "0.5", optional = true } | ||
# Enable image-rs' default features to make all image formats to C++ users | ||
image = { version = "0.24.0" } | ||
|
@@ -53,4 +53,4 @@ image = { version = "0.24.0" } | |
anyhow = "1.0" | ||
cbindgen = "0.24" | ||
proc-macro2 = "1.0.11" | ||
i-slint-common = { version = "=1.0.2", path="../../internal/common" } | ||
i-slint-common = { version = "=1.0.3", path="../../internal/common" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
author = "Slint Developers <[email protected]>" | ||
|
||
# The full version, including alpha/beta/rc tags | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
|
||
cpp_index_common_prefix = ["slint::", "slint::interpreter::"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "slint-node" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
build = "build.rs" | ||
|
@@ -20,9 +20,9 @@ crate-type = ["cdylib"] | |
name = "slint_node_native" | ||
|
||
[dependencies] | ||
i-slint-compiler = { version = "=1.0.2", path="../../../internal/compiler" } | ||
i-slint-core = { version = "=1.0.2", path="../../../internal/core" } | ||
slint-interpreter = { version = "=1.0.2", path="../../../internal/interpreter", features = ["display-diagnostics"] } | ||
i-slint-compiler = { version = "=1.0.3", path="../../../internal/compiler" } | ||
i-slint-core = { version = "=1.0.3", path="../../../internal/core" } | ||
slint-interpreter = { version = "=1.0.3", path="../../../internal/interpreter", features = ["display-diagnostics"] } | ||
|
||
vtable = { version = "0.1.6", path="../../../helper_crates/vtable" } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "slint-build" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" | ||
|
@@ -19,7 +19,7 @@ path = "lib.rs" | |
default = [] | ||
|
||
[dependencies] | ||
i-slint-compiler = { version = "=1.0.2", path = "../../../internal/compiler", features = ["rust", "display-diagnostics", "software-renderer"] } | ||
i-slint-compiler = { version = "=1.0.3", path = "../../../internal/compiler", features = ["rust", "display-diagnostics", "software-renderer"] } | ||
|
||
spin_on = "0.1" | ||
thiserror = "1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "slint-macros" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" | ||
|
@@ -17,7 +17,7 @@ proc-macro = true | |
path = "lib.rs" | ||
|
||
[dependencies] | ||
i-slint-compiler = { version = "=1.0.2", path = "../../../internal/compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] } | ||
i-slint-compiler = { version = "=1.0.3", path = "../../../internal/compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] } | ||
|
||
proc-macro2 = "1.0.17" | ||
quote = "1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "slint" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" | ||
|
@@ -118,9 +118,9 @@ renderer-winit-skia-opengl = ["i-slint-backend-selector/renderer-winit-skia-open | |
renderer-winit-software = ["i-slint-backend-selector/renderer-winit-software"] | ||
|
||
[dependencies] | ||
i-slint-core = { version = "=1.0.2", path = "../../../internal/core", default-features = false } | ||
slint-macros = { version = "=1.0.2", path = "../macros" } | ||
i-slint-backend-selector = { version = "=1.0.2", path = "../../../internal/backends/selector" } | ||
i-slint-core = { version = "=1.0.3", path = "../../../internal/core", default-features = false } | ||
slint-macros = { version = "=1.0.3", path = "../macros" } | ||
i-slint-backend-selector = { version = "=1.0.3", path = "../../../internal/backends/selector" } | ||
|
||
const-field-offset = { version = "0.1.2", path = "../../../helper_crates/const-field-offset" } | ||
document-features = { version = "0.2.0", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "slint-wasm-interpreter" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
author = "Slint Developers <[email protected]>" | ||
|
||
# The full version, including alpha/beta/rc tags | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
|
||
# -- General configuration --------------------------------------------------- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "src" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ cd memory | |
Then we edit `Cargo.toml` to add the slint dependency using `cargo add`: | ||
|
||
```sh | ||
cargo add [email protected].2 | ||
cargo add [email protected].3 | ||
``` | ||
|
||
Finally we copy the hello world program from the [Slint documentation](https://slint-ui.com/docs/rust/slint/) into our `src/main.rs`: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "_7guis" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "carousel" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
build = "build.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "energy-monitor" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
build = "build.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "gallery" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
build = "build.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "imagefilter" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "mcu-board-support" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" | ||
|
@@ -23,8 +23,8 @@ esp32-s2-kaluga-1 = ["slint/unsafe-single-threaded", "esp32s2-hal", "embedded-ha | |
esp32-s3-box = ["slint/unsafe-single-threaded", "esp32s3-hal", "embedded-hal", "xtensa-lx-rt/esp32s3", "esp-alloc", "esp-println/esp32s3", "esp-backtrace/esp32s3", "display-interface", "display-interface-spi", "mipidsi", "embedded-graphics", "slint/libm", "tt21100"] | ||
|
||
[dependencies] | ||
slint = { version = "=1.0.2", path = "../../api/rs/slint", default-features = false, features = ["compat-1-0"] } | ||
i-slint-core-macros = { version = "=1.0.2", path = "../../internal/core-macros" } | ||
slint = { version = "=1.0.3", path = "../../api/rs/slint", default-features = false, features = ["compat-1-0"] } | ||
i-slint-core-macros = { version = "=1.0.3", path = "../../internal/core-macros" } | ||
|
||
derive_more = "0.99.5" | ||
embedded-graphics = { version = "0.7.1", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "memory" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "opengl_underlay" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
build = "build.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "plotter" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "printerdemo" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
build = "build.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "printerdemo_mcu" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
build = "build.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "printerdemo_old" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
build = "build.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "slide_puzzle" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
[package] | ||
name = "todo" | ||
version = "1.0.2" | ||
version = "1.0.3" | ||
authors = ["Slint Developers <[email protected]>"] | ||
edition = "2021" | ||
build = "build.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.