mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-17 22:08:39 +00:00
Bump version number to 1.13.1
This commit is contained in:
parent
9501590a03
commit
09e397f3ba
59 changed files with 78 additions and 78 deletions
36
Cargo.toml
36
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"
|
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"
|
repository = "https://github.com/slint-ui/slint"
|
||||||
rust-version = "1.85"
|
rust-version = "1.85"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
i-slint-backend-android-activity = { version = "=1.13.0", path = "internal/backends/android-activity", 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.0", path = "internal/backends/linuxkms", 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.0", path = "internal/backends/qt", 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.0", path = "internal/backends/selector", 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.0", path = "internal/backends/testing", 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.0", path = "internal/backends/winit", default-features = false }
|
i-slint-backend-winit = { version = "=1.13.1", path = "internal/backends/winit", default-features = false }
|
||||||
i-slint-common = { version = "=1.13.0", path = "internal/common", default-features = false }
|
i-slint-common = { version = "=1.13.1", path = "internal/common", default-features = false }
|
||||||
i-slint-compiler = { version = "=1.13.0", path = "internal/compiler", default-features = false }
|
i-slint-compiler = { version = "=1.13.1", path = "internal/compiler", default-features = false }
|
||||||
i-slint-core = { version = "=1.13.0", path = "internal/core", default-features = false }
|
i-slint-core = { version = "=1.13.1", path = "internal/core", default-features = false }
|
||||||
i-slint-core-macros = { version = "=1.13.0", path = "internal/core-macros", 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.0", path = "internal/renderers/femtovg", 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.0", path = "internal/renderers/skia", default-features = false }
|
i-slint-renderer-skia = { version = "=1.13.1", path = "internal/renderers/skia", default-features = false }
|
||||||
slint = { version = "=1.13.0", path = "api/rs/slint", default-features = false }
|
slint = { version = "=1.13.1", path = "api/rs/slint", default-features = false }
|
||||||
slint-build = { version = "=1.13.0", path = "api/rs/build", default-features = false }
|
slint-build = { version = "=1.13.1", path = "api/rs/build", default-features = false }
|
||||||
slint-cpp = { version = "=1.13.0", path = "api/cpp", default-features = false }
|
slint-cpp = { version = "=1.13.1", path = "api/cpp", default-features = false }
|
||||||
slint-interpreter = { version = "=1.13.0", path = "internal/interpreter", default-features = false }
|
slint-interpreter = { version = "=1.13.1", path = "internal/interpreter", default-features = false }
|
||||||
slint-macros = { version = "=1.13.0", path = "api/rs/macros", default-features = false }
|
slint-macros = { version = "=1.13.1", path = "api/rs/macros", default-features = false }
|
||||||
|
|
||||||
vtable = { version = "0.3", path = "helper_crates/vtable" }
|
vtable = { version = "0.3", path = "helper_crates/vtable" }
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
cmake_minimum_required(VERSION 3.21)
|
cmake_minimum_required(VERSION 3.21)
|
||||||
# Select C++ and C as languages, as Corrosion needs ${CMAKE_C_COMPILER}
|
# Select C++ and C as languages, as Corrosion needs ${CMAKE_C_COMPILER}
|
||||||
# for linking
|
# 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(FeatureSummary)
|
||||||
include(CMakeDependentOption)
|
include(CMakeDependentOption)
|
||||||
|
|
|
@ -23,7 +23,7 @@ import json
|
||||||
# -- Project information -----------------------------------------------------
|
# -- Project information -----------------------------------------------------
|
||||||
|
|
||||||
# The full version, including alpha/beta/rc tags
|
# The full version, including alpha/beta/rc tags
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
|
|
||||||
project = f"Slint {version} C++ API"
|
project = f"Slint {version} C++ API"
|
||||||
copyright = "SixtyFPS GmbH"
|
copyright = "SixtyFPS GmbH"
|
||||||
|
|
|
@ -48,7 +48,7 @@ else()
|
||||||
FetchContent_Declare(
|
FetchContent_Declare(
|
||||||
Slint
|
Slint
|
||||||
GIT_REPOSITORY https://github.com/slint-ui/slint
|
GIT_REPOSITORY https://github.com/slint-ui/slint
|
||||||
GIT_TAG v1.13.0
|
GIT_TAG v1.13.1
|
||||||
SOURCE_SUBDIR api/cpp
|
SOURCE_SUBDIR api/cpp
|
||||||
)
|
)
|
||||||
FetchContent_MakeAvailable(Slint)
|
FetchContent_MakeAvailable(Slint)
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
description: "Slint — declarative GUI toolkit"
|
description: "Slint — declarative GUI toolkit"
|
||||||
url: "https://slint.dev"
|
url: "https://slint.dev"
|
||||||
license: "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0"
|
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"
|
discussion: "https://github.com/slint-ui/slint/discussions"
|
||||||
documentation: "https://slint.dev/docs"
|
documentation: "https://slint.dev/docs"
|
||||||
repository: "https://github.com/slint-ui/slint"
|
repository: "https://github.com/slint-ui/slint"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@slint-ui/slint-ui-binary",
|
"name": "@slint-ui/slint-ui-binary",
|
||||||
"version": "1.13.0",
|
"version": "1.13.1",
|
||||||
"binaryName": "slint-ui",
|
"binaryName": "slint-ui",
|
||||||
"package": "@slint-ui/slint-ui-binary",
|
"package": "@slint-ui/slint-ui-binary",
|
||||||
"napi": {
|
"napi": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "slint-ui",
|
"name": "slint-ui",
|
||||||
"version": "1.13.0",
|
"version": "1.13.1",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"types": "dist/index.d.ts",
|
"types": "dist/index.d.ts",
|
||||||
"homepage": "https://github.com/slint-ui/slint",
|
"homepage": "https://github.com/slint-ui/slint",
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "briefcasex-slint"
|
name = "briefcasex-slint"
|
||||||
version = "1.13.0b1"
|
version = "1.13.1b1"
|
||||||
description = "Plugin for Briefcase to offer Slint application templates"
|
description = "Plugin for Briefcase to offer Slint application templates"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.10"
|
requires-python = ">=3.10"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "slint-compiler"
|
name = "slint-compiler"
|
||||||
version = "1.13.0b1"
|
version = "1.13.1b1"
|
||||||
description = "Python wrapper around the Slint compiler for Python"
|
description = "Python wrapper around the Slint compiler for Python"
|
||||||
authors = [{ name = "Slint Team", email = "info@slint.dev" }]
|
authors = [{ name = "Slint Team", email = "info@slint.dev" }]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -7,7 +7,7 @@ build-backend = "maturin"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "slint"
|
name = "slint"
|
||||||
version = "1.13.0b1"
|
version = "1.13.1b1"
|
||||||
requires-python = ">= 3.12"
|
requires-python = ">= 3.12"
|
||||||
authors = [{ name = "Slint Team", email = "info@slint.dev" }]
|
authors = [{ name = "Slint Team", email = "info@slint.dev" }]
|
||||||
classifiers = [
|
classifiers = [
|
||||||
|
|
|
@ -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
|
/// 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_13_0;
|
pub struct VersionCheck_1_13_1;
|
||||||
|
|
||||||
#[cfg(doctest)]
|
#[cfg(doctest)]
|
||||||
mod compile_fail_tests;
|
mod compile_fail_tests;
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "energy-monitor"
|
name = "energy-monitor"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "home_automation",
|
"name": "home_automation",
|
||||||
"version": "1.13.0",
|
"version": "1.13.1",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "home-automation"
|
name = "home-automation"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "printerdemo",
|
"name": "printerdemo",
|
||||||
"version": "1.13.0",
|
"version": "1.13.1",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "printerdemo"
|
name = "printerdemo"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "printerdemo_mcu"
|
name = "printerdemo_mcu"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "usecases"
|
name = "usecases"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "weather-demo"
|
name = "weather-demo"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["FELGO GmbH <contact@felgo.com>"]
|
authors = ["FELGO GmbH <contact@felgo.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "slint-docs",
|
"name": "slint-docs",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "1.13.0",
|
"version": "1.13.1",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "astro dev",
|
"dev": "astro dev",
|
||||||
"start": "astro dev",
|
"start": "astro dev",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "slint-docs",
|
"name": "slint-docs",
|
||||||
"version": "1.13.0",
|
"version": "1.13.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "rollup -c",
|
"build": "rollup -c",
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "src"
|
name = "src"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "memory",
|
"name": "memory",
|
||||||
"version": "1.13.0",
|
"version": "1.13.1",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@slint/common-files",
|
"name": "@slint/common-files",
|
||||||
"version": "0.1.0",
|
"version": "1.13.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"format": "biome format",
|
"format": "biome format",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"live preview",
|
"live preview",
|
||||||
"drag-and-drop editor"
|
"drag-and-drop editor"
|
||||||
],
|
],
|
||||||
"version": "1.13.0",
|
"version": "1.13.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 = "zed_slint"
|
name = "zed_slint"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
license = "GPL-3.0-or-later"
|
license = "GPL-3.0-or-later"
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
id = "slint"
|
id = "slint"
|
||||||
name = "Slint"
|
name = "Slint"
|
||||||
description = "Slint support for Zed"
|
description = "Slint support for Zed"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
schema_version = 1
|
schema_version = 1
|
||||||
authors = ["Slint Developers <info@slint.dev>", "Luke. D Jones <luke@ljones.dev>"]
|
authors = ["Slint Developers <info@slint.dev>", "Luke. D Jones <luke@ljones.dev>"]
|
||||||
repository = "https://github.com/slint-ui/slint"
|
repository = "https://github.com/slint-ui/slint"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "_7guis"
|
name = "_7guis"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "bevy-example"
|
name = "bevy-example"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "carousel",
|
"name": "carousel",
|
||||||
"version": "1.13.0",
|
"version": "1.13.1",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "carousel"
|
name = "carousel"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "ffmpeg"
|
name = "ffmpeg"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "gallery"
|
name = "gallery"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "gstreamer-player"
|
name = "gstreamer-player"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "imagefilter",
|
"name": "imagefilter",
|
||||||
"version": "1.13.0",
|
"version": "1.13.1",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "imagefilter"
|
name = "imagefilter"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "maps"
|
name = "maps"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "mcu-board-support"
|
name = "mcu-board-support"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
@ -195,9 +195,9 @@ stm32u5g9j-dk2 = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[dependencies]
|
[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 = { 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 }
|
derive_more = { workspace = true }
|
||||||
embedded-graphics = { version = "0.8", optional = true }
|
embedded-graphics = { version = "0.8", optional = true }
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "mcu-embassy"
|
name = "mcu-embassy"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["David Haig <david@ninjametal.com>"]
|
authors = ["David Haig <david@ninjametal.com>"]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "slint-generated"
|
name = "slint-generated"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
authors = ["David Haig <david@ninjametal.com>"]
|
authors = ["David Haig <david@ninjametal.com>"]
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "memory"
|
name = "memory"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "memory",
|
"name": "memory",
|
||||||
"version": "1.13.0",
|
"version": "1.13.1",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "opengl_texture"
|
name = "opengl_texture"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "opengl_underlay"
|
name = "opengl_underlay"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "plotter"
|
name = "plotter"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "slide_puzzle"
|
name = "slide_puzzle"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "todo-mvc"
|
name = "todo-mvc"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "todo",
|
"name": "todo",
|
||||||
"version": "1.13.0",
|
"version": "1.13.1",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "todo"
|
name = "todo"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "uefi-demo"
|
name = "uefi-demo"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "virtual_keyboard"
|
name = "virtual_keyboard"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "wgpu_texture"
|
name = "wgpu_texture"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
authors = ["Slint Developers <info@slint.dev>"]
|
authors = ["Slint Developers <info@slint.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -119,7 +119,7 @@ objc2-app-kit = { version = "0.3.0" }
|
||||||
i-slint-renderer-skia = { workspace = true, features = ["default"] }
|
i-slint-renderer-skia = { workspace = true, features = ["default"] }
|
||||||
|
|
||||||
[target.'cfg(target_os = "windows")'.dependencies.windows]
|
[target.'cfg(target_os = "windows")'.dependencies.windows]
|
||||||
version = "0.61.1"
|
version = "1.13.1"
|
||||||
features = ["Win32_UI_WindowsAndMessaging"]
|
features = ["Win32_UI_WindowsAndMessaging"]
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
|
|
|
@ -22,7 +22,7 @@ export component AboutSlint {
|
||||||
}
|
}
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
text: "Version 1.13.0\nhttps://slint.dev/";
|
text: "Version 1.13.1\nhttps://slint.dev/";
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
horizontal-alignment: center;
|
horizontal-alignment: center;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "slint_repository",
|
"name": "slint_repository",
|
||||||
"version": "1.13.0",
|
"version": "1.13.1",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -20,4 +20,4 @@ name = "windowattributes"
|
||||||
path = "main.rs"
|
path = "main.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
slint = { version = "=1.13.0", path = "../../../api/rs/slint" }
|
slint = { version = "=1.13.1", path = "../../../api/rs/slint" }
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "slint.figma.plugin",
|
"name": "slint.figma.plugin",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "1.13.0",
|
"version": "1.13.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite build --watch --mode dev",
|
"dev": "vite build --watch --mode dev",
|
||||||
|
|
|
@ -10,7 +10,7 @@ homepage = "https://slint.dev"
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
repository.workspace = true
|
repository.workspace = true
|
||||||
rust-version.workspace = true
|
rust-version.workspace = true
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
categories = ["gui", "development-tools", "command-line-utilities"]
|
categories = ["gui", "development-tools", "command-line-utilities"]
|
||||||
keywords = ["lsp", "ui", "toolkit"]
|
keywords = ["lsp", "ui", "toolkit"]
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"//": "cSpell: ignore codingame dragdrop femtovg frsource lumino treemended quickaccess ",
|
"//": "cSpell: ignore codingame dragdrop femtovg frsource lumino treemended quickaccess ",
|
||||||
"name": "slintpad",
|
"name": "slintpad",
|
||||||
"version": "1.13.0",
|
"version": "1.13.1",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue