diff --git a/apps/Wine (x64)/description b/apps/Wine (x64)/description index a383285f45..e888aac9cd 100644 --- a/apps/Wine (x64)/description +++ b/apps/Wine (x64)/description @@ -1,4 +1,4 @@ -Run x86 and x64 Windows apps with a box64-emulated version x86/x64 wine-8.18 (WOW64 mode enabled). +Run x86 and x64 Windows apps with a box64-emulated version x86/x64 wine-8.19 (WOW64 mode enabled). To run: wine path/to/file.exe To configure wine: go to 'Wine configuration' in main menu or type in terminal: wine winecfg Not all Windows applications will work under Wine. It's a good idea to check online if your program can run, or if something can be tweaked to make it work. diff --git a/apps/Wine (x64)/install-64 b/apps/Wine (x64)/install-64 index e974bd339a..89e4dfb26a 100755 --- a/apps/Wine (x64)/install-64 +++ b/apps/Wine (x64)/install-64 @@ -1,7 +1,7 @@ #!/bin/bash #note to maintainer, if you change the below version make sure to update it in the uninstall script as well -version=8.18 +version=8.19 # https://github.com/raspberrypi/bookworm-feedback/issues/107 PAGE_SIZE="$(getconf PAGE_SIZE)" @@ -63,12 +63,12 @@ sudo mv /tmp/winetricks /opt/wine-${version}/bin/winetricks || error "Failed to sudo chmod +x /opt/wine-${version}/bin/winetricks #download Mono to universal location (to be installed automatically in all wine prefixes) -#according to https://wiki.winehq.org/Mono#Versions, use Mono 8.0.0 for Wine 8.11 +#according to https://wiki.winehq.org/Mono#Versions, use Mono 8.1.0 for Wine 8.11 #wine mono pacakge is called -x86 but contains both x86 and x86_64 binaries sudo mkdir -p /opt/wine-${version}/share/wine/mono -wget -O "/tmp/wine-mono-8.0.0-x86.tar.xz" 'https://dl.winehq.org/wine/wine-mono/8.0.0/wine-mono-8.0.0-x86.tar.xz' || exit 1 -sudo tar -xvf "/tmp/wine-mono-8.0.0-x86.tar.xz" -C "/opt/wine-${version}/share/wine/mono" || exit 1 -rm -f "/tmp/wine-mono-8.0.0-x86.tar.xz" +wget -O "/tmp/wine-mono-8.1.0-x86.tar.xz" 'https://dl.winehq.org/wine/wine-mono/8.1.0/wine-mono-8.1.0-x86.tar.xz' || exit 1 +sudo tar -xvf "/tmp/wine-mono-8.1.0-x86.tar.xz" -C "/opt/wine-${version}/share/wine/mono" || exit 1 +rm -f "/tmp/wine-mono-8.1.0-x86.tar.xz" #download Gecko to universal location (to be installed automatically in all wine prefixes) #according to https://wiki.winehq.org/Gecko, use Gecko 2.47.4 for Wine 8.11 diff --git a/apps/Wine (x64)/uninstall b/apps/Wine (x64)/uninstall index d9041eff7c..3921aaad75 100755 --- a/apps/Wine (x64)/uninstall +++ b/apps/Wine (x64)/uninstall @@ -1,6 +1,6 @@ #!/bin/bash -version=8.18 +version=8.19 pkill -9 wine command -v wineserver >/dev/null && wineserver -k diff --git a/apps/Wine (x86)/description b/apps/Wine (x86)/description index 5998e760b6..1cf3ed634d 100644 --- a/apps/Wine (x86)/description +++ b/apps/Wine (x86)/description @@ -1,4 +1,4 @@ -Run x86 Windows apps with a box86-emulated version of x86 wine-8.18. +Run x86 Windows apps with a box86-emulated version of x86 wine-8.19. To run: wine path/to/file.exe To configure wine: go to 'Wine configuration' in main menu or type in terminal: wine winecfg Not all Windows applications will work under Wine. It's a good idea to check online if your program can run, or if something can be tweaked to make it work. diff --git a/apps/Wine (x86)/install-32 b/apps/Wine (x86)/install-32 index a719df0ce6..bf4453aa2f 100755 --- a/apps/Wine (x86)/install-32 +++ b/apps/Wine (x86)/install-32 @@ -132,7 +132,7 @@ fi #Past this point, the pi is running a Wine-compatible kernel. #note to maintainer, if you change the below version make sure to update it in the uninstall script as well -version=8.18 +version=8.19 #install box86 "${DIRECTORY}/manage" install-if-not-installed Box86 || error "Box86 failed to install somehow!" @@ -170,10 +170,10 @@ sudo mv /tmp/winetricks /opt/wine-${version}/bin/winetricks || error "Failed to sudo chmod +x /opt/wine-${version}/bin/winetricks #download Mono to universal location (to be installed automatically in all wine prefixes) -#according to https://wiki.winehq.org/Mono#Versions, use Mono 8.0.0 for Wine 8.11 +#according to https://wiki.winehq.org/Mono#Versions, use Mono 8.1.0 for Wine 8.11 sudo mkdir -p /opt/wine-${version}/share/wine/mono -wget -O "/tmp/wine-mono-8.0.0-x86.tar.xz" 'https://dl.winehq.org/wine/wine-mono/8.0.0/wine-mono-8.0.0-x86.tar.xz' || exit 1 -sudo tar -xvf "/tmp/wine-mono-8.0.0-x86.tar.xz" -C "/opt/wine-${version}/share/wine/mono" || exit 1 +wget -O "/tmp/wine-mono-8.1.0-x86.tar.xz" 'https://dl.winehq.org/wine/wine-mono/8.1.0/wine-mono-8.1.0-x86.tar.xz' || exit 1 +sudo tar -xvf "/tmp/wine-mono-8.1.0-x86.tar.xz" -C "/opt/wine-${version}/share/wine/mono" || exit 1 #download Gecko to universal location (to be installed automatically in all wine prefixes) #according to https://wiki.winehq.org/Gecko, use Gecko 2.47.4 for Wine 8.11 diff --git a/apps/Wine (x86)/uninstall b/apps/Wine (x86)/uninstall index 72365ffe99..480147fae2 100755 --- a/apps/Wine (x86)/uninstall +++ b/apps/Wine (x86)/uninstall @@ -1,6 +1,6 @@ #!/bin/bash -version=8.18 +version=8.19 pkill -9 wine command -v wineserver >/dev/null && wineserver -k