Module: wine
Branch: master
Commit: cfbe8aed4823275aa3724d3eb4c266ca1f5d0bbc
URL: https://gitlab.winehq.org/wine/wine/-/commit/cfbe8aed4823275aa3724d3eb4c266…
Author: Jinoh Kang <jinoh.kang.kr(a)gmail.com>
Date: Sat Jan 21 11:17:38 2023 +0900
ntoskrnl.exe/tests: Use loopback address in test_wsk_listen_socket.
Today, the driver_netio test server binds to the wildcard address
(0.0.0.0). This may trigger a firewall alert on Windows 7, and the
alert UI window may interfere with user32:msg tests.
Fix this by binding to the loopback address (127.0.0.1) instead.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53891
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54202
---
dlls/ntoskrnl.exe/tests/driver_netio.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/dlls/ntoskrnl.exe/tests/driver_netio.c b/dlls/ntoskrnl.exe/tests/driver_netio.c
index e406f49eacb..9f9478d75b0 100644
--- a/dlls/ntoskrnl.exe/tests/driver_netio.c
+++ b/dlls/ntoskrnl.exe/tests/driver_netio.c
@@ -235,6 +235,7 @@ static void test_wsk_listen_socket(void)
memset(&addr, 0, sizeof(addr));
addr.sin_family = AF_INET;
addr.sin_port = htons(SERVER_LISTEN_PORT);
+ addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
IoReuseIrp(wsk_irp, STATUS_UNSUCCESSFUL);
IoSetCompletionRoutine(wsk_irp, irp_completion_routine, &irp_complete_event, TRUE, TRUE, TRUE);
Module: website
Branch: master
Commit: 64cf69f13b13e9d762fa596138cb788664ca536e
URL: https://gitlab.winehq.org/winehq/winehq/-/commit/64cf69f13b13e9d762fa596138…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Tue Jan 24 16:12:17 2023 +0100
Wine release 8.0
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
news/en/2023012401.xml | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/news/en/2023012401.xml b/news/en/2023012401.xml
new file mode 100644
index 00000000..d7b5355c
--- /dev/null
+++ b/news/en/2023012401.xml
@@ -0,0 +1,9 @@
+<news>
+<date>January 24, 2023</date>
+<title>Wine 8.0 Released</title>
+<body>
+<p> The Wine team is proud to announce that the stable release Wine 8.0 is now available.</p>
+<p> This release represents a year of development effort and over 8,600 individual changes. It contains a large number of improvements that are listed in the <a href="{$root}/announce/8.0">release notes</a> below. The main achievement is the completion of the conversion to PE format.</p>
+<p>The source is <a href="//dl.winehq.org/wine/source/8.0/wine-8.0.tar.xz">available now</a>.
+Binary packages are in the process of being built, and will appear soon at their respective <a href="{$root}/download">download locations</a>.
+</p></body></news>
Module: wine
Branch: master
Commit: 11bd4b53a95dfb678a3f6958e8d3c5f38088efb0
URL: https://gitlab.winehq.org/wine/wine/-/commit/11bd4b53a95dfb678a3f6958e8d3c5…
Author: Floris Renaud <jkfloris(a)dds.nl>
Date: Tue Jan 24 13:06:02 2023 +0100
loader: Document the WINE_D3D_CONFIG environment variable.
---
loader/wine.man.in | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/loader/wine.man.in b/loader/wine.man.in
index ff37586d5fa..e04a76cd261 100644
--- a/loader/wine.man.in
+++ b/loader/wine.man.in
@@ -228,6 +228,18 @@ existing prefix, Wine will refuse to start if
.B WINEARCH
doesn't match the prefix architecture.
.TP
+.B WINE_D3D_CONFIG
+Specifies Direct3D configuration options. It can be used instead of
+modifying the
+.B HKEY_CURRENT_USER\\\\Software\\\\Wine\\\\Direct3D
+registry key. The value is a comma- or semicolon-separated list
+of key-value pairs. For example:
+.IP
+WINE_D3D_CONFIG="renderer=vulkan;VideoPciVendorID=0xc0de"
+.IP
+If an individual setting is specified in both
+the environment variable and the registry, the former takes precedence.
+.TP
.B DISPLAY
Specifies the X11 display to use.
.TP