the-honkers-railway-launcher/README.md

76 lines
3.8 KiB
Markdown
Raw Normal View History

| Modern style | Classic style |
| :-: | :-: |
| <picture><source media="(prefers-color-scheme: dark)" srcset="repository/main-modern-dark.png"><img src="repository/main-modern.png"></picture> | <picture><source media="(prefers-color-scheme: dark)" srcset="repository/main-classic-dark.png"><img src="repository/main-classic.png"></picture> |
| <picture><source media="(prefers-color-scheme: dark)" srcset="repository/settings-modern-dark.png"><img src="repository/settings-modern.png"></picture> | <picture><source media="(prefers-color-scheme: dark)" srcset="repository/settings-classic-dark.png"><img src="repository/settings-classic.png"></picture> |
2023-03-15 21:14:08 +00:00
<p align="center">
<a href="https://discord.gg/ck37X6UWBp">Discord</a> ·
2023-03-18 14:09:26 +00:00
<a href="https://matrix.to/#/#an-anime-game:envs.net">Matrix</a> ·
<a href="https://github.com/an-anime-team/an-anime-game-launcher/wiki">Wiki</a>
2023-03-15 21:14:08 +00:00
</p>
2023-03-15 21:14:08 +00:00
<br>
2023-04-21 19:11:40 +00:00
# ♥️ Useful links and thanks
2023-04-21 19:11:40 +00:00
* [macOS launcher](https://github.com/3Shain/yet-another-anime-game-launcher) which contains some additional compatibility components
* [Wiki](https://github.com/an-anime-team/an-anime-game-launcher/wiki) contains some basic FAQ, installation instructions and more
* [Releases page](https://github.com/an-anime-team/an-anime-game-launcher/releases) where you can find latest available version
* [Changelog](CHANGELOG.md) with chronology of the project
<br>
2023-04-21 19:11:40 +00:00
# ⬇️ Download
| Distribution | Format | Wiki | Source |
| - | - | - | - |
| Fedora | Flatpak | [link](https://github.com/an-anime-team/an-anime-game-launcher/wiki/Installation#-any-distribution-flatpak) | - |
| Arch Linux, Manjaro | AUR | [link](https://github.com/an-anime-team/an-anime-game-launcher/wiki/Installation#-arch-linux-aur) | [an-anime-game-launcher-bin](https://aur.archlinux.org/packages/an-anime-game-launcher-bin) |
| Fedora, OpenSUSE | RPM | [link](https://github.com/an-anime-team/an-anime-game-launcher/wiki/Installation#-fedora-rpm) | [AAGL](https://build.opensuse.org/repositories/home:Maroxy:AAT-Apps/AAGL) |
| Ubuntu | pacstall | - | [an-anime-game-launcher-bin](https://pacstall.dev/packages/an-anime-game-launcher-bin) |
2024-04-16 18:47:57 +00:00
| Gentoo | ebuild | [link](https://github.com/an-anime-team/an-anime-game-launcher/wiki/Installation#-gentoo-linux-ebuild) | [aagl-ebuilds](https://github.com/an-anime-team/gentoo-ebuilds) |
| NixOS | nixpkg | [link](https://github.com/an-anime-team/an-anime-game-launcher/wiki/Installation#-nixos-nixpkg) | [aagl-gtk-on-nix](https://github.com/ezKEa/aagl-gtk-on-nix) |
To see the installation guides, please visit the wiki page [here](https://github.com/an-anime-team/an-anime-game-launcher/wiki/Installation)
Lutris integration described [here](https://github.com/an-anime-team/an-anime-game-launcher/wiki/Installation#-lutris)
## Chinese version support
2023-04-21 19:11:40 +00:00
This should be automatically enabled if you're using zh_cn (Chinese) as your system language. If you're not using it - you can change the game edition in the launcher settings
2022-08-24 19:06:03 +00:00
<br>
2023-04-21 19:11:40 +00:00
# 💻 Development
2022-06-28 21:59:20 +00:00
| Folder | Description |
| - | - |
| src | Rust source code |
2023-01-18 16:38:12 +00:00
| assets | App assets folder |
| assets/locales | App localizations |
2022-06-28 21:59:20 +00:00
| target/release | Release build of the app |
2022-08-26 09:51:07 +00:00
## Clone repo
2022-06-28 21:59:20 +00:00
```sh
git clone --recursive https://github.com/an-anime-team/an-anime-game-launcher
2022-06-28 21:59:20 +00:00
```
2022-08-26 09:51:07 +00:00
## Run app
2022-06-28 21:59:20 +00:00
```sh
cargo run
```
2022-08-26 09:51:07 +00:00
## Build app
2022-06-28 21:59:20 +00:00
```sh
cargo build --release
```
2023-03-19 14:50:21 +00:00
## Updates strategy
Starting from 3.2.1 ([fcab428](https://github.com/an-anime-team/an-anime-game-launcher/commit/fcab428cb40b1457f41e0856f9d1e1473acbe653)) we have 2 branches: stable ([main](https://github.com/an-anime-team/an-anime-game-launcher/tree/main)) and dev ([next](https://github.com/an-anime-team/an-anime-game-launcher/tree/next)). Code changes will be pushed into dev branch and merged into stable once they're ready for new version release
2023-03-19 15:03:59 +00:00
<img src="repository/branches.png" />