mirror of
https://github.com/slint-ui/slint.git
synced 2025-12-23 09:19:32 +00:00
The goal is to be able to enable feature conditionally with `i-slint-renderer-software/?...` NOTE: this change the implementation of `SceneBuilder::platform_text_fill_brush/platform_text_stroke_brush` It was warning about `non_exhaustive_omitted_patterns`. And it changed it to always return the brush color so gradient gets converted to plain color instead of None. This is the behavior with the non-parley renderer
25 lines
1.5 KiB
Bash
Executable file
25 lines
1.5 KiB
Bash
Executable file
#!/bin/bash -e
|
|
# Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
# SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
|
|
|
|
cargo publish --manifest-path internal/common/Cargo.toml
|
|
cargo publish --manifest-path internal/core-macros/Cargo.toml
|
|
cargo publish --manifest-path internal/compiler/Cargo.toml
|
|
cargo publish --manifest-path internal/core/Cargo.toml
|
|
cargo publish --manifest-path api/rs/macros/Cargo.toml
|
|
cargo publish --manifest-path internal/renderers/skia/Cargo.toml --features x11
|
|
cargo publish --manifest-path internal/renderers/femtovg/Cargo.toml
|
|
cargo publish --manifest-path internal/renderers/software/Cargo.toml
|
|
cargo publish --manifest-path internal/backends/winit/Cargo.toml --features x11,renderer-femtovg
|
|
cargo publish --manifest-path api/rs/build/Cargo.toml
|
|
cargo publish --manifest-path internal/backends/qt/Cargo.toml
|
|
cargo publish --manifest-path internal/backends/linuxkms/Cargo.toml
|
|
cargo publish --manifest-path internal/backends/android-activity/Cargo.toml --features native-activity
|
|
cargo publish --manifest-path internal/backends/testing/Cargo.toml
|
|
cargo publish --manifest-path internal/backends/selector/Cargo.toml --features backend-winit-x11,renderer-femtovg
|
|
cargo publish --manifest-path internal/interpreter/Cargo.toml
|
|
cargo publish --manifest-path api/rs/slint/Cargo.toml
|
|
cargo publish --manifest-path tools/lsp/Cargo.toml
|
|
cargo publish --manifest-path tools/viewer/Cargo.toml
|
|
cargo publish --manifest-path tools/updater/Cargo.toml
|
|
cargo publish --manifest-path tools/tr-extractor/Cargo.toml
|