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

@ -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
);