- Update to 3.4 development release
- More Vulkan support, including integration with the X11 driver. - Better handling of privileged instructions on x86-64. - Hex edit dialog improvements in RegEdit. - Assortment of patches merged from wine-staging. - Various bug fixes. - updated winetricks OBS-URL: https://build.opensuse.org/package/show/Emulators/wine?expand=0&rev=485
This commit is contained in:
parent
14f9722918
commit
7a48f6d73a
11
wine.changes
11
wine.changes
@ -1,3 +1,14 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 16 19:28:06 UTC 2018 - meissner@suse.com
|
||||
|
||||
- Update to 3.4 development release
|
||||
- More Vulkan support, including integration with the X11 driver.
|
||||
- Better handling of privileged instructions on x86-64.
|
||||
- Hex edit dialog improvements in RegEdit.
|
||||
- Assortment of patches merged from wine-staging.
|
||||
- Various bug fixes.
|
||||
- updated winetricks
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 14:54:42 UTC 2018 - crrodriguez@opensuse.org
|
||||
|
||||
|
28
winetricks
28
winetricks
@ -5367,7 +5367,7 @@ helper_win7sp1_x64()
|
||||
w_metadata adobeair dlls \
|
||||
title="Adobe AIR" \
|
||||
publisher="Adobe" \
|
||||
year="2017" \
|
||||
year="2018" \
|
||||
media="download" \
|
||||
file1="AdobeAIRInstaller.exe" \
|
||||
installed_file1="$W_COMMONFILES_X86_WIN/Adobe AIR/Versions/1.0/Adobe AIR.dll" \
|
||||
@ -5377,7 +5377,8 @@ load_adobeair()
|
||||
{
|
||||
# 2017/03/14: 20.0.0.260 (strings 'Adobe AIR.dll' | grep 20\\. ) sha256sum 318770b9a18e59ca4a721a1f5c2b0235cffdbe77a043e99cb2af32074d61de45
|
||||
# 2018/01/30: 28.0.0.127 (strings 'Adobe AIR.dll' | grep 28\\. ) sha256sum 9076489e273652089a4a53a1d38c6631e8b7477e39426a843e0273f25bfb109f
|
||||
w_download https://airdownload.adobe.com/air/win/download/latest/AdobeAIRInstaller.exe 9076489e273652089a4a53a1d38c6631e8b7477e39426a843e0273f25bfb109f
|
||||
# 2018/03/16: 29.0.0.112 (strings 'Adobe AIR.dll' | grep -E "^29\..+\..+" ) sha256sum 5186b54682644a30f2be61c9b510de9a9a76e301bc1b42f0f1bc50bd809a3625
|
||||
w_download https://airdownload.adobe.com/air/win/download/latest/AdobeAIRInstaller.exe 5186b54682644a30f2be61c9b510de9a9a76e301bc1b42f0f1bc50bd809a3625
|
||||
w_try_cd "$W_CACHE/$W_PACKAGE"
|
||||
|
||||
# See https://bugs.winehq.org/show_bug.cgi?id=43506
|
||||
@ -9237,7 +9238,7 @@ load_setupapi()
|
||||
w_metadata shockwave dlls \
|
||||
title="Shockwave" \
|
||||
publisher="Adobe" \
|
||||
year="2017" \
|
||||
year="2018" \
|
||||
media="download" \
|
||||
file1="sw_lic_full_installer.msi" \
|
||||
installed_file1="$W_SYSTEM32_DLLS_WIN/Adobe/Shockwave 12/shockwave_Projector_Loader.dcr"
|
||||
@ -9247,7 +9248,8 @@ load_shockwave() {
|
||||
# 2017/03/15: 58f2152bf726d52f08fb41f904c62ff00fdf748c8ce413e8c8547da3a21922ba
|
||||
# 2017/08/03: bebebaef1644a994179a2e491ce3f55599d768f7c6019729f21e7029b1845b9c
|
||||
# 2017/12/12: 0a9813ac55a8718440518dc2f5f410a3a065b422fe0618c073bfc631b9abf12c
|
||||
w_download https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi 0a9813ac55a8718440518dc2f5f410a3a065b422fe0618c073bfc631b9abf12c
|
||||
# 2018/03/16: 4d7b408cf5b65a522b071d7d9ddbc5f6964911a7d55c418e31f393e6055cf796
|
||||
w_download https://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/sw_lic_full_installer.msi 4d7b408cf5b65a522b071d7d9ddbc5f6964911a7d55c418e31f393e6055cf796
|
||||
|
||||
w_try_cd "$W_CACHE/$W_PACKAGE"
|
||||
w_try "$WINE" msiexec /i sw_lic_full_installer.msi $W_UNATTENDED_SLASH_Q
|
||||
@ -10000,6 +10002,24 @@ load_vjrun20()
|
||||
|
||||
#----------------------------------------------------------------
|
||||
|
||||
w_metadata vulkansdk dlls \
|
||||
title="Vulkan SDK 1.0.68 (developers only)" \
|
||||
publisher="LunarG" \
|
||||
year="2018" \
|
||||
media="download" \
|
||||
file1="VulkanSDK-1.0.68.0-Installer.exe" \
|
||||
installed_file1="C:/VulkanSDK/1.0.68.0/Vulkan.ico"
|
||||
|
||||
load_vulkansdk()
|
||||
{
|
||||
# https://vulkan.lunarg.com/sdk/home
|
||||
w_download "https://sdk.lunarg.com/sdk/download/1.0.68.0/windows/VulkanSDK-1.0.68.0-Installer.exe" 8e6401d4f90af1ab384f76cb59f1b7fe9bcd717c92b2080089f893f2de4b33bb
|
||||
w_try_cd "$W_CACHE/$W_PACKAGE"
|
||||
w_try "$WINE" "$file1" $W_UNATTENDED_SLASH_S
|
||||
}
|
||||
|
||||
#----------------------------------------------------------------
|
||||
|
||||
w_metadata webio dlls \
|
||||
title="MS Windows Web I/O" \
|
||||
publisher="Microsoft" \
|
||||
|
Loading…
Reference in New Issue
Block a user