mirror of
https://github.com/slint-ui/slint.git
synced 2025-11-01 12:24:16 +00:00
Base the commercial license on the Royalty-free license adding clauses pertaining to the fees.
23 lines
653 B
Markdown
23 lines
653 B
Markdown
<!-- 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 -->
|
|
|
|
# Slint Updater
|
|
|
|
This program is a tool to upgrade `.slint` files from the [Slint Project](https://slint.dev) to the latest syntax.
|
|
|
|
The Slint Design Language evolves, with new features being added and old ones marked for deprecation. Use this tool to
|
|
automatically upgrade your `.slint` files to the latest syntax.
|
|
|
|
## Installation
|
|
|
|
The updater can be installed from crates.io:
|
|
|
|
```bash
|
|
cargo install slint-updater
|
|
```
|
|
|
|
### Usage:
|
|
|
|
```
|
|
slint-updater -i /path/to/my/app/ui/**/*.slint
|
|
```
|
|
|