Skip to content

Commit

Permalink
v0.78.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
VHSgunzo committed Nov 17, 2023
1 parent a08ba8c commit eb7ff81
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 24 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# v0.78.1.8

* Update [lwrun](https://huggingface.co/lux-wine/lwrun/tree/main/releases/v0.39.1) packages
* Replace `mhfsize` with [moninfo](https://github.com/VHSgunzo/moninfo) for automatic `MangoHud` font size detection
* Changed the way `GL SHADER` cache is stored
* Fix move `vkd3d-proton.cache`
* Add `RU` translation to [lw-tray](https://github.com/VHSgunzo/lw-tray/releases/tag/v0.0.5) `v0.0.5`

# v0.78.1.7

* Update [lwrun](https://huggingface.co/lux-wine/lwrun/tree/main/releases/v0.39.1) packages
Expand Down
2 changes: 1 addition & 1 deletion lutris-wine
Original file line number Diff line number Diff line change
@@ -1 +1 @@
LW_VERSION="0.78.1.7"
LW_VERSION="0.78.1.8"
4 changes: 2 additions & 2 deletions lux-wine
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

export LW_VERSION="0.78.1.7"
export LW_VERSION="0.78.1.8"
export LW_DEVELOPERS="VHSgunzo"

export RED='\033[1;91m'
Expand Down Expand Up @@ -4332,7 +4332,7 @@ check_mangohud() {
then
if [ -n "$MANGOHUD_FONT_SIZE" ]
then mhfsize=",font_size=$MANGOHUD_FONT_SIZE"
else mhfsize=",font_size=$(mhfsize 2>/dev/null)"
else mhfsize=",font_size=$(moninfo --mhfsize 2>/dev/null)"
fi
if [ -n "$MANGOHUDCFG" ]
then
Expand Down
10 changes: 5 additions & 5 deletions lwrap/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

pkgname='lwrap'
pkgver='0.78.1'
pkgrel='7'
pkgrel='8'
pkgdesc='Lux Wine wrapper for RunImage container'
arch=('x86_64')
url='https://github.com/VHSgunzo/lux-wine'
Expand Down Expand Up @@ -33,23 +33,23 @@ depends=(
'dos2unix' 'lw-runtime' 'wine-gecko' 'wine-mono' 'libdvdread' 'a52dec' 'wavpack' 'lib32-wavpack'
'libmpeg2' 'twolame' 'lib32-twolame' 'gst-plugin-msdk' 'lib32-libdv' 'libdv' 'GE-Proton'
'xxd-standalone' 'obs-vkcapture-lw' 'lib32-obs-vkcapture-lw' 'egl-wayland' 'gstreamer-vaapi'
'python-xlib'
'moninfo'
)
optdepends=(
'xf86-video-amdgpu' 'xf86-video-intel' 'llvm'
'lib32-opencl-icd-loader' 'opencl-icd-loader'
'lib32-llvm' 'wine-prefix-dotnet'
)
source=('lwrap' 'lwexec' 'mhfsize')
sha256sums=('SKIP' 'SKIP' 'SKIP')
source=('lwrap' 'lwexec')
sha256sums=('SKIP' 'SKIP')
install='lwrap.install'

shopt -s extglob

package() {
install -dm755 "$pkgdir/usr/bin"
install -Dm755 "$pkgname" "$pkgdir/opt/$pkgname/bin/$pkgname"
install -Dm755 "lwexec" "$pkgdir/opt/$pkgname/bin/lwexec"
install -Dm755 "mhfsize" "$pkgdir/usr/bin/mhfsize"
cp -ar --no-preserve=ownership "$(realpath ../../)"/!(.git*|$pkgname|lutris-wine) "$pkgdir/opt/$pkgname"
mv -f "$pkgdir/opt/$pkgname/lux-wine" "$pkgdir/opt/$pkgname/bin/lux-wine"
ln -sfr "$pkgdir/opt/$pkgname/bin/$pkgname" "$pkgdir/usr/bin/$pkgname"
Expand Down
36 changes: 36 additions & 0 deletions lwrap/lwrap.install
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
## arg 1: the new package version
# pre_install() {
# true
# }

## arg 1: the new package version
#post_install() {
# do something here
#}

## arg 1: the new package version
## arg 2: the old package version
# pre_upgrade() {
# pre_install
# }

## arg 1: the new package version
## arg 2: the old package version
post_upgrade() {
if pac -Q python-xlib &>/dev/null
then
rm -f /var/lib/pacman/db.lck
yes|pac -Rsn python-xlib
touch /var/lib/pacman/db.lck
fi
}

## arg 1: the old package version
#pre_remove() {
# do something here
#}

## arg 1: the old package version
#post_remove() {
# do something here
#}
16 changes: 0 additions & 16 deletions lwrap/mhfsize

This file was deleted.

0 comments on commit eb7ff81

Please sign in to comment.