diff --git a/Cargo.toml b/Cargo.toml index 9f629db116..5cc72d0e6e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -116,26 +116,26 @@ keywords = ["gui", "toolkit", "graphics", "design", "ui"] license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0" repository = "https://github.com/slint-ui/slint" rust-version = "1.88" -version = "1.14.0" +version = "1.14.1" [workspace.dependencies] -i-slint-backend-android-activity = { version = "=1.14.0", path = "internal/backends/android-activity", default-features = false } -i-slint-backend-linuxkms = { version = "=1.14.0", path = "internal/backends/linuxkms", default-features = false } -i-slint-backend-qt = { version = "=1.14.0", path = "internal/backends/qt", default-features = false } -i-slint-backend-selector = { version = "=1.14.0", path = "internal/backends/selector", default-features = false } -i-slint-backend-testing = { version = "=1.14.0", path = "internal/backends/testing", default-features = false } -i-slint-backend-winit = { version = "=1.14.0", path = "internal/backends/winit", default-features = false } -i-slint-common = { version = "=1.14.0", path = "internal/common", default-features = false } -i-slint-compiler = { version = "=1.14.0", path = "internal/compiler", default-features = false } -i-slint-core = { version = "=1.14.0", path = "internal/core", default-features = false } -i-slint-core-macros = { version = "=1.14.0", path = "internal/core-macros", default-features = false } -i-slint-renderer-femtovg = { version = "=1.14.0", path = "internal/renderers/femtovg", default-features = false } -i-slint-renderer-skia = { version = "=1.14.0", path = "internal/renderers/skia", default-features = false } -slint = { version = "=1.14.0", path = "api/rs/slint", default-features = false } -slint-build = { version = "=1.14.0", path = "api/rs/build", default-features = false } -slint-cpp = { version = "=1.14.0", path = "api/cpp", default-features = false } -slint-interpreter = { version = "=1.14.0", path = "internal/interpreter", default-features = false } -slint-macros = { version = "=1.14.0", path = "api/rs/macros", default-features = false } +i-slint-backend-android-activity = { version = "=1.14.1", path = "internal/backends/android-activity", default-features = false } +i-slint-backend-linuxkms = { version = "=1.14.1", path = "internal/backends/linuxkms", default-features = false } +i-slint-backend-qt = { version = "=1.14.1", path = "internal/backends/qt", default-features = false } +i-slint-backend-selector = { version = "=1.14.1", path = "internal/backends/selector", default-features = false } +i-slint-backend-testing = { version = "=1.14.1", path = "internal/backends/testing", default-features = false } +i-slint-backend-winit = { version = "=1.14.1", path = "internal/backends/winit", default-features = false } +i-slint-common = { version = "=1.14.1", path = "internal/common", default-features = false } +i-slint-compiler = { version = "=1.14.1", path = "internal/compiler", default-features = false } +i-slint-core = { version = "=1.14.1", path = "internal/core", default-features = false } +i-slint-core-macros = { version = "=1.14.1", path = "internal/core-macros", default-features = false } +i-slint-renderer-femtovg = { version = "=1.14.1", path = "internal/renderers/femtovg", default-features = false } +i-slint-renderer-skia = { version = "=1.14.1", path = "internal/renderers/skia", default-features = false } +slint = { version = "=1.14.1", path = "api/rs/slint", default-features = false } +slint-build = { version = "=1.14.1", path = "api/rs/build", default-features = false } +slint-cpp = { version = "=1.14.1", path = "api/cpp", default-features = false } +slint-interpreter = { version = "=1.14.1", path = "internal/interpreter", default-features = false } +slint-macros = { version = "=1.14.1", path = "api/rs/macros", default-features = false } vtable = { version = "0.3", path = "helper_crates/vtable" } diff --git a/api/cpp/CMakeLists.txt b/api/cpp/CMakeLists.txt index 6e98bf81ed..8528920d4a 100644 --- a/api/cpp/CMakeLists.txt +++ b/api/cpp/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.21) # Select C++ and C as languages, as Corrosion needs ${CMAKE_C_COMPILER} # for linking -project(Slint HOMEPAGE_URL "https://slint.dev/" LANGUAGES C CXX VERSION 1.14.0) +project(Slint HOMEPAGE_URL "https://slint.dev/" LANGUAGES C CXX VERSION 1.14.1) include(FeatureSummary) include(CMakeDependentOption) diff --git a/api/cpp/docs/conf.py b/api/cpp/docs/conf.py index 0d7bb707a8..40d229d95b 100644 --- a/api/cpp/docs/conf.py +++ b/api/cpp/docs/conf.py @@ -23,7 +23,7 @@ import json # -- Project information ----------------------------------------------------- # The full version, including alpha/beta/rc tags -version = "1.14.0" +version = "1.14.1" project = f"Slint {version} C++ API" copyright = "SixtyFPS GmbH" diff --git a/api/cpp/esp-idf/slint/CMakeLists.txt b/api/cpp/esp-idf/slint/CMakeLists.txt index 812939f221..5c454cf4b8 100644 --- a/api/cpp/esp-idf/slint/CMakeLists.txt +++ b/api/cpp/esp-idf/slint/CMakeLists.txt @@ -48,7 +48,7 @@ else() FetchContent_Declare( Slint GIT_REPOSITORY https://github.com/slint-ui/slint - GIT_TAG v1.14.0 + GIT_TAG v1.14.1 SOURCE_SUBDIR api/cpp ) FetchContent_MakeAvailable(Slint) diff --git a/api/cpp/esp-idf/slint/idf_component.yml b/api/cpp/esp-idf/slint/idf_component.yml index ed87c6d25b..6bb2894d55 100644 --- a/api/cpp/esp-idf/slint/idf_component.yml +++ b/api/cpp/esp-idf/slint/idf_component.yml @@ -4,7 +4,7 @@ description: "Slint — declarative GUI toolkit" url: "https://slint.dev" license: "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0" -version: "1.14.0" +version: "1.14.1" discussion: "https://github.com/slint-ui/slint/discussions" documentation: "https://slint.dev/docs" repository: "https://github.com/slint-ui/slint" diff --git a/api/node/binaries.json b/api/node/binaries.json index 455df43b22..ffb909c877 100644 --- a/api/node/binaries.json +++ b/api/node/binaries.json @@ -1,6 +1,6 @@ { "name": "@slint-ui/slint-ui-binary", - "version": "1.14.0", + "version": "1.14.1", "binaryName": "slint-ui", "package": "@slint-ui/slint-ui-binary", "napi": { diff --git a/api/node/package.json b/api/node/package.json index e3b4110de2..00b6658cd5 100644 --- a/api/node/package.json +++ b/api/node/package.json @@ -1,6 +1,6 @@ { "name": "slint-ui", - "version": "1.14.0", + "version": "1.14.1", "main": "dist/index.js", "types": "dist/index.d.ts", "homepage": "https://github.com/slint-ui/slint", diff --git a/api/python/briefcase/pyproject.toml b/api/python/briefcase/pyproject.toml index a214973b03..7122519465 100644 --- a/api/python/briefcase/pyproject.toml +++ b/api/python/briefcase/pyproject.toml @@ -3,7 +3,7 @@ [project] name = "briefcasex-slint" -version = "1.14.0b1" +version = "1.14.1b1" description = "Plugin for Briefcase to offer Slint application templates" readme = "README.md" requires-python = ">=3.10" diff --git a/api/python/compiler/pyproject.toml b/api/python/compiler/pyproject.toml index 8fb70cbabb..b850979ed8 100644 --- a/api/python/compiler/pyproject.toml +++ b/api/python/compiler/pyproject.toml @@ -3,7 +3,7 @@ [project] name = "slint-compiler" -version = "1.14.0b1" +version = "1.14.1b1" description = "Python wrapper around the Slint compiler for Python" authors = [{ name = "Slint Team", email = "info@slint.dev" }] readme = "README.md" diff --git a/api/python/slint/pyproject.toml b/api/python/slint/pyproject.toml index 1239be78df..244b10053d 100644 --- a/api/python/slint/pyproject.toml +++ b/api/python/slint/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "maturin" [project] name = "slint" -version = "1.14.0b1" +version = "1.14.1b1" requires-python = ">= 3.12" authors = [{ name = "Slint Team", email = "info@slint.dev" }] classifiers = [ diff --git a/api/rs/slint/lib.rs b/api/rs/slint/lib.rs index c6b63070fa..8cf5e0a57c 100644 --- a/api/rs/slint/lib.rs +++ b/api/rs/slint/lib.rs @@ -435,7 +435,7 @@ pub use i_slint_backend_selector::api::*; /// Helper type that helps checking that the generated code is generated for the right version #[doc(hidden)] #[allow(non_camel_case_types)] -pub struct VersionCheck_1_14_0; +pub struct VersionCheck_1_14_1; #[cfg(doctest)] mod compile_fail_tests; diff --git a/demos/energy-monitor/Cargo.toml b/demos/energy-monitor/Cargo.toml index 284020c15b..e230a0c0be 100644 --- a/demos/energy-monitor/Cargo.toml +++ b/demos/energy-monitor/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "energy-monitor" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/demos/home-automation/node/package.json b/demos/home-automation/node/package.json index f4a3554ed3..28623cc321 100644 --- a/demos/home-automation/node/package.json +++ b/demos/home-automation/node/package.json @@ -1,6 +1,6 @@ { "name": "home_automation", - "version": "1.14.0", + "version": "1.14.1", "main": "main.js", "type": "module", "dependencies": { diff --git a/demos/home-automation/rust/Cargo.toml b/demos/home-automation/rust/Cargo.toml index d27120a3f7..fc2434fa72 100644 --- a/demos/home-automation/rust/Cargo.toml +++ b/demos/home-automation/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "home-automation" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/demos/printerdemo/node/package.json b/demos/printerdemo/node/package.json index c71635ad93..73377b9f80 100644 --- a/demos/printerdemo/node/package.json +++ b/demos/printerdemo/node/package.json @@ -1,6 +1,6 @@ { "name": "printerdemo", - "version": "1.14.0", + "version": "1.14.1", "main": "main.js", "type": "module", "dependencies": { diff --git a/demos/printerdemo/rust/Cargo.toml b/demos/printerdemo/rust/Cargo.toml index f29bd35198..5c5867e9ee 100644 --- a/demos/printerdemo/rust/Cargo.toml +++ b/demos/printerdemo/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "printerdemo" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/demos/printerdemo_mcu/Cargo.toml b/demos/printerdemo_mcu/Cargo.toml index d492dce4d4..ab0c298e0a 100644 --- a/demos/printerdemo_mcu/Cargo.toml +++ b/demos/printerdemo_mcu/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "printerdemo_mcu" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/demos/usecases/rust/Cargo.toml b/demos/usecases/rust/Cargo.toml index 312780b54a..baa3811f53 100644 --- a/demos/usecases/rust/Cargo.toml +++ b/demos/usecases/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "usecases" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/demos/weather-demo/Cargo.toml b/demos/weather-demo/Cargo.toml index f0517713b6..cef6eae6d9 100644 --- a/demos/weather-demo/Cargo.toml +++ b/demos/weather-demo/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "weather-demo" -version = "1.14.0" +version = "1.14.1" authors = ["FELGO GmbH "] edition = "2021" build = "build.rs" diff --git a/docs/astro/package.json b/docs/astro/package.json index 4f7bf443df..7e1c71bb03 100644 --- a/docs/astro/package.json +++ b/docs/astro/package.json @@ -1,7 +1,7 @@ { "name": "slint-docs", "type": "module", - "version": "1.14.0", + "version": "1.14.1", "scripts": { "dev": "astro dev", "start": "astro dev", diff --git a/docs/astro/src/components/editor/package.json b/docs/astro/src/components/editor/package.json index bc58823755..baf0ecdf3c 100644 --- a/docs/astro/src/components/editor/package.json +++ b/docs/astro/src/components/editor/package.json @@ -1,6 +1,6 @@ { "name": "slint-docs", - "version": "1.14.0", + "version": "1.14.1", "type": "module", "scripts": { "build": "rollup -c", diff --git a/docs/astro/src/content/code/Cargo.toml b/docs/astro/src/content/code/Cargo.toml index da13474bc9..77a8670cdc 100644 --- a/docs/astro/src/content/code/Cargo.toml +++ b/docs/astro/src/content/code/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "src" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" license = "MIT" diff --git a/docs/astro/src/content/code/package.json b/docs/astro/src/content/code/package.json index b46e92effc..e4eca7930f 100644 --- a/docs/astro/src/content/code/package.json +++ b/docs/astro/src/content/code/package.json @@ -1,6 +1,6 @@ { "name": "memory", - "version": "1.14.0", + "version": "1.14.1", "main": "main.js", "type": "module", "dependencies": { diff --git a/docs/common/package.json b/docs/common/package.json index bdb2f59733..aab87aa8c9 100644 --- a/docs/common/package.json +++ b/docs/common/package.json @@ -1,6 +1,6 @@ { "name": "@slint/common-files", - "version": "1.14.0", + "version": "1.14.1", "type": "module", "scripts": { "format": "biome format", diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 266df7fc34..a3dfb662e9 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -11,7 +11,7 @@ "live preview", "drag-and-drop editor" ], - "version": "1.14.0", + "version": "1.14.1", "publisher": "Slint", "icon": "extension-logo.png", "license": "GPL-3.0", diff --git a/editors/zed/Cargo.toml b/editors/zed/Cargo.toml index 88272996c3..183afe063d 100644 --- a/editors/zed/Cargo.toml +++ b/editors/zed/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "zed_slint" -version = "1.14.0" +version = "1.14.1" edition = "2021" publish = false license = "GPL-3.0-or-later" diff --git a/editors/zed/extension.toml b/editors/zed/extension.toml index 2e45037dcc..40ceef2029 100644 --- a/editors/zed/extension.toml +++ b/editors/zed/extension.toml @@ -4,7 +4,7 @@ id = "slint" name = "Slint" description = "Slint support for Zed" -version = "1.14.0" +version = "1.14.1" schema_version = 1 authors = ["Slint Developers ", "Luke. D Jones "] repository = "https://github.com/slint-ui/slint" diff --git a/examples/7guis/Cargo.toml b/examples/7guis/Cargo.toml index 554460f71f..7489146df0 100644 --- a/examples/7guis/Cargo.toml +++ b/examples/7guis/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "_7guis" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/bevy/Cargo.toml b/examples/bevy/Cargo.toml index c5b1d2ff06..5e9c6c6a78 100644 --- a/examples/bevy/Cargo.toml +++ b/examples/bevy/Cargo.toml @@ -7,7 +7,7 @@ [package] name = "bevy-example" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/carousel/node/package.json b/examples/carousel/node/package.json index ffad65e3b5..98da0916f6 100644 --- a/examples/carousel/node/package.json +++ b/examples/carousel/node/package.json @@ -1,6 +1,6 @@ { "name": "carousel", - "version": "1.14.0", + "version": "1.14.1", "main": "main.js", "type": "module", "dependencies": { diff --git a/examples/carousel/rust/Cargo.toml b/examples/carousel/rust/Cargo.toml index 4110ddbf88..73bf59484b 100644 --- a/examples/carousel/rust/Cargo.toml +++ b/examples/carousel/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "carousel" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/ffmpeg/Cargo.toml b/examples/ffmpeg/Cargo.toml index 40a8142b79..3a271027b1 100644 --- a/examples/ffmpeg/Cargo.toml +++ b/examples/ffmpeg/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "ffmpeg" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/gallery/Cargo.toml b/examples/gallery/Cargo.toml index 05d703d50a..09c022c549 100644 --- a/examples/gallery/Cargo.toml +++ b/examples/gallery/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "gallery" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/gstreamer-player/Cargo.toml b/examples/gstreamer-player/Cargo.toml index b2478b8428..5d4b776066 100644 --- a/examples/gstreamer-player/Cargo.toml +++ b/examples/gstreamer-player/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "gstreamer-player" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/imagefilter/node/package.json b/examples/imagefilter/node/package.json index daa2743428..c982fe0df8 100644 --- a/examples/imagefilter/node/package.json +++ b/examples/imagefilter/node/package.json @@ -1,6 +1,6 @@ { "name": "imagefilter", - "version": "1.14.0", + "version": "1.14.1", "main": "main.js", "type": "module", "dependencies": { diff --git a/examples/imagefilter/rust/Cargo.toml b/examples/imagefilter/rust/Cargo.toml index fb6333532f..0506e58cbc 100644 --- a/examples/imagefilter/rust/Cargo.toml +++ b/examples/imagefilter/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "imagefilter" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/maps/Cargo.toml b/examples/maps/Cargo.toml index c917f78b28..7517fa322f 100644 --- a/examples/maps/Cargo.toml +++ b/examples/maps/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "maps" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" license = "MIT" diff --git a/examples/mcu-board-support/Cargo.toml b/examples/mcu-board-support/Cargo.toml index f6e2ba3633..b97fc33e9f 100644 --- a/examples/mcu-board-support/Cargo.toml +++ b/examples/mcu-board-support/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "mcu-board-support" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" license = "MIT" @@ -196,9 +196,9 @@ stm32u5g9j-dk2 = [ ] [dependencies] -slint = { version = "=1.14.0", path = "../../api/rs/slint", default-features = false, features = ["compat-1-2", "renderer-software"] } +slint = { version = "=1.14.1", path = "../../api/rs/slint", default-features = false, features = ["compat-1-2", "renderer-software"] } i-slint-core = { workspace = true } -i-slint-core-macros = { version = "=1.14.0", path = "../../internal/core-macros" } +i-slint-core-macros = { version = "=1.14.1", path = "../../internal/core-macros" } derive_more = { workspace = true } embedded-graphics = { version = "0.8", optional = true } diff --git a/examples/mcu-embassy/Cargo.toml b/examples/mcu-embassy/Cargo.toml index d3a7a7596a..1199bca4ca 100644 --- a/examples/mcu-embassy/Cargo.toml +++ b/examples/mcu-embassy/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "mcu-embassy" -version = "1.14.0" +version = "1.14.1" edition = "2021" authors = ["David Haig "] readme = "README.md" diff --git a/examples/mcu-embassy/slint_generated/Cargo.toml b/examples/mcu-embassy/slint_generated/Cargo.toml index be04af94a4..9f450524b0 100644 --- a/examples/mcu-embassy/slint_generated/Cargo.toml +++ b/examples/mcu-embassy/slint_generated/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slint-generated" -version = "1.14.0" +version = "1.14.1" edition = "2021" build = "build.rs" authors = ["David Haig "] diff --git a/examples/memory/Cargo.toml b/examples/memory/Cargo.toml index df8a92766d..63a173c668 100644 --- a/examples/memory/Cargo.toml +++ b/examples/memory/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "memory" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/memory/package.json b/examples/memory/package.json index 18cab1b5b4..f2357d3f2d 100644 --- a/examples/memory/package.json +++ b/examples/memory/package.json @@ -1,6 +1,6 @@ { "name": "memory", - "version": "1.14.0", + "version": "1.14.1", "main": "main.js", "type": "module", "dependencies": { diff --git a/examples/opengl_texture/Cargo.toml b/examples/opengl_texture/Cargo.toml index cef584d438..be02257653 100644 --- a/examples/opengl_texture/Cargo.toml +++ b/examples/opengl_texture/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "opengl_texture" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/opengl_underlay/Cargo.toml b/examples/opengl_underlay/Cargo.toml index 2042143263..7dca382d3f 100644 --- a/examples/opengl_underlay/Cargo.toml +++ b/examples/opengl_underlay/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "opengl_underlay" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/plotter/Cargo.toml b/examples/plotter/Cargo.toml index 7f580e3299..618d005a48 100644 --- a/examples/plotter/Cargo.toml +++ b/examples/plotter/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "plotter" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/slide_puzzle/Cargo.toml b/examples/slide_puzzle/Cargo.toml index d1fc6a2fe8..e9b89d21e7 100644 --- a/examples/slide_puzzle/Cargo.toml +++ b/examples/slide_puzzle/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slide_puzzle" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/speedometer/rust/Cargo.toml b/examples/speedometer/rust/Cargo.toml index 1e10ff3db1..b274f49d55 100644 --- a/examples/speedometer/rust/Cargo.toml +++ b/examples/speedometer/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "speedometer" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/todo-mvc/rust/Cargo.toml b/examples/todo-mvc/rust/Cargo.toml index b2cc78eb02..c784461b01 100644 --- a/examples/todo-mvc/rust/Cargo.toml +++ b/examples/todo-mvc/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "todo-mvc" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/todo/node/package.json b/examples/todo/node/package.json index d362179c48..29c5f7355c 100644 --- a/examples/todo/node/package.json +++ b/examples/todo/node/package.json @@ -1,6 +1,6 @@ { "name": "todo", - "version": "1.14.0", + "version": "1.14.1", "main": "main.js", "type": "module", "dependencies": { diff --git a/examples/todo/rust/Cargo.toml b/examples/todo/rust/Cargo.toml index 02c81e4a50..fddace1a07 100644 --- a/examples/todo/rust/Cargo.toml +++ b/examples/todo/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "todo" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/uefi-demo/Cargo.toml b/examples/uefi-demo/Cargo.toml index 4d3c51fb1d..5d8c6b26a3 100644 --- a/examples/uefi-demo/Cargo.toml +++ b/examples/uefi-demo/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "uefi-demo" -version = "1.14.0" +version = "1.14.1" edition = "2021" license = "MIT" build = "build.rs" diff --git a/examples/virtual_keyboard/rust/Cargo.toml b/examples/virtual_keyboard/rust/Cargo.toml index a3aa557dba..301544a139 100644 --- a/examples/virtual_keyboard/rust/Cargo.toml +++ b/examples/virtual_keyboard/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "virtual_keyboard" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/wgpu_texture/Cargo.toml b/examples/wgpu_texture/Cargo.toml index 42bee3648f..94a0367fdf 100644 --- a/examples/wgpu_texture/Cargo.toml +++ b/examples/wgpu_texture/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "wgpu_texture" -version = "1.14.0" +version = "1.14.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/internal/compiler/widgets/common/about-slint.slint b/internal/compiler/widgets/common/about-slint.slint index f3e4946631..9baaf8430a 100644 --- a/internal/compiler/widgets/common/about-slint.slint +++ b/internal/compiler/widgets/common/about-slint.slint @@ -22,7 +22,7 @@ export component AboutSlint { } Text { - text: "Version 1.14.0\nhttps://slint.dev/"; + text: "Version 1.14.1\nhttps://slint.dev/"; font-size: 10px; horizontal-alignment: center; } diff --git a/package.json b/package.json index b1e8607ef0..2aa3943093 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "slint_repository", - "version": "1.14.0", + "version": "1.14.1", "description": "", "main": "index.js", "scripts": { diff --git a/tests/manual/module-builds/app/Cargo.toml b/tests/manual/module-builds/app/Cargo.toml index 9285037a97..fac93d2b3f 100644 --- a/tests/manual/module-builds/app/Cargo.toml +++ b/tests/manual/module-builds/app/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "bapp" -version = "0.1.0" +version = "1.14.1" edition = "2021" authors = ["Slint Developers "] publish = false diff --git a/tests/manual/windowattributes/Cargo.toml b/tests/manual/windowattributes/Cargo.toml index 88710a89c8..0a5b07907d 100644 --- a/tests/manual/windowattributes/Cargo.toml +++ b/tests/manual/windowattributes/Cargo.toml @@ -20,4 +20,4 @@ name = "windowattributes" path = "main.rs" [dependencies] -slint = { version = "=1.14.0", path = "../../../api/rs/slint" } +slint = { version = "=1.14.1", path = "../../../api/rs/slint" } diff --git a/tools/figma-inspector/package.json b/tools/figma-inspector/package.json index cc703ac230..5ddd7937d7 100644 --- a/tools/figma-inspector/package.json +++ b/tools/figma-inspector/package.json @@ -1,7 +1,7 @@ { "name": "slint.figma.plugin", "private": true, - "version": "1.14.0", + "version": "1.14.1", "type": "module", "scripts": { "dev": "vite build --watch --mode dev", diff --git a/tools/lsp/Cargo.toml b/tools/lsp/Cargo.toml index 64afdf68a2..427a492fc1 100644 --- a/tools/lsp/Cargo.toml +++ b/tools/lsp/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://slint.dev" license.workspace = true repository.workspace = true rust-version.workspace = true -version = "1.14.0" +version = "1.14.1" categories = ["gui", "development-tools", "command-line-utilities"] keywords = ["lsp", "ui", "toolkit"] diff --git a/tools/slintpad/package.json b/tools/slintpad/package.json index f9f1300f0c..74cde3d248 100644 --- a/tools/slintpad/package.json +++ b/tools/slintpad/package.json @@ -1,7 +1,7 @@ { "//": "cSpell: ignore codingame dragdrop femtovg frsource lumino treemended quickaccess ", "name": "slintpad", - "version": "1.14.0", + "version": "1.14.1", "description": "", "main": "index.js", "scripts": { diff --git a/ui-libraries/material/docs/package.json b/ui-libraries/material/docs/package.json index bed74f6987..a2d0c53ac6 100644 --- a/ui-libraries/material/docs/package.json +++ b/ui-libraries/material/docs/package.json @@ -1,7 +1,7 @@ { "name": "slint-docs", "type": "module", - "version": "1.11.0", + "version": "1.14.1", "scripts": { "dev": "astro dev", "start": "astro dev", diff --git a/ui-libraries/material/docs/src/components/editor/package.json b/ui-libraries/material/docs/src/components/editor/package.json index 720259bd5c..d1cd8f86f7 100644 --- a/ui-libraries/material/docs/src/components/editor/package.json +++ b/ui-libraries/material/docs/src/components/editor/package.json @@ -1,6 +1,6 @@ { "name": "slint-docs", - "version": "1.11.0", + "version": "1.14.1", "type": "module", "scripts": { "build": "rollup -c",