Changed repos links to github

This commit is contained in:
Observer KRypt0n_ 2022-08-26 10:51:36 +02:00
parent f4684dcf32
commit 17ad2f718a
No known key found for this signature in database
GPG key ID: 844DA47BA25FE1E2
4 changed files with 10 additions and 10 deletions

2
.gitmodules vendored
View file

@ -3,4 +3,4 @@
url = https://gitlab.gnome.org/jwestman/blueprint-compiler url = https://gitlab.gnome.org/jwestman/blueprint-compiler
[submodule "anime-game-core"] [submodule "anime-game-core"]
path = anime-game-core path = anime-game-core
url = https://gitlab.com/an-anime-team/anime-game-core url = https://github.com/an-anime-team/anime-game-core

View file

@ -1,20 +1,20 @@
# An Anime Game Launcher GTK # An Anime Game Launcher GTK
The launcher variant written on Rust, GTK4 and libadwaita, using [Anime Game Core](https://gitlab.com/an-anime-team/anime-game-core) library The launcher variant written on Rust, GTK4 and libadwaita, using [Anime Game Core](https://github.com/an-anime-team/anime-game-core) library
<img src="https://gitlab.com/an-anime-team/an-anime-game-launcher/-/raw/main/repository/pics/logo.jpg"> <img src="https://github.com/an-anime-team/an-anime-game-launcher/raw/main/repository/pics/logo.jpg">
<img src="repository/pictures/main.png"> <img src="repository/pictures/main.png">
<img src="repository/pictures/settings.png"> <img src="repository/pictures/settings.png">
<br> <br>
<p align="center">You could also try <a href="https://gitlab.com/an-anime-team/an-anime-game-launcher">the main branch</a></p> <p align="center">You could also try <a href="https://github.com/an-anime-team/an-anime-game-launcher">the main branch</a></p>
<br> <br>
## Documentation ## Documentation
I wrote small documentation [here](https://gitlab.com/an-anime-team/alternatives/an-anime-game-launcher-gtk/-/wikis/home). It may contain some useful information I wrote small documentation [here](https://github.com/an-anime-team/an-anime-game-launcher-gtk/wiki). It may contain some useful information
## Chinese version support ## Chinese version support
@ -34,7 +34,7 @@ This should be automatically enabled if you're using zh_cn (Chinese) as your sys
### Clone repo ### Clone repo
```sh ```sh
git clone --recursive https://gitlab.com/an-anime-team/an-anime-game-launcher-gtk git clone --recursive https://github.com/an-anime-team/an-anime-game-launcher-gtk
``` ```
### Run app ### Run app

View file

@ -112,7 +112,7 @@ Gtk.AboutDialog about {
program-name: "An Anime Game Launcher"; program-name: "An Anime Game Launcher";
logo: "resource:///org/app/assets/images/icon.png"; logo: "resource:///org/app/assets/images/icon.png";
website: "https://gitlab.com/an-anime-team/alternatives/an-anime-game-launcher-gtk"; website: "https://github.com/an-anime-team/an-anime-game-launcher-gtk";
modal: true; modal: true;
transient-for: window; transient-for: window;

View file

@ -107,7 +107,7 @@ impl AppWidgets {
result.about.set_license_type(gtk::License::Gpl30); result.about.set_license_type(gtk::License::Gpl30);
result.about.set_authors(&[ result.about.set_authors(&[
"Nikita Podvirnyy <suimin.tu.mu.ga.mi@gmail.com>" "Nikita Podvirnyy https://github.com/krypt0nn"
]); ]);
result.about.add_credit_section("Logo", &[ result.about.add_credit_section("Logo", &[
@ -115,8 +115,8 @@ impl AppWidgets {
]); ]);
result.about.add_credit_section("An Anime Team", &[ result.about.add_credit_section("An Anime Team", &[
"@Marie https://gitlab.com/Maroxy", "@Marie https://github.com/Mar0xy",
"@lane https://gitlab.com/lane__" "@lane https://github.com/laurinneff"
]); ]);
let curl_info = anime_game_core::curl_sys::Version::get(); let curl_info = anime_game_core::curl_sys::Version::get();