diff --git a/Cargo.toml b/Cargo.toml index f6baf71a5..905448398 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -110,26 +110,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.85" -version = "1.13.0" +version = "1.13.1" [workspace.dependencies] -i-slint-backend-android-activity = { version = "=1.13.0", path = "internal/backends/android-activity", default-features = false } -i-slint-backend-linuxkms = { version = "=1.13.0", path = "internal/backends/linuxkms", default-features = false } -i-slint-backend-qt = { version = "=1.13.0", path = "internal/backends/qt", default-features = false } -i-slint-backend-selector = { version = "=1.13.0", path = "internal/backends/selector", default-features = false } -i-slint-backend-testing = { version = "=1.13.0", path = "internal/backends/testing", default-features = false } -i-slint-backend-winit = { version = "=1.13.0", path = "internal/backends/winit", default-features = false } -i-slint-common = { version = "=1.13.0", path = "internal/common", default-features = false } -i-slint-compiler = { version = "=1.13.0", path = "internal/compiler", default-features = false } -i-slint-core = { version = "=1.13.0", path = "internal/core", default-features = false } -i-slint-core-macros = { version = "=1.13.0", path = "internal/core-macros", default-features = false } -i-slint-renderer-femtovg = { version = "=1.13.0", path = "internal/renderers/femtovg", default-features = false } -i-slint-renderer-skia = { version = "=1.13.0", path = "internal/renderers/skia", default-features = false } -slint = { version = "=1.13.0", path = "api/rs/slint", default-features = false } -slint-build = { version = "=1.13.0", path = "api/rs/build", default-features = false } -slint-cpp = { version = "=1.13.0", path = "api/cpp", default-features = false } -slint-interpreter = { version = "=1.13.0", path = "internal/interpreter", default-features = false } -slint-macros = { version = "=1.13.0", path = "api/rs/macros", default-features = false } +i-slint-backend-android-activity = { version = "=1.13.1", path = "internal/backends/android-activity", default-features = false } +i-slint-backend-linuxkms = { version = "=1.13.1", path = "internal/backends/linuxkms", default-features = false } +i-slint-backend-qt = { version = "=1.13.1", path = "internal/backends/qt", default-features = false } +i-slint-backend-selector = { version = "=1.13.1", path = "internal/backends/selector", default-features = false } +i-slint-backend-testing = { version = "=1.13.1", path = "internal/backends/testing", default-features = false } +i-slint-backend-winit = { version = "=1.13.1", path = "internal/backends/winit", default-features = false } +i-slint-common = { version = "=1.13.1", path = "internal/common", default-features = false } +i-slint-compiler = { version = "=1.13.1", path = "internal/compiler", default-features = false } +i-slint-core = { version = "=1.13.1", path = "internal/core", default-features = false } +i-slint-core-macros = { version = "=1.13.1", path = "internal/core-macros", default-features = false } +i-slint-renderer-femtovg = { version = "=1.13.1", path = "internal/renderers/femtovg", default-features = false } +i-slint-renderer-skia = { version = "=1.13.1", path = "internal/renderers/skia", default-features = false } +slint = { version = "=1.13.1", path = "api/rs/slint", default-features = false } +slint-build = { version = "=1.13.1", path = "api/rs/build", default-features = false } +slint-cpp = { version = "=1.13.1", path = "api/cpp", default-features = false } +slint-interpreter = { version = "=1.13.1", path = "internal/interpreter", default-features = false } +slint-macros = { version = "=1.13.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 b64b5f1d8..65ee80d89 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.13.0) +project(Slint HOMEPAGE_URL "https://slint.dev/" LANGUAGES C CXX VERSION 1.13.1) include(FeatureSummary) include(CMakeDependentOption) diff --git a/api/cpp/docs/conf.py b/api/cpp/docs/conf.py index 64d9134ca..5e702bec7 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.13.0" +version = "1.13.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 fac272896..7fd6ac22b 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.13.0 + GIT_TAG v1.13.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 083d0bd3b..6c15acbb1 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.13.0" +version: "1.13.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 4a39d95af..8216d45e4 100644 --- a/api/node/binaries.json +++ b/api/node/binaries.json @@ -1,6 +1,6 @@ { "name": "@slint-ui/slint-ui-binary", - "version": "1.13.0", + "version": "1.13.1", "binaryName": "slint-ui", "package": "@slint-ui/slint-ui-binary", "napi": { diff --git a/api/node/package.json b/api/node/package.json index 938a28223..b175bce03 100644 --- a/api/node/package.json +++ b/api/node/package.json @@ -1,6 +1,6 @@ { "name": "slint-ui", - "version": "1.13.0", + "version": "1.13.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 2f0d6c6ee..73fcf7103 100644 --- a/api/python/briefcase/pyproject.toml +++ b/api/python/briefcase/pyproject.toml @@ -3,7 +3,7 @@ [project] name = "briefcasex-slint" -version = "1.13.0b1" +version = "1.13.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 34b86d49c..17e8de62e 100644 --- a/api/python/compiler/pyproject.toml +++ b/api/python/compiler/pyproject.toml @@ -3,7 +3,7 @@ [project] name = "slint-compiler" -version = "1.13.0b1" +version = "1.13.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 489e3e6e3..e35a0a972 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.13.0b1" +version = "1.13.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 c2fce3ac2..b9b313cd7 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_13_0; +pub struct VersionCheck_1_13_1; #[cfg(doctest)] mod compile_fail_tests; diff --git a/demos/energy-monitor/Cargo.toml b/demos/energy-monitor/Cargo.toml index 387bf14fa..fbbe32d11 100644 --- a/demos/energy-monitor/Cargo.toml +++ b/demos/energy-monitor/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "energy-monitor" -version = "1.13.0" +version = "1.13.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 658262778..7ae521cd2 100644 --- a/demos/home-automation/node/package.json +++ b/demos/home-automation/node/package.json @@ -1,6 +1,6 @@ { "name": "home_automation", - "version": "1.13.0", + "version": "1.13.1", "main": "main.js", "type": "module", "dependencies": { diff --git a/demos/home-automation/rust/Cargo.toml b/demos/home-automation/rust/Cargo.toml index ca61f0b03..6e4fafdbf 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.13.0" +version = "1.13.1" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/demos/printerdemo/node/package.json b/demos/printerdemo/node/package.json index a6ac5daff..9dbad90e9 100644 --- a/demos/printerdemo/node/package.json +++ b/demos/printerdemo/node/package.json @@ -1,6 +1,6 @@ { "name": "printerdemo", - "version": "1.13.0", + "version": "1.13.1", "main": "main.js", "type": "module", "dependencies": { diff --git a/demos/printerdemo/rust/Cargo.toml b/demos/printerdemo/rust/Cargo.toml index f49052cf5..2eebe996f 100644 --- a/demos/printerdemo/rust/Cargo.toml +++ b/demos/printerdemo/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "printerdemo" -version = "1.13.0" +version = "1.13.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/demos/printerdemo_mcu/Cargo.toml b/demos/printerdemo_mcu/Cargo.toml index ed2dd02c0..23f2048ad 100644 --- a/demos/printerdemo_mcu/Cargo.toml +++ b/demos/printerdemo_mcu/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "printerdemo_mcu" -version = "1.13.0" +version = "1.13.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/demos/usecases/rust/Cargo.toml b/demos/usecases/rust/Cargo.toml index eec2e9146..bdb4d14d3 100644 --- a/demos/usecases/rust/Cargo.toml +++ b/demos/usecases/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "usecases" -version = "1.13.0" +version = "1.13.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/demos/weather-demo/Cargo.toml b/demos/weather-demo/Cargo.toml index d7423744a..26ac37f35 100644 --- a/demos/weather-demo/Cargo.toml +++ b/demos/weather-demo/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "weather-demo" -version = "1.13.0" +version = "1.13.1" authors = ["FELGO GmbH "] edition = "2021" build = "build.rs" diff --git a/docs/astro/package.json b/docs/astro/package.json index 92b45e376..58291950d 100644 --- a/docs/astro/package.json +++ b/docs/astro/package.json @@ -1,7 +1,7 @@ { "name": "slint-docs", "type": "module", - "version": "1.13.0", + "version": "1.13.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 1b3ed532d..8390054e6 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.13.0", + "version": "1.13.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 1bfb672ae..2804a01c6 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.13.0" +version = "1.13.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 1d5eaecfc..1bf17a349 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.13.0", + "version": "1.13.1", "main": "main.js", "type": "module", "dependencies": { diff --git a/docs/common/package.json b/docs/common/package.json index c7f7e394e..beb662476 100644 --- a/docs/common/package.json +++ b/docs/common/package.json @@ -1,6 +1,6 @@ { "name": "@slint/common-files", - "version": "0.1.0", + "version": "1.13.1", "type": "module", "scripts": { "format": "biome format", diff --git a/editors/vscode/package.json b/editors/vscode/package.json index ebf87f3df..7aa84bffc 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -11,7 +11,7 @@ "live preview", "drag-and-drop editor" ], - "version": "1.13.0", + "version": "1.13.1", "publisher": "Slint", "icon": "extension-logo.png", "license": "GPL-3.0", diff --git a/editors/zed/Cargo.toml b/editors/zed/Cargo.toml index 719a7dbd6..52f51f5f1 100644 --- a/editors/zed/Cargo.toml +++ b/editors/zed/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "zed_slint" -version = "1.13.0" +version = "1.13.1" edition = "2021" publish = false license = "GPL-3.0-or-later" diff --git a/editors/zed/extension.toml b/editors/zed/extension.toml index 33c0a165a..2f3aab1f4 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.13.0" +version = "1.13.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 c87e26fc6..6dd1b4ed5 100644 --- a/examples/7guis/Cargo.toml +++ b/examples/7guis/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "_7guis" -version = "1.13.0" +version = "1.13.1" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/bevy/Cargo.toml b/examples/bevy/Cargo.toml index 5bc8f1c71..31954aca6 100644 --- a/examples/bevy/Cargo.toml +++ b/examples/bevy/Cargo.toml @@ -7,7 +7,7 @@ [package] name = "bevy-example" -version = "1.13.0" +version = "1.13.1" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/carousel/node/package.json b/examples/carousel/node/package.json index eacdcba31..78aea3379 100644 --- a/examples/carousel/node/package.json +++ b/examples/carousel/node/package.json @@ -1,6 +1,6 @@ { "name": "carousel", - "version": "1.13.0", + "version": "1.13.1", "main": "main.js", "type": "module", "dependencies": { diff --git a/examples/carousel/rust/Cargo.toml b/examples/carousel/rust/Cargo.toml index 47dd66e32..6768393f5 100644 --- a/examples/carousel/rust/Cargo.toml +++ b/examples/carousel/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "carousel" -version = "1.13.0" +version = "1.13.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/ffmpeg/Cargo.toml b/examples/ffmpeg/Cargo.toml index 2860bd4e4..82e563176 100644 --- a/examples/ffmpeg/Cargo.toml +++ b/examples/ffmpeg/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "ffmpeg" -version = "1.13.0" +version = "1.13.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/gallery/Cargo.toml b/examples/gallery/Cargo.toml index 12179ddb7..29eae15fa 100644 --- a/examples/gallery/Cargo.toml +++ b/examples/gallery/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "gallery" -version = "1.13.0" +version = "1.13.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/gstreamer-player/Cargo.toml b/examples/gstreamer-player/Cargo.toml index 6c7681aee..1346b2a84 100644 --- a/examples/gstreamer-player/Cargo.toml +++ b/examples/gstreamer-player/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "gstreamer-player" -version = "1.13.0" +version = "1.13.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/imagefilter/node/package.json b/examples/imagefilter/node/package.json index 6048eedcd..e1ee682c8 100644 --- a/examples/imagefilter/node/package.json +++ b/examples/imagefilter/node/package.json @@ -1,6 +1,6 @@ { "name": "imagefilter", - "version": "1.13.0", + "version": "1.13.1", "main": "main.js", "type": "module", "dependencies": { diff --git a/examples/imagefilter/rust/Cargo.toml b/examples/imagefilter/rust/Cargo.toml index 477d99904..b4f69245c 100644 --- a/examples/imagefilter/rust/Cargo.toml +++ b/examples/imagefilter/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "imagefilter" -version = "1.13.0" +version = "1.13.1" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/maps/Cargo.toml b/examples/maps/Cargo.toml index 406eaa572..cfe0b7e6c 100644 --- a/examples/maps/Cargo.toml +++ b/examples/maps/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "maps" -version = "1.13.0" +version = "1.13.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 97182ac00..0dc8d3b3d 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.13.0" +version = "1.13.1" authors = ["Slint Developers "] edition = "2021" license = "MIT" @@ -195,9 +195,9 @@ stm32u5g9j-dk2 = [ ] [dependencies] -slint = { version = "=1.13.0", path = "../../api/rs/slint", default-features = false, features = ["compat-1-2", "renderer-software"] } +slint = { version = "=1.13.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.13.0", path = "../../internal/core-macros" } +i-slint-core-macros = { version = "=1.13.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 879a2249c..6a65b1440 100644 --- a/examples/mcu-embassy/Cargo.toml +++ b/examples/mcu-embassy/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "mcu-embassy" -version = "1.13.0" +version = "1.13.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 98861da7f..7fa2435e7 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.13.0" +version = "1.13.1" edition = "2021" build = "build.rs" authors = ["David Haig "] diff --git a/examples/memory/Cargo.toml b/examples/memory/Cargo.toml index 90e9f3805..152b22da0 100644 --- a/examples/memory/Cargo.toml +++ b/examples/memory/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "memory" -version = "1.13.0" +version = "1.13.1" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/memory/package.json b/examples/memory/package.json index d3edd1cbf..36999bc1f 100644 --- a/examples/memory/package.json +++ b/examples/memory/package.json @@ -1,6 +1,6 @@ { "name": "memory", - "version": "1.13.0", + "version": "1.13.1", "main": "main.js", "type": "module", "dependencies": { diff --git a/examples/opengl_texture/Cargo.toml b/examples/opengl_texture/Cargo.toml index fd2924565..df072ce2c 100644 --- a/examples/opengl_texture/Cargo.toml +++ b/examples/opengl_texture/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "opengl_texture" -version = "1.13.0" +version = "1.13.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/opengl_underlay/Cargo.toml b/examples/opengl_underlay/Cargo.toml index 83a6b4f80..6dff2f358 100644 --- a/examples/opengl_underlay/Cargo.toml +++ b/examples/opengl_underlay/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "opengl_underlay" -version = "1.13.0" +version = "1.13.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/plotter/Cargo.toml b/examples/plotter/Cargo.toml index 48dbe36e9..32f9abdf1 100644 --- a/examples/plotter/Cargo.toml +++ b/examples/plotter/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "plotter" -version = "1.13.0" +version = "1.13.1" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/slide_puzzle/Cargo.toml b/examples/slide_puzzle/Cargo.toml index a947997bd..e2f133de1 100644 --- a/examples/slide_puzzle/Cargo.toml +++ b/examples/slide_puzzle/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slide_puzzle" -version = "1.13.0" +version = "1.13.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 a8d469385..a26ca9cdb 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.13.0" +version = "1.13.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/todo/node/package.json b/examples/todo/node/package.json index ceb555b48..b0a6c03e8 100644 --- a/examples/todo/node/package.json +++ b/examples/todo/node/package.json @@ -1,6 +1,6 @@ { "name": "todo", - "version": "1.13.0", + "version": "1.13.1", "main": "main.js", "type": "module", "dependencies": { diff --git a/examples/todo/rust/Cargo.toml b/examples/todo/rust/Cargo.toml index ab915eda6..af4f3ac2a 100644 --- a/examples/todo/rust/Cargo.toml +++ b/examples/todo/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "todo" -version = "1.13.0" +version = "1.13.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/uefi-demo/Cargo.toml b/examples/uefi-demo/Cargo.toml index 7d46a9b69..d912a01ba 100644 --- a/examples/uefi-demo/Cargo.toml +++ b/examples/uefi-demo/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "uefi-demo" -version = "1.13.0" +version = "1.13.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 9f2c386db..2f5411c01 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.13.0" +version = "1.13.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/wgpu_texture/Cargo.toml b/examples/wgpu_texture/Cargo.toml index 568004c38..8c7f60f74 100644 --- a/examples/wgpu_texture/Cargo.toml +++ b/examples/wgpu_texture/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "wgpu_texture" -version = "1.13.0" +version = "1.13.1" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/internal/backends/winit/Cargo.toml b/internal/backends/winit/Cargo.toml index 98e2a2f09..66ccd5708 100644 --- a/internal/backends/winit/Cargo.toml +++ b/internal/backends/winit/Cargo.toml @@ -119,7 +119,7 @@ objc2-app-kit = { version = "0.3.0" } i-slint-renderer-skia = { workspace = true, features = ["default"] } [target.'cfg(target_os = "windows")'.dependencies.windows] -version = "0.61.1" +version = "1.13.1" features = ["Win32_UI_WindowsAndMessaging"] [build-dependencies] diff --git a/internal/compiler/widgets/common/about-slint.slint b/internal/compiler/widgets/common/about-slint.slint index 440f1ca63..3ead6723b 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.13.0\nhttps://slint.dev/"; + text: "Version 1.13.1\nhttps://slint.dev/"; font-size: 10px; horizontal-alignment: center; } diff --git a/package.json b/package.json index ac3041770..36c596bf5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "slint_repository", - "version": "1.13.0", + "version": "1.13.1", "description": "", "main": "index.js", "scripts": { diff --git a/tests/manual/windowattributes/Cargo.toml b/tests/manual/windowattributes/Cargo.toml index 8cc3748ca..4b2d252ba 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.13.0", path = "../../../api/rs/slint" } +slint = { version = "=1.13.1", path = "../../../api/rs/slint" } diff --git a/tools/figma-inspector/package.json b/tools/figma-inspector/package.json index 77573a4e5..04ba9746f 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.13.0", + "version": "1.13.1", "type": "module", "scripts": { "dev": "vite build --watch --mode dev", diff --git a/tools/lsp/Cargo.toml b/tools/lsp/Cargo.toml index aef4573f2..60aeafeb8 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.13.0" +version = "1.13.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 d23fded5f..f4e7b4a6e 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.13.0", + "version": "1.13.1", "description": "", "main": "index.js", "scripts": {