Change the Url from sixtyfps.io to slint-ui.com

Also, change the URL of the logo in the docs
This commit is contained in:
Olivier Goffart 2022-02-08 08:48:24 +01:00
parent d1e48540e1
commit 1425ef63de
99 changed files with 161 additions and 161 deletions

View file

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

View file

@ -1,6 +1,6 @@
# The Slint Compiler Library
**NOTE**: This library is an **internal** crate of the [Slint project](https://sixtyfps.io).
**NOTE**: This library is an **internal** crate of the [Slint project](https://slint-ui.com).
This crate should **not be used directly** by applications using Slint.
You should use the `slint` crate instead.

View file

@ -2,7 +2,7 @@
// SPDX-License-Identifier: (GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)
#![doc = include_str!("README.md")]
#![doc(html_logo_url = "https://sixtyfps.io/resources/logo.drawio.svg")]
#![doc(html_logo_url = "https://slint-ui.com/logo/slint-logo-square-light.svg")]
// It would be nice to keep the compiler free of unsafe code
#![deny(unsafe_code)]

View file

@ -6,7 +6,7 @@ function, checking that no error are reported, and that everything was consumed
A parser function must have the signature `fn(&mut impl Parser)`
**NOTE**: This library is an **internal** crate of the [Slint project](https://sixtyfps.io).
**NOTE**: This library is an **internal** crate of the [Slint project](https://slint-ui.com).
This crate should **not be used directly** by applications using Slint.
You should use the `slint` crate instead.

View file

@ -2,7 +2,7 @@
// SPDX-License-Identifier: (GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)
#![doc = include_str!("README.md")]
#![doc(html_logo_url = "https://sixtyfps.io/resources/logo.drawio.svg")]
#![doc(html_logo_url = "https://slint-ui.com/logo/slint-logo-square-light.svg")]
extern crate proc_macro;
use core::iter::IntoIterator;

View file

@ -100,7 +100,7 @@ export AboutSlint := Rectangle {
preferred-width: 256px;
}
Text {
text: "Version 0.2.0\nhttps://sixtyfps.io/";
text: "Version 0.2.0\nhttps://slint-ui.com/";
font-size: 10px;
horizontal-alignment: center;
}