From 96372d5dde858371f3b9bb9d1a65b10c0e97dd8c Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Tue, 26 Jul 2022 17:00:37 +0200 Subject: [PATCH] Remove mention of eventloop-winit-all There's no -all suffix anymore --- CHANGELOG.md | 2 +- api/rs/slint/Cargo.toml | 4 ++-- internal/interpreter/Cargo.toml | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 473b001aa..8a92a3c11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ All notable changes to this project are documented in this file. - `mod` now works on any numeric type, not only integers. - Minimum rust version is now 1.60 - The "backend-gl-*" Rust crate features for configuring the GL renderer have been - split up into "eventloop-winit-all/x11/wayland" and "renderer-femtovg". The old + split up into "eventloop-winit/x11/wayland" and "renderer-femtovg". The old names are still available for compatibility. ### Added diff --git a/api/rs/slint/Cargo.toml b/api/rs/slint/Cargo.toml index 88233e00f..21a729a24 100644 --- a/api/rs/slint/Cargo.toml +++ b/api/rs/slint/Cargo.toml @@ -48,11 +48,11 @@ backend-gl-wayland = ["eventloop-winit-wayland", "renderer-femtovg"] ## this feature and select one of the other specific `eventloop-winit-XX` features. eventloop-winit = ["i-slint-backend-selector/eventloop-winit", "std"] -## Simliar to `eventloop-winit-all` this enables the winit based event loop but only +## Simliar to `eventloop-winit` this enables the winit based event loop but only ## with support for the X Window System on Unix. eventloop-winit-x11 = ["i-slint-backend-selector/eventloop-winit-x11", "std"] -## Simliar to `eventloop-winit-all` this enables the winit based event loop but only +## Simliar to `eventloop-winit` this enables the winit based event loop but only ## with support for the Wayland window system on Unix. eventloop-winit-wayland = ["i-slint-backend-selector/eventloop-winit-wayland", "std"] diff --git a/internal/interpreter/Cargo.toml b/internal/interpreter/Cargo.toml index 50f8afd9f..95086d1fb 100644 --- a/internal/interpreter/Cargo.toml +++ b/internal/interpreter/Cargo.toml @@ -19,7 +19,7 @@ path = "lib.rs" [features] -default = ["std", "eventloop-winit-all", "renderer-femtovg", "backend-qt", "compat-0-2-0"] +default = ["std", "eventloop-winit", "renderer-femtovg", "backend-qt", "compat-0-2-0"] ## Mandatory feature: ## This feature is required to keep the compatibility with Slint 0.2.0 @@ -54,11 +54,11 @@ backend-gl-wayland = ["eventloop-winit-wayland", "renderer-femtovg"] ## this feature and select one of the other specific `eventloop-winit-XX` features. eventloop-winit = ["i-slint-backend-selector/eventloop-winit", "std"] -## Simliar to `eventloop-winit-all` this enables the winit based event loop but only +## Simliar to `eventloop-winit` this enables the winit based event loop but only ## with support for the X Window System on Unix. eventloop-winit-x11 = ["i-slint-backend-selector/eventloop-winit-x11", "std"] -## Simliar to `eventloop-winit-all` this enables the winit based event loop but only +## Simliar to `eventloop-winit` this enables the winit based event loop but only ## with support for the Wayland window system on Unix. eventloop-winit-wayland = ["i-slint-backend-selector/eventloop-winit-wayland", "std"]