- updated typescript, electron-builder and electron versions
- updated readme:
+ added link to the discord server
+ added roadmap goal
+ added development delay notification
- added new lutris and proton-ge versions
- updated launcher's banner
- removed old config file compatibility check
This commit is contained in:
Observer KRypt0n_ 2021-11-22 21:10:30 +02:00
parent 8e1722fa91
commit 8ab17f954a
No known key found for this signature in database
GPG key ID: DC5D4EC1303465DA
6 changed files with 62 additions and 16 deletions

4
.gitignore vendored
View file

@ -8,8 +8,10 @@ public/css/*
public/js
repository-pics/logo.xcf
repository-pics/logos
package-lock.json
yarn.lock
wineprefix-installation.log
deletefiles.txt
deletefiles.txt
predownload_resources.json

View file

@ -18,6 +18,8 @@
> ⚠️ New patch's version will be delayed for a week because of some author's personal reasons
We have our own [An Anime Game](https://discord.gg/MA8fTBarfj) discord server where you can ask any questions
### AppImage
Download AppImage from [Releases](https://notabug.org/nobody/an-anime-game-launcher/releases) page
@ -30,8 +32,6 @@ This launcher also available as the [an-anime-game-launcher](https://aur.archlin
### ⚠️ Please, be careful with 2.3.0 game's release. It may suddenly break game's patch state
### ⚠️ Also patch's repository will be changed and you will HAVE to update launcher to the newest version
<br>
## Usage statistics
@ -130,5 +130,12 @@ npm start
- Applying anti login crash patch
- Remove patch
* DXVK logs auto-deletion option
* Game update pre-downloading
And don't forget to change the patch's URI when it will be changed
And don't forget to change the patch's URI when it will be changed
> Now I'm working on moving the project to the Tauri. Also for some personal reasons I, like the patch's author, will be busy, but until Christmas, so it's a bit more than a month. I will make some critical updates if they will be required, but the development will be frozen for this period. I hope you will enjoy playing the game, and I will enjoy continuing the development of this project
>
> And, by the way, @Maroxy helped me to create the discord server for this project. I will sometimes appear there and you will be able to ask me about something if you want, ehe
>
> November 22

View file

@ -1,6 +1,6 @@
{
"name": "an-anime-game-launcher",
"version": "1.5.4",
"version": "1.5.5",
"description": "An Anime Game Linux Launcher",
"author": "Nikita Podvirnyy <suimin.tu.mu.ga.mi@gmail.com>",
"contributors": [
@ -43,10 +43,10 @@
"@types/command-exists": "^1.2.0",
"@types/discord-rpc": "^4.0.0",
"@types/semver": "^7.3.9",
"electron": "^16.0.0",
"electron-builder": "^22.13.1",
"electron": "^16.0.1",
"electron-builder": "^22.14.5",
"sass": "^1.43.4",
"typescript": "^4.4.4"
"typescript": "^4.5.2"
},
"dependencies": {
"cash-dom": "^8.1.0",

View file

@ -2,6 +2,42 @@
{
"title": "Lutris",
"runners": [
{
"name": "Lutris 6.21-4",
"version": "6.21-4",
"uri": "https://github.com/lutris/wine/releases/download/lutris-6.21-4/wine-lutris-6.21-4-x86_64.tar.xz",
"archive": "tar",
"folder": "lutris-6.21-4-x86_64",
"makeFolder": false,
"executable": "bin/wine64"
},
{
"name": "Lutris 6.21-3",
"version": "6.21-3",
"uri": "https://github.com/lutris/wine/releases/download/lutris-6.21-3/wine-lutris-6.21-3-x86_64.tar.xz",
"archive": "tar",
"folder": "lutris-6.21-3-x86_64",
"makeFolder": false,
"executable": "bin/wine64"
},
{
"name": "Lutris 6.21-2",
"version": "6.21-2",
"uri": "https://github.com/lutris/wine/releases/download/lutris-6.21-2/wine-lutris-6.21-2-x86_64.tar.xz",
"archive": "tar",
"folder": "lutris-6.21-2-x86_64",
"makeFolder": false,
"executable": "bin/wine64"
},
{
"name": "Lutris 6.21",
"version": "6.21",
"uri": "https://github.com/lutris/wine/releases/download/lutris-6.21/wine-lutris-6.21-x86_64.tar.xz",
"archive": "tar",
"folder": "lutris-6.21-x86_64",
"makeFolder": false,
"executable": "bin/wine64"
},
{
"name": "Lutris 6.14-4",
"version": "6.14-4",
@ -70,6 +106,15 @@
{
"title": "Proton-GE",
"runners": [
{
"name": "Proton-6.21-GE-2",
"version": "6.21-GE-2",
"uri": "https://github.com/GloriousEggroll/proton-ge-custom/releases/download/6.21-GE-2/Proton-6.21-GE-2.tar.gz",
"archive": "tar",
"folder": "Proton-6.21-GE-2",
"makeFolder": false,
"executable": "files/bin/wine64"
},
{
"name": "Proton-6.20-GE-1",
"version": "6.20-GE-1",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 103 KiB

After

Width:  |  Height:  |  Size: 164 KiB

View file

@ -24,14 +24,6 @@ if (!fs.existsSync(constants.runnersDir))
if (!fs.existsSync(constants.dxvksDir))
fs.mkdirSync(constants.dxvksDir, { recursive: true });
/**
* Compatibilities
*/
// 1.5.2 -> ^1.6.0 (removed auto-theme option)
if (typeof LauncherLib.getConfig('autotheme') == 'boolean')
LauncherLib.deleteConfig('autotheme');
$(() => {
document.title = `${constants.placeholders.uppercase.full} Linux Launcher`;