Domain: slint-ui.com -> slint.dev

This commit is contained in:
Olivier Goffart 2023-06-16 09:37:34 +02:00 committed by Olivier Goffart
parent 24c822dd60
commit 11dea135f7
1248 changed files with 1542 additions and 1542 deletions

View file

@ -19,19 +19,19 @@ from our business logic.
Inside the <span class="hljs-built_in">Rectangle</span> we place an <span class="hljs-built_in">Image</span> element that
loads an icon with the <span class="hljs-built_in">@image-url()</span> macro. The path is relative to the folder in which
the `memory.slint` is located. This icon and others we're going to use later need to be installed first. You can download a
[Zip archive](https://slint-ui.com/blog/memory-game-tutorial/icons.zip) that we have prepared.
[Zip archive](https://slint.dev/blog/memory-game-tutorial/icons.zip) that we have prepared.
If you are on Linux or macOS, download and extract it with the following two commands:
```sh
curl -O https://slint-ui.com/blog/memory-game-tutorial/icons.zip
curl -O https://slint.dev/blog/memory-game-tutorial/icons.zip
unzip icons.zip
```
If you are on Windows, use the following commands:
```
powershell curl -Uri https://slint-ui.com/blog/memory-game-tutorial/icons.zip -Outfile icons.zip
powershell curl -Uri https://slint.dev/blog/memory-game-tutorial/icons.zip -Outfile icons.zip
powershell Expand-Archive -Path icons.zip -DestinationPath .
```
@ -39,4 +39,4 @@ This should unpack an `icons` directory containing a bunch of icons.
We running the program with `npm start` and it gives us a window on the screen that shows the icon of a bus on a blue background.
![Screenshot of the first tile](https://slint-ui.com/blog/memory-game-tutorial/memory-tile.png "Memory Tile Screenshot")
![Screenshot of the first tile](https://slint.dev/blog/memory-game-tutorial/memory-tile.png "Memory Tile Screenshot")