Releases: moolight-seashell/slint
nightly
This GitHub release is a nightly snapshot of Slint development. It serves to provide access to pre-release binaries.
The attached binaries are updated once a day by a GitHub action building from the master
branch.
How To Try Out This Development Release
Rust
For Rust users, include the following in your Cargo.toml (or .cargo/config.toml):
[patch.crates-io]
slint = { git = "https://github.com/slint-ui/slint" }
slint-build = { git = "https://github.com/slint-ui/slint" }
Please note: All Slint dependencies need to be on the same revision. To update and run, use cargo update
and cargo run
.
Make sure the log shows you are building the right version of Slint.
C++
For C++ users with a binary package, download the binary from the "Assets" section below.
If you're building from source with CMake's FetchContent
, change the GIT_TAG
to master
:
FetchContent_Declare(
Slint
GIT_REPOSITORY https://github.com/slint-ui/slint.git
GIT_TAG master # Change this to master
SOURCE_SUBDIR api/cpp
)
Remember to remove your build directory and re-run cmake.
JavaScript / Node.js
Run npm install slint-ui@nightly
to install or upgrade. This works for new and existing projects.
Editors / IDEs
For VSCode, you download the "Slint (Nightly)" extension from the Visual Studio Code Marketplace.
Note that you need to disable or uninstall an existing version of the Slint VS Code extension.
For other editors, you compile the latest version of the Slint Language Server with:
cargo install --git https://github.com/slint-ui/slint slint-lsp
Alternatively, download the binary from "Assets" section below.
Online Demos and Documentation
- Documentation: https://slint.dev/snapshots/master/docs
- SlintPad: https://slint.dev/snapshots/master/editor
- Demos: links from https://github.com/slint-ui/slint/tree/master/examples
Assets
C++ SDK
For C++ developers, this release contains the follwing pre-packed builds of Slint:
Desktop Operating System | Compiler | Architecture | Download |
---|---|---|---|
Linux | gcc | x86-64 | Slint-cpp-nightly-Linux-x86_64.tar.gz |
Windows | MSVC | x86-64 | Slint-cpp-nightly-win64-MSVC.exe |
Templates for Microcontroller Evaluation Board | Download |
---|---|
STM32H747I-DISCO: Dual-core Arm M7/M4 MCU with 4” touch LCD display module | slint-cpp-template-stm32h747i-disco.zip |
STM32H735G-DK: Arm M7 MCU with 4” touch LCD display module | slint-cpp-template-stm32h735g-dk.zip |
Tool Binaries
Add-on | Linux x86-64 | Windows | macOS |
---|---|---|---|
slint-lsp | slint-lsp-linux.tar.gz | slint-lsp-windows.zip | slint-lsp-macos.tar.gz |
slint-viewer | slint-viewer-linux.tar.gz | slint-viewer-windows.zip | slint-viewer-macos.tar.gz |