Skip to content

Commit

Permalink
v0.75.r0
Browse files Browse the repository at this point in the history
  • Loading branch information
VHSgunzo committed Sep 24, 2022
1 parent b6d0045 commit b9d7ede
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 67 deletions.
2 changes: 1 addition & 1 deletion PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Maintainer: VHSgunzo <vhsgunzo.github.io>
pkgname='lutris-wine-git'
pkgver='0.74.r7'
pkgver='0.75.r0'
pkgrel='1'
pkgdesc='Easy launch of your Windows applications and games with Wine/Proton'
arch=('any')
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ All Arch-based distributions
- [x] Disabling MONO (.NET Core)
- [x] Various optimizations for better gaming performance
- [x] Ability to use Lutris runtime (with system library priority if needed)
- [x] Custom EXE DB launch helper scripts, like this [LOL anticheat helper](https://github.com/VHSgunzo/lutris-wine/blob/main/db/LeagueClient.lwdb)
- [x] Custom EXE DB launch helper [scripts](https://github.com/VHSgunzo/lutris-wine/blob/main/db)
- [x] Custom loading bar animation
- [x] Old OpenGL String
- [x] Wine virtual desktop
Expand Down
File renamed without changes.
3 changes: 3 additions & 0 deletions db/#steam.lwdb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
check_win_version '10'
check_exe_args "-no-browser +open steam://open/minigameslist"
10 changes: 5 additions & 5 deletions db/GenshinImpact.lwdb
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ check_deps() {
}

check_gi_patch() {
DIR="$WINEPREFIX/drive_c/Program Files/gi_patch280"
DIR="$WINEPREFIX/drive_c/Program Files/gi_patch300"
if [ ! -d "$DIR" ]
then
if try_download "https://github.com/VHSgunzo/gi_patch/releases/download/v2.8/gi_patch280.tar.gz" "$WINEPREFIX/drive_c/Program Files"
if try_download "https://github.com/VHSgunzo/gi_patch/releases/download/v3.0/gi_patch300.tar.gz" "$WINEPREFIX/drive_c/Program Files"
then
if unpack_tar_gz "$DIR.tar.gz" "$WINEPREFIX/drive_c/Program Files"
then
Expand All @@ -35,11 +35,11 @@ launch_helper() {
CEXE1="$DATADIR/upload_crash.exe"
CEXE2="$DATADIR/Plugins/crashreport.exe"
sum=($(md5sum $FILE))
if [ "$sum" == "4fda0637c20bde7ee19a08494a43b9f4" ]
if [ "$sum" == "edd835e7c09792d4c84de7f594b948c0" ]
then
print_info notify "Patch is already applied!"
else
if [ "${sum}" == "630272a9dd85b7732576b09bae9b9c7b" ]
if [ "${sum}" == "d9d4f1618a461071376b1fe002702ef2" ]
then
reltype="os"
print_info notify "Applying patch for: International (OS) version"
Expand Down Expand Up @@ -85,7 +85,7 @@ launch_helper() {
try_cp "$DIR/mhyprot2_running.reg" ./
print_info notify "Patching UnityPlayer"
try_mv "$FILE" "$FILE.bak"
if xdelta3 -d -s "$FILE.bak" "$DIR/unityplayer_patch_${reltype}.vcdiff" "$FILE"
if xdelta3 -f -d -s "$FILE.bak" "$DIR/unityplayer_patch_${reltype}.vcdiff" "$FILE"
then
print_info notify "Patch applied! Enjoy the game."
else
Expand Down
Loading

0 comments on commit b9d7ede

Please sign in to comment.