2022-06-29 00:59:20 +03:00
|
|
|
# An Anime Game Launcher GTK
|
|
|
|
|
2022-08-04 00:24:11 +03:00
|
|
|
The launcher variant written on Rust, GTK4 and libadwaita, using [Anime Game Core](https://gitlab.com/an-anime-team/anime-game-core) library
|
2022-06-29 00:59:20 +03:00
|
|
|
|
2022-08-05 23:33:47 +03:00
|
|
|
<img src="https://gitlab.com/an-anime-team/an-anime-game-launcher/-/raw/main/repository/pics/logo.jpg">
|
2022-08-04 00:24:11 +03:00
|
|
|
<img src="repository/pictures/main.png">
|
|
|
|
<img src="repository/pictures/settings.png">
|
2022-06-29 00:59:20 +03:00
|
|
|
|
|
|
|
## Development
|
|
|
|
|
|
|
|
| Folder | Description |
|
|
|
|
| - | - |
|
|
|
|
| ui | Blueprint UI files |
|
|
|
|
| ui/.dist | UI files compiled by the blueprint |
|
|
|
|
| src | Rust source code |
|
|
|
|
| target/release | Release build of the app |
|
|
|
|
| blueprint-compiler | Blueprint compiler |
|
|
|
|
| anime-game-core | Anime Game Core library |
|
|
|
|
|
|
|
|
### Clone repo
|
|
|
|
|
|
|
|
```sh
|
|
|
|
git clone --recursive https://gitlab.com/an-anime-team/an-anime-game-launcher-gtk
|
|
|
|
```
|
|
|
|
|
|
|
|
### Run app
|
|
|
|
|
|
|
|
```sh
|
|
|
|
cargo run
|
|
|
|
```
|
|
|
|
|
|
|
|
### Build app
|
|
|
|
|
|
|
|
```sh
|
|
|
|
cargo build --release
|
|
|
|
```
|
2022-07-28 21:17:58 +03:00
|
|
|
|
|
|
|
### Building AppImage
|
|
|
|
|
|
|
|
```
|
2022-08-04 16:59:52 +03:00
|
|
|
./scripts/build.sh
|
2022-07-28 21:17:58 +03:00
|
|
|
```
|