mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-12-25 11:08:15 +03:00
Preparations to 1.6.1 release (part 2)
- added wineserver env to winetricks - added cabextract requirement
This commit is contained in:
parent
db6612db0a
commit
0240b282f2
2 changed files with 11 additions and 6 deletions
15
README.md
15
README.md
|
@ -46,23 +46,26 @@ This launcher is also available as the [an-anime-game-launcher](https://aur.arch
|
||||||
|
|
||||||
To work this launcher requires
|
To work this launcher requires
|
||||||
|
|
||||||
* unzip
|
| Name | Description |
|
||||||
* tar
|
| --- | --- |
|
||||||
* git
|
| unzip | To unpack zip archives (DXVKs / wines) |
|
||||||
* xdelta3
|
| tar | To unpack tar archives (DXVKs / wines) |
|
||||||
|
| git | To check for new versions of the launcher |
|
||||||
|
| xdelta3 | To apply the patch to the game |
|
||||||
|
| cabextract | To install fonts to the wine prefix |
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
### apt-get
|
### apt-get
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
sudo apt-get install unzip tar git xdelta3
|
sudo apt-get install unzip tar git xdelta3 cabextract
|
||||||
```
|
```
|
||||||
|
|
||||||
### pacman
|
### pacman
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
sudo pacman -Syu unzip tar git xdelta3
|
sudo pacman -Syu unzip tar git xdelta3 cabextract
|
||||||
```
|
```
|
||||||
|
|
||||||
# Additional requirements
|
# Additional requirements
|
||||||
|
|
|
@ -266,6 +266,8 @@ export default class LauncherLib
|
||||||
LauncherLib.getConfig('runner.executable')
|
LauncherLib.getConfig('runner.executable')
|
||||||
);
|
);
|
||||||
|
|
||||||
|
env['WINESERVER'] = path.join(path.dirname(env['WINE']), 'wineserver');
|
||||||
|
|
||||||
if (!fs.existsSync(env['WINE']))
|
if (!fs.existsSync(env['WINE']))
|
||||||
console.error(`Patcher supposed to use ${LauncherLib.getConfig('runner.name')} runner, but it doesn't installed`);
|
console.error(`Patcher supposed to use ${LauncherLib.getConfig('runner.name')} runner, but it doesn't installed`);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue