mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-03 07:04:34 +00:00
Bump version number to 1.0.1
This commit is contained in:
parent
a1ea00553f
commit
bd63218412
63 changed files with 119 additions and 119 deletions
|
@ -303,7 +303,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.0.0
|
VERSION 1.0.1
|
||||||
COMPATIBILITY SameMinorVersion
|
COMPATIBILITY SameMinorVersion
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -356,7 +356,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 0)
|
set(CPACK_PACKAGE_VERSION_MINOR 0)
|
||||||
set(CPACK_PACKAGE_VERSION_PATCH 0)
|
set(CPACK_PACKAGE_VERSION_PATCH 1)
|
||||||
set(CPACK_PACKAGE_HOMEPAGE_URL "https://slint-ui.com")
|
set(CPACK_PACKAGE_HOMEPAGE_URL "https://slint-ui.com")
|
||||||
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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
@ -40,11 +40,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.0.0", path="../../internal/backends/selector" }
|
i-slint-backend-selector = { version = "=1.0.1", path="../../internal/backends/selector" }
|
||||||
i-slint-backend-testing = { version = "=1.0.0", path="../../internal/backends/testing", optional = true }
|
i-slint-backend-testing = { version = "=1.0.1", path="../../internal/backends/testing", optional = true }
|
||||||
i-slint-renderer-skia = { version = "=1.0.0", path="../../internal/renderers/skia", optional = true, features = ["x11", "wayland"] }
|
i-slint-renderer-skia = { version = "=1.0.1", path="../../internal/renderers/skia", optional = true, features = ["x11", "wayland"] }
|
||||||
i-slint-core = { version = "=1.0.0", path="../../internal/core", features = ["ffi"] }
|
i-slint-core = { version = "=1.0.1", path="../../internal/core", features = ["ffi"] }
|
||||||
slint-interpreter = { version = "=1.0.0", path="../../internal/interpreter", default-features = false, features = ["ffi", "compat-1-0"], optional = true }
|
slint-interpreter = { version = "=1.0.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" }
|
||||||
|
@ -53,4 +53,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.0.0", path="../../internal/common" }
|
i-slint-common = { version = "=1.0.1", path="../../internal/common" }
|
||||||
|
|
|
@ -26,7 +26,7 @@ copyright = "SixtyFPS GmbH"
|
||||||
author = "Slint Developers <info@slint-ui.com>"
|
author = "Slint Developers <info@slint-ui.com>"
|
||||||
|
|
||||||
# The full version, including alpha/beta/rc tags
|
# The full version, including alpha/beta/rc tags
|
||||||
version = "1.0.0"
|
version = "1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
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.0.0", path="../../../internal/compiler" }
|
i-slint-compiler = { version = "=1.0.1", path="../../../internal/compiler" }
|
||||||
i-slint-core = { version = "=1.0.0", path="../../../internal/core" }
|
i-slint-core = { version = "=1.0.1", path="../../../internal/core" }
|
||||||
slint-interpreter = { version = "=1.0.0", path="../../../internal/interpreter", features = ["display-diagnostics"] }
|
slint-interpreter = { version = "=1.0.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.0.0",
|
"version": "1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
|
@ -19,7 +19,7 @@ path = "lib.rs"
|
||||||
default = []
|
default = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-compiler = { version = "=1.0.0", path = "../../../internal/compiler", features = ["rust", "display-diagnostics", "software-renderer"] }
|
i-slint-compiler = { version = "=1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
|
@ -17,7 +17,7 @@ proc-macro = true
|
||||||
path = "lib.rs"
|
path = "lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-compiler = { version = "=1.0.0", path = "../../../internal/compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] }
|
i-slint-compiler = { version = "=1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
|
@ -116,9 +116,9 @@ renderer-winit-skia-opengl = ["i-slint-backend-selector/renderer-winit-skia-open
|
||||||
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.0.0", path = "../../../internal/core", default-features = false }
|
i-slint-core = { version = "=1.0.1", path = "../../../internal/core", default-features = false }
|
||||||
slint-macros = { version = "=1.0.0", path = "../macros" }
|
slint-macros = { version = "=1.0.1", path = "../macros" }
|
||||||
i-slint-backend-selector = { version = "=1.0.0", path = "../../../internal/backends/selector" }
|
i-slint-backend-selector = { version = "=1.0.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 }
|
||||||
|
|
|
@ -288,7 +288,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_0_0;
|
pub struct VersionCheck_1_0_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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "memory",
|
"name": "memory",
|
||||||
"version": "1.0.0",
|
"version": "1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
|
|
|
@ -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.0.0
|
cargo add slint@1.0.1
|
||||||
```
|
```
|
||||||
|
|
||||||
Finally we copy the hello world program from the [Slint documentation](https://slint-ui.com/docs/rust/slint/) into our `src/main.rs`:
|
Finally we copy the hello world program from the [Slint documentation](https://slint-ui.com/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.0.0",
|
"version": "1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "carousel",
|
"name": "carousel",
|
||||||
"version": "1.0.0",
|
"version": "1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "energy-monitor"
|
name = "energy-monitor"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "gallery"
|
name = "gallery"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "imagefilter"
|
name = "imagefilter"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "mcu-board-support"
|
name = "mcu-board-support"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
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"]
|
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.0.0", path = "../../api/rs/slint", default-features = false, features = ["compat-1-0"] }
|
slint = { version = "=1.0.1", path = "../../api/rs/slint", default-features = false, features = ["compat-1-0"] }
|
||||||
i-slint-core-macros = { version = "=1.0.0", path = "../../internal/core-macros" }
|
i-slint-core-macros = { version = "=1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "memory",
|
"name": "memory",
|
||||||
"version": "1.0.0",
|
"version": "1.0.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_underlay"
|
name = "opengl_underlay"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "plotter"
|
name = "plotter"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "printerdemo",
|
"name": "printerdemo",
|
||||||
"version": "1.0.0",
|
"version": "1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "printerdemo_mcu"
|
name = "printerdemo_mcu"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "printerdemo",
|
"name": "printerdemo",
|
||||||
"version": "1.0.0",
|
"version": "1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "slide_puzzle"
|
name = "slide_puzzle"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "todo",
|
"name": "todo",
|
||||||
"version": "1.0.0",
|
"version": "1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "uefi-demo"
|
name = "uefi-demo"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "virtual_keyboard"
|
name = "virtual_keyboard"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only 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.0.0", path = "../../../internal/common" }
|
i-slint-common = { version = "=1.0.1", path = "../../../internal/common" }
|
||||||
i-slint-core-macros = { version = "=1.0.0", path = "../../../internal/core-macros" }
|
i-slint-core-macros = { version = "=1.0.1", path = "../../../internal/core-macros" }
|
||||||
i-slint-core = { version = "=1.0.0", path = "../../../internal/core" }
|
i-slint-core = { version = "=1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
|
@ -27,8 +27,8 @@ renderer-winit-software = ["i-slint-backend-winit/renderer-winit-software"]
|
||||||
rtti = ["i-slint-backend-winit?/rtti", "i-slint-backend-qt?/rtti"]
|
rtti = ["i-slint-backend-winit?/rtti", "i-slint-backend-qt?/rtti"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-core = { version = "=1.0.0", path = "../../../internal/core", default-features = false }
|
i-slint-core = { version = "=1.0.1", path = "../../../internal/core", default-features = false }
|
||||||
i-slint-backend-winit = { version = "=1.0.0", path = "../winit", optional = true }
|
i-slint-backend-winit = { version = "=1.0.1", path = "../winit", optional = true }
|
||||||
i-slint-backend-qt = { version = "=1.0.0", path = "../qt", optional = true }
|
i-slint-backend-qt = { version = "=1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
|
@ -16,6 +16,6 @@ publish = false
|
||||||
path = "lib.rs"
|
path = "lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-core = { version = "=1.0.0", path = "../../../internal/core" }
|
i-slint-core = { version = "=1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
|
@ -29,9 +29,9 @@ rtti = ["i-slint-core/rtti"]
|
||||||
default = []
|
default = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-core = { version = "=1.0.0", path = "../../../internal/core" }
|
i-slint-core = { version = "=1.0.1", path = "../../../internal/core" }
|
||||||
i-slint-core-macros = { version = "=1.0.0", path = "../../../internal/core-macros" }
|
i-slint-core-macros = { version = "=1.0.1", path = "../../../internal/core-macros" }
|
||||||
i-slint-common = { version = "=1.0.0", path = "../../../internal/common" }
|
i-slint-common = { version = "=1.0.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" }
|
||||||
|
@ -50,10 +50,10 @@ raw-window-handle = { version = "0.5", features = ["alloc"] }
|
||||||
scopeguard = { version = "1.1.0", default-features = false }
|
scopeguard = { version = "1.1.0", default-features = false }
|
||||||
|
|
||||||
# For the FemtoVG renderer
|
# For the FemtoVG renderer
|
||||||
i-slint-renderer-femtovg = { version = "=1.0.0", path = "../../renderers/femtovg", optional = true }
|
i-slint-renderer-femtovg = { version = "=1.0.1", path = "../../renderers/femtovg", optional = true }
|
||||||
|
|
||||||
# For the Skia renderer
|
# For the Skia renderer
|
||||||
i-slint-renderer-skia = { version = "=1.0.0", path = "../../renderers/skia", optional = true }
|
i-slint-renderer-skia = { version = "=1.0.1", path = "../../renderers/skia", optional = true }
|
||||||
|
|
||||||
# For the software renderer
|
# For the software renderer
|
||||||
softbuffer = { version = "0.2.0", optional = true }
|
softbuffer = { version = "0.2.0", optional = true }
|
||||||
|
@ -68,10 +68,10 @@ send_wrapper = "0.6.0"
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||||
glutin = { version = "0.30", optional = true, default-features = false, features = ["egl", "wgl"] }
|
glutin = { version = "0.30", optional = true, default-features = false, features = ["egl", "wgl"] }
|
||||||
glutin-winit = { version = "0.3.0", optional = true, default-features = false, features = ["egl", "wgl"] }
|
glutin-winit = { version = "0.3.0", optional = true, default-features = false, features = ["egl", "wgl"] }
|
||||||
i-slint-renderer-femtovg = { version = "=1.0.0", path = "../../renderers/femtovg", optional = true, features = ["diskfonts"] }
|
i-slint-renderer-femtovg = { version = "=1.0.1", path = "../../renderers/femtovg", optional = true, features = ["diskfonts"] }
|
||||||
|
|
||||||
[target.'cfg(not(any(target_family = "windows", target_os = "macos", target_os = "ios", target_arch = "wasm32")))'.dependencies]
|
[target.'cfg(not(any(target_family = "windows", target_os = "macos", target_os = "ios", target_arch = "wasm32")))'.dependencies]
|
||||||
i-slint-renderer-femtovg = { version = "=1.0.0", path = "../../renderers/femtovg", optional = true, features = ["fontconfig"] }
|
i-slint-renderer-femtovg = { version = "=1.0.1", path = "../../renderers/femtovg", optional = true, features = ["fontconfig"] }
|
||||||
|
|
||||||
[target.'cfg(target_os = "macos")'.dependencies]
|
[target.'cfg(target_os = "macos")'.dependencies]
|
||||||
# For GL rendering
|
# For GL rendering
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "i-slint-common"
|
name = "i-slint-common"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "i-slint-compiler"
|
name = "i-slint-compiler"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
@ -32,7 +32,7 @@ software-renderer = ["image", "dep:resvg", "dep:fontdb", "fontdue", "libc", "yes
|
||||||
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-common = { version = "=1.0.0", path = "../common" }
|
i-slint-common = { version = "=1.0.1", path = "../common" }
|
||||||
|
|
||||||
num_enum = "0.5.1"
|
num_enum = "0.5.1"
|
||||||
strum = { version = "0.24.0", default-features = false, features = ["derive"] }
|
strum = { version = "0.24.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -104,7 +104,7 @@ export component AboutSlint {
|
||||||
min-height: 48px;
|
min-height: 48px;
|
||||||
}
|
}
|
||||||
Text {
|
Text {
|
||||||
text: "Version 1.0.0\nhttps://slint-ui.com/";
|
text: "Version 1.0.1\nhttps://slint-ui.com/";
|
||||||
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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "i-slint-core"
|
name = "i-slint-core"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
|
@ -41,8 +41,8 @@ box-shadow-cache = []
|
||||||
default = ["std", "unicode"]
|
default = ["std", "unicode"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-common = { version = "=1.0.0", path = "../common" }
|
i-slint-common = { version = "=1.0.1", path = "../common" }
|
||||||
i-slint-core-macros = { version = "=1.0.0", path = "../core-macros" }
|
i-slint-core-macros = { version = "=1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
|
@ -78,10 +78,10 @@ renderer-winit-software = ["i-slint-backend-selector/renderer-winit-software"]
|
||||||
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-compiler = { version = "=1.0.0", path = "../compiler" }
|
i-slint-compiler = { version = "=1.0.1", path = "../compiler" }
|
||||||
i-slint-common = { version = "=1.0.0", path = "../common" }
|
i-slint-common = { version = "=1.0.1", path = "../common" }
|
||||||
i-slint-core = { version = "=1.0.0", path = "../core", features = ["rtti"] }
|
i-slint-core = { version = "=1.0.1", path = "../core", features = ["rtti"] }
|
||||||
i-slint-backend-selector = { version = "=1.0.0", path = "../../internal/backends/selector", features = ["rtti"] }
|
i-slint-backend-selector = { version = "=1.0.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" }
|
||||||
|
|
||||||
|
@ -97,7 +97,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.0.0", path = "../../internal/backends/winit" }
|
i-slint-backend-winit = { version = "=1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
|
@ -21,9 +21,9 @@ diskfonts = ["fontdb/memmap", "fontdb/fontconfig"]
|
||||||
fontconfig = ["yeslogic-fontconfig-sys"]
|
fontconfig = ["yeslogic-fontconfig-sys"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-core = { version = "=1.0.0", path = "../../../internal/core", features = [ "box-shadow-cache" ] }
|
i-slint-core = { version = "=1.0.1", path = "../../../internal/core", features = [ "box-shadow-cache" ] }
|
||||||
i-slint-core-macros = { version = "=1.0.0", path = "../../../internal/core-macros" }
|
i-slint-core-macros = { version = "=1.0.1", path = "../../../internal/core-macros" }
|
||||||
i-slint-common = { version = "=1.0.0", path = "../../../internal/common" }
|
i-slint-common = { version = "=1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
|
@ -25,9 +25,9 @@ opengl = ["skia-safe/gl"]
|
||||||
default = []
|
default = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-core = { version = "=1.0.0", path = "../../../internal/core", features = [ "box-shadow-cache" ] }
|
i-slint-core = { version = "=1.0.1", path = "../../../internal/core", features = [ "box-shadow-cache" ] }
|
||||||
i-slint-core-macros = { version = "=1.0.0", path = "../../../internal/core-macros" }
|
i-slint-core-macros = { version = "=1.0.1", path = "../../../internal/core-macros" }
|
||||||
i-slint-common = { version = "=1.0.0", path = "../../../internal/common" }
|
i-slint-common = { version = "=1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "test-driver-cpp"
|
name = "test-driver-cpp"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "test_driver_lib"
|
name = "test_driver_lib"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "test-driver-interpreter"
|
name = "test-driver-interpreter"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "test-driver-nodejs"
|
name = "test-driver-nodejs"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "test-driver-rust"
|
name = "test-driver-rust"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "test-driver-screenshots"
|
name = "test-driver-screenshots"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only 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.0.0", path = "../../internal/core" }
|
i-slint-core = { version = "=1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
|
@ -17,7 +17,7 @@ name = "slint-compiler"
|
||||||
path = "main.rs"
|
path = "main.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-compiler = { version = "=1.0.0", path = "../../internal/compiler", features = ["display-diagnostics", "cpp", "rust"]}
|
i-slint-compiler = { version = "=1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "slint-lsp"
|
name = "slint-lsp"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
|
@ -61,7 +61,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.0.0", path = "../../internal/compiler"}
|
i-slint-compiler = { version = "=1.0.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"] }
|
||||||
|
@ -71,9 +71,9 @@ rowan = "0.15.5"
|
||||||
|
|
||||||
|
|
||||||
# for the preview
|
# for the preview
|
||||||
i-slint-core = { version = "=1.0.0", path = "../../internal/core", optional = true }
|
i-slint-core = { version = "=1.0.1", path = "../../internal/core", optional = true }
|
||||||
slint-interpreter = { version = "=1.0.0", path = "../../internal/interpreter", default-features = false, features = ["compat-1-0", "highlight"], optional = true }
|
slint-interpreter = { version = "=1.0.1", path = "../../internal/interpreter", default-features = false, features = ["compat-1-0", "highlight"], optional = true }
|
||||||
i-slint-backend-selector = { version = "=1.0.0", path="../../internal/backends/selector", optional = true }
|
i-slint-backend-selector = { version = "=1.0.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 lumino dragdrop frsource ",
|
"//": "cSpell: ignore lumino dragdrop frsource ",
|
||||||
"name": "slintpad",
|
"name": "slintpad",
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "slint-updater"
|
name = "slint-updater"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
|
@ -13,7 +13,7 @@ homepage = "https://slint-ui.com"
|
||||||
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
i-slint-compiler = { version = "=1.0.0", path = "../../internal/compiler", features = ["display-diagnostics"] }
|
i-slint-compiler = { version = "=1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
|
||||||
|
@ -34,9 +34,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.0.0", path="../../internal/core" }
|
i-slint-core = { version = "=1.0.1", path="../../internal/core" }
|
||||||
slint-interpreter = { version = "=1.0.0", path = "../../internal/interpreter", default-features = false, features = ["display-diagnostics", "compat-1-0"] }
|
slint-interpreter = { version = "=1.0.1", path = "../../internal/interpreter", default-features = false, features = ["display-diagnostics", "compat-1-0"] }
|
||||||
i-slint-backend-selector = { version = "=1.0.0", path="../../internal/backends/selector" }
|
i-slint-backend-selector = { version = "=1.0.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.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Slint Developers <info@slint-ui.com>"]
|
authors = ["Slint Developers <info@slint-ui.com>"]
|
||||||
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.0.0", path="../internal/common" }
|
i-slint-common = { version = "=1.0.1", path="../internal/common" }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue