- Updated to 1.9.16 development snapshot
- Better 64-bit binary compatibility on macOS. - Performance improvements in JavaScript. - More progress towards the Direct3D command stream. - More shader instructions in Direct3D. - Performance improvements in GDI. - Various bug fixes. - updated winetricks OBS-URL: https://build.opensuse.org/package/show/Emulators/wine?expand=0&rev=365
This commit is contained in:
81
winetricks
81
winetricks
@@ -2,7 +2,7 @@
|
||||
|
||||
# Name of this version of winetricks (YYYYMMDD)
|
||||
# (This doesn't change often, use the sha1sum of the file when reporting problems)
|
||||
WINETRICKS_VERSION=20160628
|
||||
WINETRICKS_VERSION=20160724
|
||||
|
||||
# This is a UTF-8 file
|
||||
# You should see an o with two dots over it here [ö]
|
||||
@@ -1973,6 +1973,34 @@ _EOF_
|
||||
csdversion_hex=dword:00000100
|
||||
"$WINE" reg add "HKLM\\System\\CurrentControlSet\\Control\\ProductOptions" /v ProductType /d "WinNT" /f
|
||||
;;
|
||||
win2k8)
|
||||
csdversion="Service Pack 1"
|
||||
currentbuildnumber="7601"
|
||||
currentversion="6.1"
|
||||
csdversion_hex=dword:00000100
|
||||
"$WINE" reg add "HKLM\\System\\CurrentControlSet\\Control\\ProductOptions" /v ProductType /d "ServerNT" /f
|
||||
;;
|
||||
win8)
|
||||
csdversion=" "
|
||||
currentbuildnumber="9200"
|
||||
currentversion="6.2"
|
||||
csdversion_hex=dword:00000000
|
||||
"$WINE" reg add "HKLM\\System\\CurrentControlSet\\Control\\ProductOptions" /v ProductType /d "WinNT" /f
|
||||
;;
|
||||
win81)
|
||||
csdversion=" "
|
||||
currentbuildnumber="9600"
|
||||
currentversion="6.3"
|
||||
csdversion_hex=dword:00000000
|
||||
"$WINE" reg add "HKLM\\System\\CurrentControlSet\\Control\\ProductOptions" /v ProductType /d "WinNT" /f
|
||||
;;
|
||||
win10)
|
||||
csdversion=" "
|
||||
currentbuildnumber="10240"
|
||||
currentversion="10.0"
|
||||
csdversion_hex=dword:00000000
|
||||
"$WINE" reg add "HKLM\\System\\CurrentControlSet\\Control\\ProductOptions" /v ProductType /d "WinNT" /f
|
||||
;;
|
||||
*)
|
||||
w_die "Invalid Windows version given."
|
||||
;;
|
||||
@@ -9449,9 +9477,9 @@ load_lucida()
|
||||
w_metadata opensymbol fonts \
|
||||
title="OpenSymbol fonts (replacement for Wingdings)" \
|
||||
publisher="OpenOffice.org" \
|
||||
year="2014" \
|
||||
year="2016" \
|
||||
media="download" \
|
||||
file1="fonts-opensymbol_102.6+LibO4.3.3-2+deb8u3_all.deb" \
|
||||
file1="fonts-opensymbol_102.6+LibO4.3.3-2+deb8u5_all.deb" \
|
||||
installed_file1="$W_FONTSDIR_WIN/opens___.ttf"
|
||||
|
||||
load_opensymbol()
|
||||
@@ -9459,7 +9487,7 @@ load_opensymbol()
|
||||
# The OpenSymbol fonts are a replacement for the Windows Wingdings font from OpenOffice.org.
|
||||
# Need to w_download Debian since I can't find a standalone download from OpenOffice
|
||||
# Note: The source download package on debian is for _all_ of OpenOffice, which is 266 MB.
|
||||
w_download http://security.debian.org/debian-security/pool/updates/main/libr/libreoffice/fonts-opensymbol_102.6+LibO4.3.3-2+deb8u3_all.deb d3e2dd921c6694d24865600e40eceaf2a635d1c6
|
||||
w_download http://security.debian.org/debian-security/pool/updates/main/libr/libreoffice/fonts-opensymbol_102.6+LibO4.3.3-2+deb8u5_all.deb b683e6304c58fdbb5c31443609a3398c71a3fcf0
|
||||
|
||||
cd "$W_TMP"
|
||||
w_try_ar "$W_CACHE/$W_PACKAGE/$file1" data.tar.xz
|
||||
@@ -18494,6 +18522,18 @@ load_win2k3()
|
||||
w_set_winver win2k3
|
||||
}
|
||||
|
||||
|
||||
#----------------------------------------------------------------
|
||||
|
||||
w_metadata win2k8 settings \
|
||||
title_uk="Поставити версію Windows 2008 R2" \
|
||||
title="Set Windows version to Windows 2008 R2"
|
||||
|
||||
load_win2k8()
|
||||
{
|
||||
w_set_winver win2k8
|
||||
}
|
||||
|
||||
#----------------------------------------------------------------
|
||||
|
||||
w_metadata win31 settings \
|
||||
@@ -18518,6 +18558,39 @@ load_win7()
|
||||
|
||||
#----------------------------------------------------------------
|
||||
|
||||
w_metadata win8 settings \
|
||||
title_uk="Поставити версію Windows 8" \
|
||||
title="Set Windows version to Windows 8"
|
||||
|
||||
load_win8()
|
||||
{
|
||||
w_set_winver win8
|
||||
}
|
||||
|
||||
#----------------------------------------------------------------
|
||||
|
||||
w_metadata win81 settings \
|
||||
title_uk="Поставити версію Windows 8.1" \
|
||||
title="Set Windows version to Windows 8.1"
|
||||
|
||||
load_win81()
|
||||
{
|
||||
w_set_winver win81
|
||||
}
|
||||
|
||||
#----------------------------------------------------------------
|
||||
|
||||
w_metadata win10 settings \
|
||||
title_uk="Поставити версію Windows 10" \
|
||||
title="Set Windows version to Windows 10"
|
||||
|
||||
load_win10()
|
||||
{
|
||||
w_set_winver win10
|
||||
}
|
||||
|
||||
#----------------------------------------------------------------
|
||||
|
||||
w_metadata win95 settings \
|
||||
title_uk="Поставити версію Windows 95" \
|
||||
title="Set Windows version to Windows 95"
|
||||
|
Reference in New Issue
Block a user