Update git repository URL

This commit is contained in:
Olivier Goffart 2022-02-08 08:26:21 +01:00
parent 28dd8f6294
commit 00ff5e21a7
62 changed files with 103 additions and 103 deletions

View file

@ -299,13 +299,13 @@ jobs:
buildWithCMakeArgs: '--config Debug'
docs:
uses: sixtyfpsui/sixtyfps/.github/workflows/build_docs.yaml@master
uses: slint-ui/slint/.github/workflows/build_docs.yaml@master
wasm:
uses: sixtyfpsui/sixtyfps/.github/workflows/wasm_editor_and_interpreter.yaml@master
uses: slint-ui/slint/.github/workflows/wasm_editor_and_interpreter.yaml@master
wasm_demo:
uses: sixtyfpsui/sixtyfps/.github/workflows/wasm_demos.yaml@master
uses: slint-ui/slint/.github/workflows/wasm_demos.yaml@master
# Checkout a old version of the tests and example, then run the syntax_updater on them
# and check that it worked with the interpreter test.

View file

@ -23,21 +23,21 @@ on:
jobs:
slint-viewer-binary:
uses: sixtyfpsui/sixtyfps/.github/workflows/slint_tool_binary.yaml@master
uses: slint-ui/slint/.github/workflows/slint_tool_binary.yaml@master
with:
program: "slint-viewer"
slint-lsp-binary:
uses: sixtyfpsui/sixtyfps/.github/workflows/slint_tool_binary.yaml@master
uses: slint-ui/slint/.github/workflows/slint_tool_binary.yaml@master
with:
program: "slint-lsp"
docs:
uses: sixtyfpsui/sixtyfps/.github/workflows/build_docs.yaml@master
uses: slint-ui/slint/.github/workflows/build_docs.yaml@master
wasm_demo:
uses: sixtyfpsui/sixtyfps/.github/workflows/wasm_demos.yaml@master
uses: slint-ui/slint/.github/workflows/wasm_demos.yaml@master
wasm:
uses: sixtyfpsui/sixtyfps/.github/workflows/wasm_editor_and_interpreter.yaml@master
uses: slint-ui/slint/.github/workflows/wasm_editor_and_interpreter.yaml@master
cpp_package:
uses: sixtyfpsui/sixtyfps/.github/workflows/cpp_package.yaml@master
uses: slint-ui/slint/.github/workflows/cpp_package.yaml@master
build_vscode_lsp_linux_windows:
env:

View file

