mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-30 13:51:13 +00:00
Bump version number to 1.1.1
This commit is contained in:
parent
e1c651d5df
commit
c8c9496722
67 changed files with 121 additions and 121 deletions
|
@ -304,7 +304,7 @@ cmake_language(DEFER CALL _slint_write_configure_file)
|
||||||
|
|
||||||
write_basic_package_version_file(
|
write_basic_package_version_file(
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/lib/cmake/Slint/SlintConfigVersion.cmake
|
${CMAKE_CURRENT_BINARY_DIR}/lib/cmake/Slint/SlintConfigVersion.cmake
|
||||||
VERSION 1.1.0
|
VERSION 1.1.1
|
||||||
COMPATIBILITY SameMinorVersion
|
COMPATIBILITY SameMinorVersion
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -357,7 +357,7 @@ set(CPACK_PACKAGE_VENDOR "Slint")
|
||||||
set(CPACK_VERBATIM_VARIABLES true)
|
set(CPACK_VERBATIM_VARIABLES true)
|
||||||
set(CPACK_PACKAGE_VERSION_MAJOR 1)
|
set(CPACK_PACKAGE_VERSION_MAJOR 1)
|
||||||
set(CPACK_PACKAGE_VERSION_MINOR 1)
|
set(CPACK_PACKAGE_VERSION_MINOR 1)
|
||||||
set(CPACK_PACKAGE_VERSION_PATCH 0)
|
set(CPACK_PACKAGE_VERSION_PATCH 1)
|
||||||
set(CPACK_PACKAGE_HOMEPAGE_URL "https://slint.dev")
|
set(CPACK_PACKAGE_HOMEPAGE_URL "https://slint.dev")
|
||||||
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_LIST_DIR}/../../LICENSE.md")
|
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_LIST_DIR}/../../LICENSE.md")
|
||||||
set(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_LIST_DIR}/README.md")
|
set(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_LIST_DIR}/README.md")
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "slint-cpp"
|
name = "slint-cpp"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
@ -43,11 +43,11 @@ experimental = ["i-slint-renderer-skia", "raw-window-handle"]
|
||||||
default = ["backend-winit", "renderer-winit-femtovg", "backend-qt", "experimental"]
|
default = ["backend-winit", "renderer-winit-femtovg", "backend-qt", "experimental"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-backend-selector = { version = "=1.1.0", path="../../internal/backends/selector" }
|
i-slint-backend-selector = { version = "=1.1.1", path="../../internal/backends/selector" }
|
||||||
i-slint-backend-testing = { version = "=1.1.0", path="../../internal/backends/testing", optional = true }
|
i-slint-backend-testing = { version = "=1.1.1", path="../../internal/backends/testing", optional = true }
|
||||||
i-slint-renderer-skia = { version = "=1.1.0", path="../../internal/renderers/skia", optional = true, features = ["x11", "wayland"] }
|
i-slint-renderer-skia = { version = "=1.1.1", path="../../internal/renderers/skia", optional = true, features = ["x11", "wayland"] }
|
||||||
i-slint-core = { version = "=1.1.0", path="../../internal/core", features = ["ffi"] }
|
i-slint-core = { version = "=1.1.1", path="../../internal/core", features = ["ffi"] }
|
||||||
slint-interpreter = { version = "=1.1.0", path="../../internal/interpreter", default-features = false, features = ["ffi", "compat-1-0"], optional = true }
|
slint-interpreter = { version = "=1.1.1", path="../../internal/interpreter", default-features = false, features = ["ffi", "compat-1-0"], optional = true }
|
||||||
raw-window-handle = { version = "0.5", optional = true }
|
raw-window-handle = { version = "0.5", optional = true }
|
||||||
# Enable image-rs' default features to make all image formats to C++ users
|
# Enable image-rs' default features to make all image formats to C++ users
|
||||||
image = { version = "0.24.0" }
|
image = { version = "0.24.0" }
|
||||||
|
@ -56,4 +56,4 @@ image = { version = "0.24.0" }
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
cbindgen = "0.24"
|
cbindgen = "0.24"
|
||||||
proc-macro2 = "1.0.11"
|
proc-macro2 = "1.0.11"
|
||||||
i-slint-common = { version = "=1.1.0", path="../../internal/common" }
|
i-slint-common = { version = "=1.1.1", path="../../internal/common" }
|
||||||
|
|
|
@ -26,7 +26,7 @@ copyright = "SixtyFPS GmbH"
|
||||||
author = "Slint Developers <info@slint.dev>"
|
author = "Slint Developers <info@slint.dev>"
|
||||||
|
|
||||||
# The full version, including alpha/beta/rc tags
|
# The full version, including alpha/beta/rc tags
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
|
|
||||||
cpp_index_common_prefix = ["slint::", "slint::interpreter::"]
|
cpp_index_common_prefix = ["slint::", "slint::interpreter::"]
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "slint-node"
|
name = "slint-node"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
@ -20,9 +20,9 @@ crate-type = ["cdylib"]
|
||||||
name = "slint_node_native"
|
name = "slint_node_native"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-compiler = { version = "=1.1.0", path="../../../internal/compiler" }
|
i-slint-compiler = { version = "=1.1.1", path="../../../internal/compiler" }
|
||||||
i-slint-core = { version = "=1.1.0", path="../../../internal/core" }
|
i-slint-core = { version = "=1.1.1", path="../../../internal/core" }
|
||||||
slint-interpreter = { version = "=1.1.0", path="../../../internal/interpreter", features = ["display-diagnostics"] }
|
slint-interpreter = { version = "=1.1.1", path="../../../internal/interpreter", features = ["display-diagnostics"] }
|
||||||
|
|
||||||
vtable = { version = "0.1.6", path="../../../helper_crates/vtable" }
|
vtable = { version = "0.1.6", path="../../../helper_crates/vtable" }
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "slint-ui",
|
"name": "slint-ui",
|
||||||
"version": "1.1.0",
|
"version": "1.1.1",
|
||||||
"homepage": "https://github.com/slint-ui/slint",
|
"homepage": "https://github.com/slint-ui/slint",
|
||||||
"license": "SEE LICENSE IN LICENSE.md",
|
"license": "SEE LICENSE IN LICENSE.md",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "slint-build"
|
name = "slint-build"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
@ -19,7 +19,7 @@ path = "lib.rs"
|
||||||
default = []
|
default = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-compiler = { version = "=1.1.0", path = "../../../internal/compiler", features = ["rust", "display-diagnostics", "software-renderer"] }
|
i-slint-compiler = { version = "=1.1.1", path = "../../../internal/compiler", features = ["rust", "display-diagnostics", "software-renderer"] }
|
||||||
|
|
||||||
spin_on = "0.1"
|
spin_on = "0.1"
|
||||||
thiserror = "1"
|
thiserror = "1"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "slint-macros"
|
name = "slint-macros"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
@ -17,7 +17,7 @@ proc-macro = true
|
||||||
path = "lib.rs"
|
path = "lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-compiler = { version = "=1.1.0", path = "../../../internal/compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] }
|
i-slint-compiler = { version = "=1.1.1", path = "../../../internal/compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] }
|
||||||
|
|
||||||
proc-macro2 = "1.0.17"
|
proc-macro2 = "1.0.17"
|
||||||
quote = "1.0"
|
quote = "1.0"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "slint"
|
name = "slint"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
@ -136,9 +136,9 @@ renderer-winit-skia-vulkan = ["i-slint-backend-selector/renderer-winit-skia-vulk
|
||||||
renderer-winit-software = ["i-slint-backend-selector/renderer-winit-software"]
|
renderer-winit-software = ["i-slint-backend-selector/renderer-winit-software"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-core = { version = "=1.1.0", path = "../../../internal/core", default-features = false }
|
i-slint-core = { version = "=1.1.1", path = "../../../internal/core", default-features = false }
|
||||||
slint-macros = { version = "=1.1.0", path = "../macros" }
|
slint-macros = { version = "=1.1.1", path = "../macros" }
|
||||||
i-slint-backend-selector = { version = "=1.1.0", path = "../../../internal/backends/selector" }
|
i-slint-backend-selector = { version = "=1.1.1", path = "../../../internal/backends/selector" }
|
||||||
|
|
||||||
const-field-offset = { version = "0.1.2", path = "../../../helper_crates/const-field-offset" }
|
const-field-offset = { version = "0.1.2", path = "../../../helper_crates/const-field-offset" }
|
||||||
document-features = { version = "0.2.0", optional = true }
|
document-features = { version = "0.2.0", optional = true }
|
||||||
|
|
|
@ -350,7 +350,7 @@ pub mod platform {
|
||||||
/// Helper type that helps checking that the generated code is generated for the right version
|
/// Helper type that helps checking that the generated code is generated for the right version
|
||||||
#[doc(hidden)]
|
#[doc(hidden)]
|
||||||
#[allow(non_camel_case_types)]
|
#[allow(non_camel_case_types)]
|
||||||
pub struct VersionCheck_1_1_0;
|
pub struct VersionCheck_1_1_1;
|
||||||
|
|
||||||
#[cfg(doctest)]
|
#[cfg(doctest)]
|
||||||
mod compile_fail_tests;
|
mod compile_fail_tests;
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "slint-wasm-interpreter"
|
name = "slint-wasm-interpreter"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
|
|
@ -26,7 +26,7 @@ copyright = "SixtyFPS GmbH"
|
||||||
author = "Slint Developers <info@slint.dev>"
|
author = "Slint Developers <info@slint.dev>"
|
||||||
|
|
||||||
# The full version, including alpha/beta/rc tags
|
# The full version, including alpha/beta/rc tags
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
|
|
||||||
# -- General configuration ---------------------------------------------------
|
# -- General configuration ---------------------------------------------------
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "memory",
|
"name": "memory",
|
||||||
"version": "1.1.0",
|
"version": "1.1.1",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"slint-ui": "^1.0.0"
|
"slint-ui": "^1.0.0"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "src"
|
name = "src"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
@ -15,7 +15,7 @@ cd memory
|
||||||
Then we edit `Cargo.toml` to add the slint dependency using `cargo add`:
|
Then we edit `Cargo.toml` to add the slint dependency using `cargo add`:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
cargo add slint@1.1.0
|
cargo add slint@1.1.1
|
||||||
```
|
```
|
||||||
|
|
||||||
Finally we copy the hello world program from the [Slint documentation](https://slint.dev/docs/rust/slint/) into our `src/main.rs`:
|
Finally we copy the hello world program from the [Slint documentation](https://slint.dev/docs/rust/slint/) into our `src/main.rs`:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "slint",
|
"name": "slint",
|
||||||
"displayName": "Slint",
|
"displayName": "Slint",
|
||||||
"description": "Slint Language extension",
|
"description": "Slint Language extension",
|
||||||
"version": "1.1.0",
|
"version": "1.1.1",
|
||||||
"publisher": "Slint",
|
"publisher": "Slint",
|
||||||
"icon": "extension-logo.png",
|
"icon": "extension-logo.png",
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "_7guis"
|
name = "_7guis"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "carousel",
|
"name": "carousel",
|
||||||
"version": "1.1.0",
|
"version": "1.1.1",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"slint-ui": "../../../api/node"
|
"slint-ui": "../../../api/node"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "carousel"
|
name = "carousel"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "energy-monitor"
|
name = "energy-monitor"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "ffmpeg"
|
name = "ffmpeg"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "gallery"
|
name = "gallery"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "imagefilter"
|
name = "imagefilter"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "mcu-board-support"
|
name = "mcu-board-support"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
@ -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"]
|
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]
|
[dependencies]
|
||||||
slint = { version = "=1.1.0", path = "../../api/rs/slint", default-features = false, features = ["compat-1-0"] }
|
slint = { version = "=1.1.1", path = "../../api/rs/slint", default-features = false, features = ["compat-1-0"] }
|
||||||
i-slint-core-macros = { version = "=1.1.0", path = "../../internal/core-macros" }
|
i-slint-core-macros = { version = "=1.1.1", path = "../../internal/core-macros" }
|
||||||
|
|
||||||
derive_more = "0.99.5"
|
derive_more = "0.99.5"
|
||||||
embedded-graphics = { version = "0.7.1", optional = true }
|
embedded-graphics = { version = "0.7.1", optional = true }
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "memory"
|
name = "memory"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "memory",
|
"name": "memory",
|
||||||
"version": "1.1.0",
|
"version": "1.1.1",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"slint-ui": "../../api/node"
|
"slint-ui": "../../api/node"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "opengl_texture"
|
name = "opengl_texture"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "opengl_underlay"
|
name = "opengl_underlay"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "plotter"
|
name = "plotter"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "printerdemo",
|
"name": "printerdemo",
|
||||||
"version": "1.1.0",
|
"version": "1.1.1",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"slint-ui": "../../../api/node"
|
"slint-ui": "../../../api/node"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "printerdemo"
|
name = "printerdemo"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "printerdemo_mcu"
|
name = "printerdemo_mcu"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "printerdemo",
|
"name": "printerdemo",
|
||||||
"version": "1.1.0",
|
"version": "1.1.1",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"slint-ui": "../../../api/node"
|
"slint-ui": "../../../api/node"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "printerdemo_old"
|
name = "printerdemo_old"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "slide_puzzle"
|
name = "slide_puzzle"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "todo",
|
"name": "todo",
|
||||||
"version": "1.1.0",
|
"version": "1.1.1",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"slint-ui": "../../../api/node"
|
"slint-ui": "../../../api/node"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "todo"
|
name = "todo"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "uefi-demo"
|
name = "uefi-demo"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "virtual_keyboard"
|
name = "virtual_keyboard"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "i-slint-backend-qt"
|
name = "i-slint-backend-qt"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
@ -19,9 +19,9 @@ rtti = ["i-slint-core/rtti"]
|
||||||
path = "lib.rs"
|
path = "lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-common = { version = "=1.1.0", path = "../../../internal/common" }
|
i-slint-common = { version = "=1.1.1", path = "../../../internal/common" }
|
||||||
i-slint-core-macros = { version = "=1.1.0", path = "../../../internal/core-macros" }
|
i-slint-core-macros = { version = "=1.1.1", path = "../../../internal/core-macros" }
|
||||||
i-slint-core = { version = "=1.1.0", path = "../../../internal/core" }
|
i-slint-core = { version = "=1.1.1", path = "../../../internal/core" }
|
||||||
|
|
||||||
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
|
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
|
||||||
vtable = { version = "0.1.8", path = "../../../helper_crates/vtable" }
|
vtable = { version = "0.1.8", path = "../../../helper_crates/vtable" }
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "i-slint-backend-selector"
|
name = "i-slint-backend-selector"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
@ -29,8 +29,8 @@ rtti = ["i-slint-backend-winit?/rtti", "i-slint-backend-qt?/rtti"]
|
||||||
accessibility = ["i-slint-backend-winit?/accessibility"]
|
accessibility = ["i-slint-backend-winit?/accessibility"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-core = { version = "=1.1.0", path = "../../../internal/core", default-features = false }
|
i-slint-core = { version = "=1.1.1", path = "../../../internal/core", default-features = false }
|
||||||
i-slint-backend-winit = { version = "=1.1.0", path = "../winit", optional = true }
|
i-slint-backend-winit = { version = "=1.1.1", path = "../winit", optional = true }
|
||||||
i-slint-backend-qt = { version = "=1.1.0", path = "../qt", optional = true }
|
i-slint-backend-qt = { version = "=1.1.1", path = "../qt", optional = true }
|
||||||
|
|
||||||
cfg-if = "1"
|
cfg-if = "1"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "i-slint-backend-testing"
|
name = "i-slint-backend-testing"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
@ -16,6 +16,6 @@ publish = false
|
||||||
path = "lib.rs"
|
path = "lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-core = { version = "=1.1.0", path = "../../../internal/core" }
|
i-slint-core = { version = "=1.1.1", path = "../../../internal/core" }
|
||||||
vtable = { version = "0.1.8", path = "../../../helper_crates/vtable" }
|
vtable = { version = "0.1.8", path = "../../../helper_crates/vtable" }
|
||||||
image = { version = "0.24.0", default-features = false, features = ["png", "jpeg"] }
|
image = { version = "0.24.0", default-features = false, features = ["png", "jpeg"] }
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "i-slint-backend-winit"
|
name = "i-slint-backend-winit"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
@ -31,9 +31,9 @@ rtti = ["i-slint-core/rtti"]
|
||||||
default = []
|
default = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-core = { version = "=1.1.0", path = "../../../internal/core" }
|
i-slint-core = { version = "=1.1.1", path = "../../../internal/core" }
|
||||||
i-slint-core-macros = { version = "=1.1.0", path = "../../../internal/core-macros" }
|
i-slint-core-macros = { version = "=1.1.1", path = "../../../internal/core-macros" }
|
||||||
i-slint-common = { version = "=1.1.0", path = "../../../internal/common" }
|
i-slint-common = { version = "=1.1.1", path = "../../../internal/common" }
|
||||||
|
|
||||||
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
|
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
|
||||||
vtable = { version = "0.1.6", path = "../../../helper_crates/vtable" }
|
vtable = { version = "0.1.6", path = "../../../helper_crates/vtable" }
|
||||||
|
@ -53,10 +53,10 @@ scopeguard = { version = "1.1.0", default-features = false }
|
||||||
send_wrapper = { workspace = true }
|
send_wrapper = { workspace = true }
|
||||||
|
|
||||||
# For the FemtoVG renderer
|
# For the FemtoVG renderer
|
||||||
i-slint-renderer-femtovg = { version = "=1.1.0", path = "../../renderers/femtovg", optional = true }
|
i-slint-renderer-femtovg = { version = "=1.1.1", path = "../../renderers/femtovg", optional = true }
|
||||||
|
|
||||||
# For the Skia renderer
|
# For the Skia renderer
|
||||||
i-slint-renderer-skia = { version = "=1.1.0", path = "../../renderers/skia", optional = true }
|
i-slint-renderer-skia = { version = "=1.1.1", path = "../../renderers/skia", optional = true }
|
||||||
|
|
||||||
# For the software renderer
|
# For the software renderer
|
||||||
softbuffer = { version = "0.3.0", optional = true }
|
softbuffer = { version = "0.3.0", optional = true }
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "i-slint-common"
|
name = "i-slint-common"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "i-slint-compiler"
|
name = "i-slint-compiler"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
@ -32,7 +32,7 @@ software-renderer = ["image", "dep:resvg", "fontdue", "i-slint-common/shared-fon
|
||||||
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-common = { version = "=1.1.0", path = "../common" }
|
i-slint-common = { version = "=1.1.1", path = "../common" }
|
||||||
|
|
||||||
num_enum = "0.6.1"
|
num_enum = "0.6.1"
|
||||||
strum = { version = "0.25.0", default-features = false, features = ["derive"] }
|
strum = { version = "0.25.0", default-features = false, features = ["derive"] }
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "i-slint-parser-test-macro"
|
name = "i-slint-parser-test-macro"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -153,7 +153,7 @@ export component AboutSlint {
|
||||||
}
|
}
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
text: "Version 1.1.0\nhttps://slint.dev/";
|
text: "Version 1.1.1\nhttps://slint.dev/";
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
horizontal-alignment: center;
|
horizontal-alignment: center;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "i-slint-core-macros"
|
name = "i-slint-core-macros"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "i-slint-core"
|
name = "i-slint-core"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
@ -43,8 +43,8 @@ shared-fontdb = ["i-slint-common/shared-fontdb"]
|
||||||
default = ["std", "unicode"]
|
default = ["std", "unicode"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-common = { version = "=1.1.0", path = "../common" }
|
i-slint-common = { version = "=1.1.1", path = "../common" }
|
||||||
i-slint-core-macros = { version = "=1.1.0", path = "../core-macros" }
|
i-slint-core-macros = { version = "=1.1.1", path = "../core-macros" }
|
||||||
|
|
||||||
const-field-offset = { version = "0.1", path = "../../helper_crates/const-field-offset" }
|
const-field-offset = { version = "0.1", path = "../../helper_crates/const-field-offset" }
|
||||||
vtable = { version="0.1.9", path = "../../helper_crates/vtable" }
|
vtable = { version="0.1.9", path = "../../helper_crates/vtable" }
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "slint-interpreter"
|
name = "slint-interpreter"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
@ -88,10 +88,10 @@ renderer-winit-software = ["i-slint-backend-selector/renderer-winit-software"]
|
||||||
accessibility = ["i-slint-backend-selector/accessibility"]
|
accessibility = ["i-slint-backend-selector/accessibility"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-compiler = { version = "=1.1.0", path = "../compiler" }
|
i-slint-compiler = { version = "=1.1.1", path = "../compiler" }
|
||||||
i-slint-common = { version = "=1.1.0", path = "../common" }
|
i-slint-common = { version = "=1.1.1", path = "../common" }
|
||||||
i-slint-core = { version = "=1.1.0", path = "../core", features = ["rtti"] }
|
i-slint-core = { version = "=1.1.1", path = "../core", features = ["rtti"] }
|
||||||
i-slint-backend-selector = { version = "=1.1.0", path = "../../internal/backends/selector", features = ["rtti"] }
|
i-slint-backend-selector = { version = "=1.1.1", path = "../../internal/backends/selector", features = ["rtti"] }
|
||||||
|
|
||||||
vtable = { version = "0.1.6", path="../../helper_crates/vtable" }
|
vtable = { version = "0.1.6", path="../../helper_crates/vtable" }
|
||||||
|
|
||||||
|
@ -107,7 +107,7 @@ version = "0.1"
|
||||||
optional = true
|
optional = true
|
||||||
|
|
||||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||||
i-slint-backend-winit = { version = "=1.1.0", path = "../../internal/backends/winit" }
|
i-slint-backend-winit = { version = "=1.1.1", path = "../../internal/backends/winit" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
i-slint-backend-testing = { path = "../../internal/backends/testing" }
|
i-slint-backend-testing = { path = "../../internal/backends/testing" }
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "i-slint-renderer-femtovg"
|
name = "i-slint-renderer-femtovg"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
@ -16,9 +16,9 @@ rust-version.workspace = true
|
||||||
path = "lib.rs"
|
path = "lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-core = { version = "=1.1.0", path = "../../../internal/core", features = [ "box-shadow-cache", "shared-fontdb" ] }
|
i-slint-core = { version = "=1.1.1", path = "../../../internal/core", features = [ "box-shadow-cache", "shared-fontdb" ] }
|
||||||
i-slint-core-macros = { version = "=1.1.0", path = "../../../internal/core-macros" }
|
i-slint-core-macros = { version = "=1.1.1", path = "../../../internal/core-macros" }
|
||||||
i-slint-common = { version = "=1.1.0", path = "../../../internal/common" }
|
i-slint-common = { version = "=1.1.1", path = "../../../internal/common" }
|
||||||
|
|
||||||
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
|
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
|
||||||
vtable = { version = "0.1.6", path = "../../../helper_crates/vtable" }
|
vtable = { version = "0.1.6", path = "../../../helper_crates/vtable" }
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "i-slint-renderer-skia"
|
name = "i-slint-renderer-skia"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
@ -26,9 +26,9 @@ vulkan = ["skia-safe/vulkan", "ash", "vulkano"]
|
||||||
default = []
|
default = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-core = { version = "=1.1.0", path = "../../../internal/core", features = [ "box-shadow-cache" ] }
|
i-slint-core = { version = "=1.1.1", path = "../../../internal/core", features = [ "box-shadow-cache" ] }
|
||||||
i-slint-core-macros = { version = "=1.1.0", path = "../../../internal/core-macros" }
|
i-slint-core-macros = { version = "=1.1.1", path = "../../../internal/core-macros" }
|
||||||
i-slint-common = { version = "=1.1.0", path = "../../../internal/common" }
|
i-slint-common = { version = "=1.1.1", path = "../../../internal/common" }
|
||||||
|
|
||||||
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
|
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
|
||||||
vtable = { version = "0.1.6", path = "../../../helper_crates/vtable" }
|
vtable = { version = "0.1.6", path = "../../../helper_crates/vtable" }
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "doctests"
|
name = "doctests"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "test-driver-cpp"
|
name = "test-driver-cpp"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "test_driver_lib"
|
name = "test_driver_lib"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "test-driver-interpreter"
|
name = "test-driver-interpreter"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "test-driver-nodejs"
|
name = "test-driver-nodejs"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "test-driver-rust"
|
name = "test-driver-rust"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "test-driver-screenshots"
|
name = "test-driver-screenshots"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
@ -15,7 +15,7 @@ name = "test-driver-screenshot"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
slint = { path = "../../api/rs/slint", default-features = false, features = ["std", "compat-1-0"] }
|
slint = { path = "../../api/rs/slint", default-features = false, features = ["std", "compat-1-0"] }
|
||||||
i-slint-core = { version = "=1.1.0", path = "../../internal/core" }
|
i-slint-core = { version = "=1.1.1", path = "../../internal/core" }
|
||||||
i-slint-backend-testing = { path = "../../internal/backends/testing" }
|
i-slint-backend-testing = { path = "../../internal/backends/testing" }
|
||||||
image = { version = "0.24.0", default-features = false, features = ["png", "jpeg"] }
|
image = { version = "0.24.0", default-features = false, features = ["png", "jpeg"] }
|
||||||
crossterm = "0.26"
|
crossterm = "0.26"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "slint-compiler"
|
name = "slint-compiler"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
@ -17,7 +17,7 @@ name = "slint-compiler"
|
||||||
path = "main.rs"
|
path = "main.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-compiler = { version = "=1.1.0", path = "../../internal/compiler", features = ["display-diagnostics", "cpp", "rust"]}
|
i-slint-compiler = { version = "=1.1.1", path = "../../internal/compiler", features = ["display-diagnostics", "cpp", "rust"]}
|
||||||
|
|
||||||
clap = { version = "4.0", features = ["derive", "wrap_help"] }
|
clap = { version = "4.0", features = ["derive", "wrap_help"] }
|
||||||
proc-macro2 = "1.0.11"
|
proc-macro2 = "1.0.11"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "figma_import"
|
name = "figma_import"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
description = "A figma file importer for Slint"
|
description = "A figma file importer for Slint"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "slint-fmt"
|
name = "slint-fmt"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "slint-lsp"
|
name = "slint-lsp"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
@ -62,7 +62,7 @@ preview-api = []
|
||||||
default = ["backend-qt", "backend-winit", "renderer-winit-femtovg", "preview"]
|
default = ["backend-qt", "backend-winit", "renderer-winit-femtovg", "preview"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-compiler = { version = "=1.1.0", path = "../../internal/compiler"}
|
i-slint-compiler = { version = "=1.1.1", path = "../../internal/compiler"}
|
||||||
dunce = "1.0.1"
|
dunce = "1.0.1"
|
||||||
euclid = "0.22"
|
euclid = "0.22"
|
||||||
lsp-types = { version = "0.94.0", features = ["proposed"] }
|
lsp-types = { version = "0.94.0", features = ["proposed"] }
|
||||||
|
@ -72,9 +72,9 @@ rowan = "0.15.5"
|
||||||
|
|
||||||
|
|
||||||
# for the preview
|
# for the preview
|
||||||
i-slint-core = { version = "=1.1.0", path = "../../internal/core", optional = true }
|
i-slint-core = { version = "=1.1.1", path = "../../internal/core", optional = true }
|
||||||
slint-interpreter = { version = "=1.1.0", path = "../../internal/interpreter", default-features = false, features = ["compat-1-0", "highlight"], optional = true }
|
slint-interpreter = { version = "=1.1.1", path = "../../internal/interpreter", default-features = false, features = ["compat-1-0", "highlight"], optional = true }
|
||||||
i-slint-backend-selector = { version = "=1.1.0", path="../../internal/backends/selector", optional = true }
|
i-slint-backend-selector = { version = "=1.1.1", path="../../internal/backends/selector", optional = true }
|
||||||
# Enable image-rs' default features to make all image formats available for the preview
|
# Enable image-rs' default features to make all image formats available for the preview
|
||||||
image = { version = "0.24.0", optional = true }
|
image = { version = "0.24.0", optional = true }
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"//": "cSpell: ignore codingame dragdrop frsource lumino ",
|
"//": "cSpell: ignore codingame dragdrop frsource lumino ",
|
||||||
"name": "slintpad",
|
"name": "slintpad",
|
||||||
"version": "1.1.0",
|
"version": "1.1.1",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "slint-tr-extractor"
|
name = "slint-tr-extractor"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "slint-updater"
|
name = "slint-updater"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
@ -13,7 +13,7 @@ homepage = "https://slint.dev"
|
||||||
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-compiler = { version = "=1.1.0", path = "../../internal/compiler", features = ["display-diagnostics"] }
|
i-slint-compiler = { version = "=1.1.1", path = "../../internal/compiler", features = ["display-diagnostics"] }
|
||||||
|
|
||||||
clap = { version = "4.0", features = ["derive", "wrap_help"] }
|
clap = { version = "4.0", features = ["derive", "wrap_help"] }
|
||||||
codemap = "0.1"
|
codemap = "0.1"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "slint-viewer"
|
name = "slint-viewer"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial"
|
||||||
|
@ -43,9 +43,9 @@ backend-gl-x11 = ["backend-winit-x11", "renderer-winit-femtovg"]
|
||||||
default = ["backend-qt", "backend-winit", "renderer-winit-femtovg"]
|
default = ["backend-qt", "backend-winit", "renderer-winit-femtovg"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-core = { version = "=1.1.0", path="../../internal/core" }
|
i-slint-core = { version = "=1.1.1", path="../../internal/core" }
|
||||||
slint-interpreter = { version = "=1.1.0", path = "../../internal/interpreter", default-features = false, features = ["display-diagnostics", "compat-1-0"] }
|
slint-interpreter = { version = "=1.1.1", path = "../../internal/interpreter", default-features = false, features = ["display-diagnostics", "compat-1-0"] }
|
||||||
i-slint-backend-selector = { version = "=1.1.0", path="../../internal/backends/selector" }
|
i-slint-backend-selector = { version = "=1.1.1", path="../../internal/backends/selector" }
|
||||||
|
|
||||||
vtable = { version = "0.1.6", path="../../helper_crates/vtable" }
|
vtable = { version = "0.1.6", path="../../helper_crates/vtable" }
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "xtask"
|
name = "xtask"
|
||||||
version = "1.1.0"
|
version = "1.1.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
description = "Development helper tool for the Slint project"
|
description = "Development helper tool for the Slint project"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
@ -23,4 +23,4 @@ serde_json = "1.0"
|
||||||
cbindgen = "0.24"
|
cbindgen = "0.24"
|
||||||
proc-macro2 = "1.0.11"
|
proc-macro2 = "1.0.11"
|
||||||
which = "4.2.4"
|
which = "4.2.4"
|
||||||
i-slint-common = { version = "=1.1.0", path="../internal/common" }
|
i-slint-common = { version = "=1.1.1", path="../internal/common" }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue