Module: website
Branch: master
Commit: 02ae038694eae0b7e25f5b98919dd99d2ee70d52
URL: https://gitlab.winehq.org/winehq/winehq/-/commit/02ae038694eae0b7e25f5b9891…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Thu Feb 2 22:25:12 2023 +0100
Wine release 8.1
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
news/en/2023020201.xml | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/news/en/2023020201.xml b/news/en/2023020201.xml
new file mode 100644
index 00000000..4facec63
--- /dev/null
+++ b/news/en/2023020201.xml
@@ -0,0 +1,15 @@
+<news>
+<date>February 2, 2023</date>
+<title>Wine 8.1 Released</title>
+<body>
+<p> The Wine development release 8.1 is now available.</p>
+<p> <a href="{$root}/announce/8.1">What's new</a> in this release:
+<ul>
+ <li>Windows version set to Windows 10 for new prefixes.</li>
+ <li>Many code cleanups that were deferred during code freeze. </li>
+ <li>Various bug fixes.</li>
+</ul>
+</p>
+<p>The source is <a href="//dl.winehq.org/wine/source/8.x/wine-8.1.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: 2fbe1f3508cb71d994ad4055bccb2de6fe051ebd
URL: https://gitlab.winehq.org/wine/wine/-/commit/2fbe1f3508cb71d994ad4055bccb2d…
Author: Zhiyi Zhang <zzhang(a)codeweavers.com>
Date: Tue Dec 20 12:11:37 2022 +0800
include: Add uiviewsettingsinterop.idl.
---
include/Makefile.in | 1 +
include/uiviewsettingsinterop.idl | 27 +++++++++++++++++++++++++++
2 files changed, 28 insertions(+)
diff --git a/include/Makefile.in b/include/Makefile.in
index 9b5f2a5ae02..8602dd51e42 100644
--- a/include/Makefile.in
+++ b/include/Makefile.in
@@ -749,6 +749,7 @@ SOURCES = \
uiautomationcore.idl \
uiautomationcoreapi.h \
uiribbon.idl \
+ uiviewsettingsinterop.idl \
unexposeenums2managed.h \
unknwn.idl \
urlhist.idl \
diff --git a/include/uiviewsettingsinterop.idl b/include/uiviewsettingsinterop.idl
new file mode 100644
index 00000000000..81cfc0e9dd9
--- /dev/null
+++ b/include/uiviewsettingsinterop.idl
@@ -0,0 +1,27 @@
+/*
+ * Copyright 2022 Zhiyi Zhang for CodeWeavers
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+import "inspectable.idl";
+
+[
+ uuid(3694dbf9-8f68-44be-8ff5-195c98ede8a6),
+]
+interface IUIViewSettingsInterop : IInspectable
+{
+ HRESULT GetForWindow([in] HWND hwnd, [in] REFIID riid, [out, retval, iid_is(riid)] void **ppv);
+}