@ -1,7 +1,7 @@
# Contributing
We warmly welcome contributions to the project. Let's discuss ideas or questions in [Github discussions](https://github.com/sixtyfpsui/sixtyfps/discussions).
Please feel welcome to open github issues, pull requests or comment for example on [RFC tagged](https://github.com/sixtyfpsui/sixtyfps/labels/rfc) issues.
We warmly welcome contributions to the project. Let's discuss ideas or questions in [Github discussions](https://github.com/slint-ui/slint/discussions).
Please feel welcome to open github issues, pull requests or comment for example on [RFC tagged](https://github.com/slint-ui/slint/labels/rfc) issues.
## Coding Style

View file

@ -1,7 +1,7 @@
# Slint
[![Build Status](https://github.com/sixtyfpsui/sixtyfps/workflows/CI/badge.svg)](https://github.com/sixtyfpsui/sixtyfps/actions)
[![Discussions](https://img.shields.io/github/discussions/sixtyfpsui/sixtyfps)](https://github.com/sixtyfpsui/sixtyfps/discussions)
[![Build Status](https://github.com/slint-ui/slint/workflows/CI/badge.svg)](https://github.com/slint-ui/slint/actions)
[![Discussions](https://img.shields.io/github/discussions/slint-ui/slint)](https://github.com/slint-ui/slint/discussions)
Slint is a toolkit to efficiently develop fluid graphical user interfaces for any display: embedded devices and desktop applications. We support multiple programming languages, such as
Rust, C++, and JavaScript.
@ -124,7 +124,7 @@ We have a few tools to help with the development of .slint files:
We welcome your contributions: in the form of code, bug reports or feedback.
* If you see an [RFC tag](https://github.com/sixtyfpsui/sixtyfps/labels/rfc) on an issue, feel free to
* If you see an [RFC tag](https://github.com/slint-ui/slint/labels/rfc) on an issue, feel free to
chime in.
* For contribution guidelines see [CONTRIBUTING.md](CONTRIBUTING.md). The dual-licensing requires the
contributor to accept a CLA.
@ -154,7 +154,7 @@ Rust developers all the way to UI/UX designers.
## Contact us
Feel free to join [Github discussions](https://github.com/sixtyfpsui/sixtyfps/discussions) for general chat or questions. Use [Github issues](https://github.com/sixtyfpsui/sixtyfps/issues) to report public suggestions or bugs.
Feel free to join [Github discussions](https://github.com/slint-ui/slint/discussions) for general chat or questions. Use [Github issues](https://github.com/slint-ui/slint/issues) to report public suggestions or bugs.
To contact us privately send an email to info@sixtyfps.io

View file

@ -9,7 +9,7 @@ edition = "2021"
build = "build.rs"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
description = "Slint C++ integration"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"
publish = false
# prefix used to convey path to generated includes to the C++ test driver

View file

@ -35,7 +35,7 @@ You can include Slint in your CMake project using CMake's `FetchContent` feature
include(FetchContent)
FetchContent_Declare(
Slint
GIT_REPOSITORY https://github.com/sixtyfpsui/sixtyfps.git
GIT_REPOSITORY https://github.com/slint-ui/slint.git
GIT_TAG v0.1.6
SOURCE_SUBDIR api/cpp
)
@ -89,7 +89,7 @@ We also provide binary packages of Slint for use with C++, which eliminates the
You can download one of our pre-built binaries for Linux or Windows on x86-64 architectures:
1. Open <https://github.com/sixtyfpsui/sixtyfps/releases>
1. Open <https://github.com/slint-ui/slint/releases>
2. Click on the latest release
3. From "Assets" download either `slint-cpp-XXX-Linux-x86_64.tar.gz` for a Linux x86-64 archive
or `slint-cpp-XXX-win64.exe` for a Windows x86-64 installer. ("XXX" refers to the version of the latest release)
@ -111,7 +111,7 @@ project(my_application LANGUAGES CXX)
include(FetchContent)
FetchContent_Declare(
Slint
GIT_REPOSITORY https://github.com/sixtyfpsui/sixtyfps.git
GIT_REPOSITORY https://github.com/slint-ui/slint.git
GIT_TAG v0.1.6
SOURCE_SUBDIR api/cpp
)

View file

@ -12,7 +12,7 @@ We also provide binary packages of Slint for use with C++, which eliminates the
You can download one of our pre-built binaries for Linux or Windows on x86-64 architectures:
1. Open <https://github.com/sixtyfpsui/sixtyfps/releases>
1. Open <https://github.com/slint-ui/slint/releases>
2. Click on the latest release
3. From "Assets" download either `slint-cpp-XXX-Linux-x86_64.tar.gz` for a Linux archive
or `slint-cpp-XXX-win64.exe` for a Windows installer. ("XXX" refers to the version of the latest release)
@ -42,7 +42,7 @@ Insert the following snippet into your `CMakeLists.txt` to make CMake download t
include(FetchContent)
FetchContent_Declare(
Slint
GIT_REPOSITORY https://github.com/sixtyfpsui/sixtyfps.git
GIT_REPOSITORY https://github.com/slint-ui/slint.git
GIT_TAG v0.1.6
SOURCE_SUBDIR api/cpp
)

View file

@ -19,7 +19,7 @@ project(my_application LANGUAGES CXX)
include(FetchContent)
FetchContent_Declare(
Slint
GIT_REPOSITORY https://github.com/sixtyfpsui/sixtyfps.git
GIT_REPOSITORY https://github.com/slint-ui/slint.git
GIT_TAG v0.1.6
SOURCE_SUBDIR api/cpp
)

View file

@ -41,12 +41,12 @@ Welcome to Slint C++'s documentation!
cpp_migration.md
.. image:: https://github.com/sixtyfpsui/sixtyfps/workflows/CI/badge.svg
:target: https://github.com/sixtyfpsui/sixtyfps/actions
.. image:: https://github.com/slint-ui/slint/workflows/CI/badge.svg
:target: https://github.com/slint-ui/slint/actions
:alt: GitHub CI Build Status
.. image:: https://img.shields.io/github/discussions/sixtyfpsui/sixtyfps
:target: https://github.com/sixtyfpsui/sixtyfps/discussions
.. image:: https://img.shields.io/github/discussions/slint-ui/slint
:target: https://github.com/slint-ui/slint/discussions
:alt: GitHub Discussions
`Slint <https://slint-ui.com/>`_ is a toolkit to efficiently develop fluid graphical user interfaces for any display: embedded devices and desktop applications.

View file

@ -10,7 +10,7 @@ build = "build.rs"
# This is not meant to be used as a library from crate.io
publish = false
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"

View file

@ -1,11 +1,11 @@
{
"name": "slint-ui",
"version": "0.2.0",
"homepage": "https://github.com/sixtyfpsui/sixtyfps",
"homepage": "https://github.com/slint-ui/slint",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/sixtyfpsui/sixtyfps"
"url": "https://github.com/slint-ui/slint"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",

View file

@ -8,7 +8,7 @@ authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
description = "Helper for Slint build script"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"

View file

@ -8,7 +8,7 @@ authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
description = "Macro helper for slint crate"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"

View file

@ -8,7 +8,7 @@ authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
description = "Slint Rust API"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"
categories = ["gui", "rendering::engine"]
keywords = ["gui", "toolkit", "graphics", "design", "ui"]

View file

@ -93,18 +93,18 @@ fn main() {
```
The [cargo-generate](https://github.com/cargo-generate/cargo-generate) tool is a great tool to up and running quickly with a new
Rust project. You can use it in combination with our [Template Repository](https://github.com/sixtyfpsui/sixtyfps-rust-template) to
Rust project. You can use it in combination with our [Template Repository](https://github.com/slint-ui/slint-rust-template) to
create a skeleton file hierarchy that uses this method:
```bash
cargo install cargo-generate
cargo generate --git https://github.com/sixtyfpsui/sixtyfps-rust-template
cargo generate --git https://github.com/slint-ui/slint-rust-template
```
## Generated components
Currently, only the last component in a `.slint` source file is mapped to a Rust structure that be instantiated. We are tracking the
resolution of this limitation in <https://github.com/sixtyfpsui/sixtyfps/issues/784>.
resolution of this limitation in <https://github.com/slint-ui/slint/issues/784>.
The component is generated and re-exported to the location of the [`include_modules!`] or [`slint!`] macro. It is represented
as a struct with the same name as the component.

View file

@ -9,7 +9,7 @@ edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
publish = false
description = "Slint wasm glue"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"
[lib]

View file

@ -2,8 +2,8 @@
In this tutorial, we have demonstrated how to combine some built-in Slint elements with C++ code to build a little
game. There are many more features that we have not talked about, such as layouts, widgets, or styling. Have a look
at the [examples](https://github.com/sixtyfpsui/sixtyfps/tree/master/examples) in the Slint repo to
see how these look like and can be used, such as the [todo example](https://github.com/sixtyfpsui/sixtyfps/tree/master/examples/todo).
at the [examples](https://github.com/slint-ui/slint/tree/master/examples) in the Slint repo to
see how these look like and can be used, such as the [todo example](https://github.com/slint-ui/slint/tree/master/examples/todo).
A slightly more polished version of this memory puzzle game is [available in the Slint repository](
https://github.com/sixtyfpsui/sixtyfps/tree/master/examples/memory). And you can <a href="https://sixtyfps.io/demos/memory/" target="_blank">play the wasm version</a> in your browser.
https://github.com/slint-ui/slint/tree/master/examples/memory). And you can <a href="https://sixtyfps.io/demos/memory/" target="_blank">play the wasm version</a> in your browser.

View file

@ -20,7 +20,7 @@ project(memory LANGUAGES CXX)
include(FetchContent)
FetchContent_Declare(
Slint
GIT_REPOSITORY https://github.com/sixtyfpsui/sixtyfps.git
GIT_REPOSITORY https://github.com/slint-ui/slint.git
GIT_TAG v0.1.6
SOURCE_SUBDIR api/cpp
)

View file

@ -8,7 +8,7 @@ authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
description = "Binaries for Rust version of Memory Tutorial of Slint"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"
publish = false

View file

@ -2,8 +2,8 @@
In this tutorial, we have demonstrated how to combine some built-in Slint elements with Rust code to build a little
game. There are many more features that we have not talked about, such as layouts, widgets, or styling. Have a look
at the [examples](https://github.com/sixtyfpsui/sixtyfps/tree/master/examples) in the Slint repo to
see how these look like and can be used, such as the [todo example](https://github.com/sixtyfpsui/sixtyfps/tree/master/examples/todo).
at the [examples](https://github.com/slint-ui/slint/tree/master/examples) in the Slint repo to
see how these look like and can be used, such as the [todo example](https://github.com/slint-ui/slint/tree/master/examples/todo).
A slightly more polished version of this memory puzzle game is [available in the Slint repository](
https://github.com/sixtyfpsui/sixtyfps/tree/master/examples/memory). And you can <a href="https://sixtyfps.io/demos/memory/" target="_blank">play the wasm version</a> in your browser.
https://github.com/slint-ui/slint/tree/master/examples/memory). And you can <a href="https://sixtyfps.io/demos/memory/" target="_blank">play the wasm version</a> in your browser.

View file

@ -196,7 +196,7 @@ Example := Window {
Similar to LineEdit, but can be used to enter several lines of text
*Note:* The current implementation only implement very few basic shortcut. More
shortcut will be implemented in a future version: <https://github.com/sixtyfpsui/sixtyfps/issues/474>
shortcut will be implemented in a future version: <https://github.com/slint-ui/slint/issues/474>
### Properties

View file

@ -8,7 +8,7 @@ A fictional user interface for the touch screen of a printer
| `.slint` Design | Rust Source | C++ Source | Node Source | Online wasm Preview | Open in code editor |
| --- | --- | --- | --- | --- | --- |
| [`ui.slint`](./printerdemo/ui/printerdemo.slint) | [`main.rs`](./printerdemo/rust/main.rs) | [`main.cpp`](./printerdemo/cpp/main.cpp) | [`main.js`](./printerdemo/node/main.js) | [Online simulation](https://sixtyfps.io/snapshots/master/demos/printerdemo/) | [Preview in Online Code Editor](https://sixtyfps.io/snapshots/master/editor?load_url=https://raw.githubusercontent.com/sixtyfpsui/sixtyfps/master/examples/printerdemo/ui/printerdemo.slint) |
| [`ui.slint`](./printerdemo/ui/printerdemo.slint) | [`main.rs`](./printerdemo/rust/main.rs) | [`main.cpp`](./printerdemo/cpp/main.cpp) | [`main.js`](./printerdemo/node/main.js) | [Online simulation](https://sixtyfps.io/snapshots/master/demos/printerdemo/) | [Preview in Online Code Editor](https://sixtyfps.io/snapshots/master/editor?load_url=https://raw.githubusercontent.com/slint-ui/slint/master/examples/printerdemo/ui/printerdemo.slint) |
![Screenshot of the Printer Demo](https://sixtyfps.io/resources/printerdemo_screenshot.png "Printer Demo")
@ -18,7 +18,7 @@ A simple application showing the different widgets
| `.slint` Design | Rust Source | C++ Source | Online wasm Preview | Open in code editor |
| --- | --- | --- | --- | --- |
| [`gallery.slint`](./gallery/gallery.slint) | [`main.rs`](./gallery/main.rs) | [`main.cpp`](./gallery/main.cpp) | [Online simulation](https://sixtyfps.io/snapshots/master/demos/gallery/) | [Preview in Online Code Editor](https://sixtyfps.io/snapshots/master/editor?load_url=https://raw.githubusercontent.com/sixtyfpsui/sixtyfps/master/examples/gallery/gallery.slint) |
| [`gallery.slint`](./gallery/gallery.slint) | [`main.rs`](./gallery/main.rs) | [`main.cpp`](./gallery/main.cpp) | [Online simulation](https://sixtyfps.io/snapshots/master/demos/gallery/) | [Preview in Online Code Editor](https://sixtyfps.io/snapshots/master/editor?load_url=https://raw.githubusercontent.com/slint-ui/slint/master/examples/gallery/gallery.slint) |
![Screenshot of the Gallery on Windows](https://sixtyfps.io/resources/gallery_win_screenshot.png "Gallery")
@ -28,7 +28,7 @@ A simple todo mvc application
| `.slint` Design | Rust Source | C++ Source | NodeJS | Online wasm Preview | Open in code editor |
| --- | --- | --- | --- | --- | --- |
| [`todo.slint`](./todo/ui/todo.slint) | [`main.rs`](./todo/rust/main.rs) | [`main.cpp`](./todo/cpp/main.cpp) | [`main.js`](./todo/node/main.js) | [Online simulation](https://sixtyfps.io/snapshots/master/demos/todo/) | [Preview in Online Code Editor](https://sixtyfps.io/snapshots/master/editor?load_url=https://raw.githubusercontent.com/sixtyfpsui/sixtyfps/master/examples/todo/ui/todo.slint) |
| [`todo.slint`](./todo/ui/todo.slint) | [`main.rs`](./todo/rust/main.rs) | [`main.cpp`](./todo/cpp/main.cpp) | [`main.js`](./todo/node/main.js) | [Online simulation](https://sixtyfps.io/snapshots/master/demos/todo/) | [Preview in Online Code Editor](https://sixtyfps.io/snapshots/master/editor?load_url=https://raw.githubusercontent.com/slint-ui/slint/master/examples/todo/ui/todo.slint) |
![Screenshot of the Todo Demo](https://sixtyfps.io/resources/todo_screenshot.png "Todo Demo")
@ -38,7 +38,7 @@ Puzzle game based on a Flutter example. See [Readme](./slide_puzzle)
| `.slint` Design | Rust Source | Online wasm Preview | Open in code editor |
| --- | --- | --- | --- |
| [`slide_puzzle.slint`](./slide_puzzle/slide_puzzle.slint) | [`main.rs`](./todo/rust/main.rs) | [Online simulation](https://sixtyfps.io/snapshots/master/demos/slide_puzzle/) | [Preview in Online Code Editor](https://sixtyfps.io/snapshots/master/editor?load_url=https://raw.githubusercontent.com/sixtyfpsui/sixtyfps/master/examples/slide_puzzle/slide_puzzle.slint) |
| [`slide_puzzle.slint`](./slide_puzzle/slide_puzzle.slint) | [`main.rs`](./todo/rust/main.rs) | [Online simulation](https://sixtyfps.io/snapshots/master/demos/slide_puzzle/) | [Preview in Online Code Editor](https://sixtyfps.io/snapshots/master/editor?load_url=https://raw.githubusercontent.com/slint-ui/slint/master/examples/slide_puzzle/slide_puzzle.slint) |
![Screenshot of the Slide Puzzle](https://sixtyfps.io/resources/puzzle_screenshot.png "Slide Puzzle")
@ -51,7 +51,7 @@ A basic memory game used as an example the tutorial:
| `.slint` Design | Rust Source | C++ Source | Online wasm Preview | Open in code editor |
| --- | --- | --- | --- | --- |
| [`memory.slint`](./memory/memory.slint) | [`main.rs`](./memory/main.rs) | [`memory.cpp`](./memory/memory.cpp) | [Online simulation](https://sixtyfps.io/snapshots/master/demos/memory/) | [Preview in Online Code Editor](https://sixtyfps.io/snapshots/master/editor?load_url=https://raw.githubusercontent.com/sixtyfpsui/sixtyfps/master/examples/memory/memory.slint) |
| [`memory.slint`](./memory/memory.slint) | [`main.rs`](./memory/main.rs) | [`memory.cpp`](./memory/memory.cpp) | [Online simulation](https://sixtyfps.io/snapshots/master/demos/memory/) | [Preview in Online Code Editor](https://sixtyfps.io/snapshots/master/editor?load_url=https://raw.githubusercontent.com/slint-ui/slint/master/examples/memory/memory.slint) |
### [`iot-dashboard`](./iot-dashboard)
@ -61,7 +61,7 @@ Also show how a way to dynamically load widgets with the interpreter from C++.
| `.slint` Design | C++ Source | Online wasm Preview | Open in code editor |
| --- | --- | --- | --- |
| [`main.slint`](./iot-dashboard/main.slint) | [`main.cpp`](./iot-dashboard/main.cpp) | [Online preview](https://sixtyfps.io/snapshots/master/editor/preview.html?load_url=https://raw.githubusercontent.com/sixtyfpsui/sixtyfps/master/examples/iot-dashboard/main.slint) | [Preview in Online Code Editor](https://sixtyfps.io/snapshots/master/editor?load_url=https://raw.githubusercontent.com/sixtyfpsui/sixtyfps/master/examples/iot-dashboard/main.slint) |
| [`main.slint`](./iot-dashboard/main.slint) | [`main.cpp`](./iot-dashboard/main.cpp) | [Online preview](https://sixtyfps.io/snapshots/master/editor/preview.html?load_url=https://raw.githubusercontent.com/slint-ui/slint/master/examples/iot-dashboard/main.slint) | [Preview in Online Code Editor](https://sixtyfps.io/snapshots/master/editor?load_url=https://raw.githubusercontent.com/slint-ui/slint/master/examples/iot-dashboard/main.slint) |
![Screenshot of the IOT Dashboard](https://sixtyfps.io/resources/iot-dashboard_screenshot.png "IOT Dashboard")

View file

@ -80,10 +80,10 @@
</div>
<canvas id="canvas" width="640" height="480"></canvas>
<p class="links">
<a href="https://github.com/sixtyfpsui/sixtyfps/blob/master/examples/gallery/gallery.slint">
<a href="https://github.com/slint-ui/slint/blob/master/examples/gallery/gallery.slint">
View Source Code on GitHub</a> -
<a
href="https://sixtyfps.io/editor?load_url=https://raw.githubusercontent.com/sixtyfpsui/sixtyfps/master/examples/gallery/gallery.slint">
href="https://sixtyfps.io/editor?load_url=https://raw.githubusercontent.com/slint-ui/slint/master/examples/gallery/gallery.slint">
Edit in the online code editor
</a>
</p>

View file

@ -70,7 +70,7 @@
</div>
<canvas id="canvas"></canvas>
<p class="links">
<a href="https://github.com/sixtyfpsui/sixtyfps/blob/master/examples/imagefilter/main.rs">
<a href="https://github.com/slint-ui/slint/blob/master/examples/imagefilter/main.rs">
View Source Code on GitHub</a>
</p>
<script type="module">

View file

@ -10,7 +10,7 @@ the C++ QSkinny code to self-contained .slint.
## Online preview:
https://sixtyfps.io/snapshots/master/editor/preview.html?load_url=https://raw.githubusercontent.com/sixtyfpsui/sixtyfps/master/examples/iot-dashboard/main.slint
https://sixtyfps.io/snapshots/master/editor/preview.html?load_url=https://raw.githubusercontent.com/slint-ui/slint/master/examples/iot-dashboard/main.slint
## Screenshot

View file

@ -69,7 +69,7 @@
</div>
<canvas id="canvas"></canvas>
<p class="links">
<a href="https://github.com/sixtyfpsui/sixtyfps/blob/master/examples/memory/main.rs">
<a href="https://github.com/slint-ui/slint/blob/master/examples/memory/main.rs">
View Source Code on GitHub</a>
</p>
<script type="module">

View file

@ -74,7 +74,7 @@
</div>
<canvas id="canvas" width="640" height="480"></canvas>
<p class="links">
<a href="https://github.com/sixtyfpsui/sixtyfps/blob/master/examples/opengl_underlay/">
<a href="https://github.com/slint-ui/slint/blob/master/examples/opengl_underlay/">
View Source Code on GitHub</a>
</p>
<script type="module">

View file

@ -69,7 +69,7 @@
</div>
<canvas id="canvas"></canvas>
<p class="links">
<a href="https://github.com/sixtyfpsui/sixtyfps/blob/master/examples/plotter/main.rs">
<a href="https://github.com/slint-ui/slint/blob/master/examples/plotter/main.rs">
View Source Code on GitHub</a>
</p>
<script type="module">

View file

@ -93,10 +93,10 @@
</div>
<canvas id="canvas" width="640" height="480" unselectable="on"></canvas>
<p class="hide-in-mobile-landscape links">
<a href="https://github.com/sixtyfpsui/sixtyfps/blob/master/examples/printerdemo/ui/printerdemo.slint">
<a href="https://github.com/slint-ui/slint/blob/master/examples/printerdemo/ui/printerdemo.slint">
View Source Code on GitHub</a> -
<a
href="https://sixtyfps.io/editor?load_url=https://raw.githubusercontent.com/sixtyfpsui/sixtyfps/master/examples/printerdemo/ui/printerdemo.slint">
href="https://sixtyfps.io/editor?load_url=https://raw.githubusercontent.com/slint-ui/slint/master/examples/printerdemo/ui/printerdemo.slint">
Edit in the online code editor
</a>
</p>

View file

@ -95,10 +95,10 @@
</div>
<canvas id="canvas" width="640" height="480" unselectable="on"></canvas>
<p class="hide-in-mobile-landscape links">
<a href="https://github.com/sixtyfpsui/sixtyfps/blob/master/examples/printerdemo_old/ui/printerdemo.slint">
<a href="https://github.com/slint-ui/slint/blob/master/examples/printerdemo_old/ui/printerdemo.slint">
View Source Code on GitHub</a> -
<a
href="https://sixtyfps.io/editor?load_url=https://raw.githubusercontent.com/sixtyfpsui/sixtyfps/master/examples/printerdemo_old/ui/printerdemo.slint">
href="https://sixtyfps.io/editor?load_url=https://raw.githubusercontent.com/slint-ui/slint/master/examples/printerdemo_old/ui/printerdemo.slint">
Edit in the online code editor
</a>
</p>

View file

@ -74,10 +74,10 @@
</p>
<canvas id="canvas"></canvas>
<p class="links">
<a href="https://github.com/sixtyfpsui/sixtyfps/blob/master/examples/slide_puzzle/">
<a href="https://github.com/slint-ui/slint/blob/master/examples/slide_puzzle/">
View Source Code on GitHub</a> -
<a
href="https://sixtyfps.io/editor?load_url=https://raw.githubusercontent.com/sixtyfpsui/sixtyfps/master/examples/slide_puzzle/slide_puzzle.slint">
href="https://sixtyfps.io/editor?load_url=https://raw.githubusercontent.com/slint-ui/slint/master/examples/slide_puzzle/slide_puzzle.slint">
Edit in the online code editor
</a>
</p>

View file

@ -73,10 +73,10 @@
</div>
<canvas id="canvas" width="640" height="480" unselectable="on"></canvas>
<p class="links">
<a href="https://github.com/sixtyfpsui/sixtyfps/blob/master/examples/todo/">
<a href="https://github.com/slint-ui/slint/blob/master/examples/todo/">
View Source Code on GitHub</a> -
<a
href="https://sixtyfps.io/editor?load_url=https://raw.githubusercontent.com/sixtyfpsui/sixtyfps/master/examples/todo/ui/todo.slint">
href="https://sixtyfps.io/editor?load_url=https://raw.githubusercontent.com/slint-ui/slint/master/examples/todo/ui/todo.slint">
Edit in the online code editor
</a>
</p>

View file

@ -8,7 +8,7 @@ authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Wrapper around field-offset crate and const-field-offset-macro"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"
[features]

View file

@ -8,7 +8,7 @@ authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Procedural macro to generate constant field offset from repr(c) struct"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"
[lib]

View file

@ -8,7 +8,7 @@ authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
description = "Helper crate to generate ffi-friendly virtual tables"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"
[lib]

View file

@ -8,7 +8,7 @@ authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
description = "Helper crate to generate ffi-friendly virtual tables"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"
[lib]

View file

@ -8,7 +8,7 @@ authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
description = "OpenGL rendering backend for Slint"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"
[lib]

View file

@ -9,7 +9,7 @@ edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
publish = false
description = "Rendering backend for Slint for use on Microcontrollers"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"
[lib]

View file

@ -8,7 +8,7 @@ authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
description = "Qt rendering backend for Slint"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"
links = "i_slint_backend_qt" # just so we can pass metadata to the dependee's build script

View file

@ -13,7 +13,7 @@ fn main() {
println!("cargo:rustc-cfg=no_qt");
println!(
"cargo:warning=Could not find a Qt installation. The Qt backend will not be functional. \
See https://github.com/sixtyfpsui/sixtyfps/blob/master/docs/install_qt.md for more info"
See https://github.com/slint-ui/slint/blob/master/docs/install_qt.md for more info"
);
return;
}
@ -22,7 +22,7 @@ fn main() {
println!("cargo:rustc-cfg=no_qt");
println!(
"cargo:warning=Qt {} is not supported, you need at least Qt 5.15. The Qt backend will not be functional. \
See https://github.com/sixtyfpsui/sixtyfps/blob/master/docs/install_qt.md for more info",
See https://github.com/slint-ui/slint/blob/master/docs/install_qt.md for more info",
qt_version
);
return;

View file

@ -8,7 +8,7 @@ authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
description = "Helper crate to pick the default rendering backend for Slint"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"
[lib]

View file

@ -8,7 +8,7 @@ authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
description = "OpenGL rendering backend for Slint"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"
publish = false

View file

@ -8,7 +8,7 @@ authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
description = "Helper crate for sharing code & data structures between i-slint-core and slint-compiler"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"

View file

@ -9,7 +9,7 @@ edition = "2021"
build = "build.rs"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
description = "Internal Slint Compiler Library"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"

View file

@ -99,7 +99,7 @@ pub fn compile_paths(
if child.borrow().repeated.is_some() {
diag.push_error(
"Path elements are not supported with `for`-`in` syntax, yet (https://github.com/sixtyfpsui/sixtyfps/issues/754)".into(),
"Path elements are not supported with `for`-`in` syntax, yet (https://github.com/slint-ui/slint/issues/754)".into(),
&*child.borrow(),
);
} else {

View file

@ -9,7 +9,7 @@ TestCase := Rectangle {
y: 0;
}
for sample[i] in [ 0, 1, 2, 3 ] : LineTo {
// ^error{Path elements are not supported with `for`-`in` syntax, yet \(https://github.com/sixtyfpsui/sixtyfps/issues/754\)}
// ^error{Path elements are not supported with `for`-`in` syntax, yet \(https://github.com/slint-ui/slint/issues/754\)}
x: i;
y: sample;
}

View file

@ -91,7 +91,7 @@ impl<'a> TypeLoader<'a> {
let is_wasm = cfg!(target_arch = "wasm32")
|| std::env::var("TARGET").map_or(false, |t| t.starts_with("wasm"));
if !is_wasm {
diag.push_diagnostic_with_span("SLINT_STYLE not defined, defaulting to 'fluent', see https://github.com/sixtyfpsui/sixtyfps/issues/83 for more info".to_owned(),
diag.push_diagnostic_with_span("SLINT_STYLE not defined, defaulting to 'fluent', see https://github.com/slint-ui/slint/issues/83 for more info".to_owned(),
Default::default(),
crate::diagnostics::DiagnosticLevel::Warning
);

View file

@ -8,7 +8,7 @@ authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
description = "Helper macro for i-slint-core"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"

View file

@ -8,7 +8,7 @@ authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
description = "Internal Slint Runtime Library."
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"
categories = ["gui", "development-tools"]
keywords = ["gui", "ui", "toolkit", "graphics", "design"]

View file

@ -8,7 +8,7 @@ authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
description = "Interpreter library for Slint"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"
categories = ["gui", "rendering::engine"]
keywords = ["gui", "toolkit", "graphics", "design", "ui"]

View file

@ -8,7 +8,7 @@ authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
description = "Slint compiler binary"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"
publish = false

View file

@ -9,7 +9,7 @@ edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
publish = false
description = "Tool used to update .slint files when we do syntax upgrade"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"
categories = ["gui", "development-tools"]
keywords = ["formatter", "gui", "ui", "toolkit"]

View file

@ -8,7 +8,7 @@ authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
description = "Slint LSP server"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"
categories = ["gui", "development-tools"]
keywords = ["lsp"]

View file

@ -20,13 +20,13 @@ This makes the latest released version available in `$HOME/.cargo/bin`. If you w
for the released version. Or, to install the develoment version:
```sh
cargo install slint-lsp --git https://github.com/sixtyfpsui/sixtyfps --force
cargo install slint-lsp --git https://github.com/slint-ui/slint --force
```
Alternatively, you can download one of our pre-built binaries for Linux or Windows:
1. Open <https://github.com/sixtyfpsui/sixtyfps/releases>
1. Open <https://github.com/slint-ui/slint/releases>
2. Click on the latest release
3. From "Assets" download either `slint-lsp-linux.tar.gz` for a Linux x86-64 binary
or `slint-lsp-windows.zip` for a Windows x86-64 binary.
@ -54,7 +54,7 @@ On Linux, this can be done by running this command
```
mkdir -p ~/.local/share/org.kde.syntax-highlighting/syntax/
wget https://raw.githubusercontent.com/sixtyfpsui/sixtyfps/master/tools/lsp/slint.ksyntaxhighlighter.xml -O ~/.local/share/org.kde.syntax-highlighting/syntax/sixtyfps.xml
wget https://raw.githubusercontent.com/slint-ui/slint/master/tools/lsp/slint.ksyntaxhighlighter.xml -O ~/.local/share/org.kde.syntax-highlighting/syntax/sixtyfps.xml
```
On Windows, download [slint.ksyntaxhighlighter.xml](./slint.ksyntaxhighlighter.xml) in `%USERPROFILE%\AppData\Local\org.kde.syntax-highlighting\syntax`
@ -160,10 +160,10 @@ To setup the LSP:
2. Using Package Control in Sublime Text, install the LSP package (sublimelsp/LSP)
3. Download the Slint syntax highlighting files into your User Package folder,
e.g. on macOS `~/Library/Application Support/Sublime Text/Packages/User/` :
https://raw.githubusercontent.com/sixtyfpsui/sixtyfps/master/tools/lsp/sublime/Slint.sublime-syntax
https://raw.githubusercontent.com/sixtyfpsui/sixtyfps/master/tools/lsp/sublime/Slint.tmPreferences
https://raw.githubusercontent.com/slint-ui/slint/master/tools/lsp/sublime/Slint.sublime-syntax
https://raw.githubusercontent.com/slint-ui/slint/master/tools/lsp/sublime/Slint.tmPreferences
4. Download the LSP package settings file into your User Package folder:
https://raw.githubusercontent.com/sixtyfpsui/sixtyfps/master/tools/lsp/sublime/LSP.sublime-settings
https://raw.githubusercontent.com/slint-ui/slint/master/tools/lsp/sublime/LSP.sublime-settings
5. Modify the slint-lsp command path in `LSP.sublime-settings` to point to the cargo instalation path in your home folder (**Replace YOUR_USER by your username**):
`"command": ["/home/YOUR_USER/.cargo/bin/slint-lsp"]`
6. Run "LSP: Enable Language Server Globally" or "LSP: Enable Lanuage Server in Project" from Sublime's Command Palette to allow the server to start.

View file

@ -16,7 +16,7 @@
<body>
<p>This is a prototype for an online editor for the Slint language. More info <a
href="https://github.com/sixtyfpsui/sixtyfps">github.com/sixtyfpsui/sixtyfps</a> </p>
href="https://github.com/slint-ui/slint">github.com/slint-ui/slint</a> </p>
<p>Select a demo to load: <select id="select_combo">
<option value="">-- Select a demo --</option>
<option value="examples/gallery/gallery.slint">Gallery</option>

View file

@ -84,7 +84,7 @@ export Demo := Window {
if (found = window.location.pathname.match(/releases\/([^\/]*)\/editor/)) {
tag = "v" + found[1];
}
load_from_url(`https://raw.githubusercontent.com/sixtyfpsui/sixtyfps/${tag}/${select.value}`);
load_from_url(`https://raw.githubusercontent.com/slint-ui/slint/${tag}/${select.value}`);
} else {
clearTabs();
base_url = "";

View file

@ -9,7 +9,7 @@ edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
publish = false
description = "Tool used to update .slint files when we do syntax upgrade"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"

View file

@ -8,7 +8,7 @@ authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
description = "Viewer binary for Slint"
repository = "https://github.com/sixtyfpsui/sixtyfps"
repository = "https://github.com/slint-ui/slint"
homepage = "https://sixtyfps.io"
categories = ["gui", "development-tools"]
keywords = ["viewer", "gui", "ui", "toolkit"]

View file

@ -12,7 +12,7 @@ cargo install slint-viewer
Alternatively, you can download one of our pre-built binaries for Linux or Windows:
1. Open <https://github.com/sixtyfpsui/sixtyfps/releases>
1. Open <https://github.com/slint-ui/slint/releases>
2. Click on the latest release
3. From "Assets" download either `slint-viewer-linux.tar.gz` for a Linux x86-64 binary
or `slint-viewer-windows.zip` for a Windows x86-64 binary.
@ -87,4 +87,4 @@ The program returns with the following error code:
## Examples
`slint-viewer` can be used to display an GUI from a shell script. For examples check out the
[examples/bash](https://github.com/sixtyfpsui/sixtyfps/tree/master/examples/bash) folder in our repository.
[examples/bash](https://github.com/slint-ui/slint/tree/master/examples/bash) folder in our repository.

View file

@ -28,7 +28,7 @@ visible, it is not necessary to save the file.
## Reporting Issues
Issues should be reported in the [Slint issue tracker](https://github.com/sixtyfpsui/sixtyfps/labels/vscode-extension).
Issues should be reported in the [Slint issue tracker](https://github.com/slint-ui/slint/labels/vscode-extension).
## Building from Source

View file

@ -8,7 +8,7 @@
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/sixtyfpsui/sixtyfps"
"url": "https://github.com/slint-ui/slint"
},
"engines": {
"vscode": "^1.52.0"

View file

@ -347,7 +347,7 @@ const EXPECTED_HEADER: LicenseHeader<'static> =
LicenseHeader(&["Copyright © SixtyFPS GmbH <info@sixtyfps.io>", EXPECTED_SPDX_ID]);
const EXPECTED_HOMEPAGE: &str = "https://sixtyfps.io";
const EXPECTED_REPOSITORY: &str = "https://github.com/sixtyfpsui/sixtyfps";
const EXPECTED_REPOSITORY: &str = "https://github.com/slint-ui/slint";
fn collect_files() -> Result<Vec<PathBuf>> {
let root = super::root_dir();