Module: website
Branch: master
Commit: 7d55b019818004a08bfa701c03759bf0b108d73e
URL: https://source.winehq.org/git/website.git/?a=commit;h=7d55b019818004a08bfa7…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Fri Jun 18 21:46:06 2021 +0200
Wine release 6.11
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
news/en/2021061801.xml | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/news/en/2021061801.xml b/news/en/2021061801.xml
new file mode 100644
index 00000000..4f57421c
--- /dev/null
+++ b/news/en/2021061801.xml
@@ -0,0 +1,17 @@
+<news>
+<date>June 18, 2021</date>
+<title>Wine 6.11 Released</title>
+<body>
+<p> The Wine development release 6.11 is now available.</p>
+<p> <a href="{$root}/announce/6.11">What's new</a> in this release:
+<ul>
+ <li>Theming support in all builtin programs.</li>
+ <li>All remaining CRT math functions imported from Musl.</li>
+ <li>MP3 support requires libmpg123 also on macOS.</li>
+ <li>Support for codepage 720 (Arabic).</li>
+ <li>Various bug fixes.</li>
+</ul>
+</p>
+<p>The source is <a href="//dl.winehq.org/wine/source/6.x/wine-6.11.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: 617d14bc1238b57327a8400eda1c1ab22624beb7
URL: https://source.winehq.org/git/wine.git/?a=commit;h=617d14bc1238b57327a8400e…
Author: Florian Eder <others.meder(a)gmail.com>
Date: Tue Jun 1 07:02:54 2021 +0000
cmd: Do not change errorlevel when setting environment variables.
Changes CMD to set its errorlevel to 0 only when the value of an environment variable
is set in in non-interactive / batch mode, retains the previous value otherwise.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=47791
Signed-off-by: Florian Eder <others.meder(a)gmail.com>
Signed-off-by: Zebediah Figura <zfigura(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
programs/cmd/builtins.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/programs/cmd/builtins.c b/programs/cmd/builtins.c
index 502694ffc46..c7df724ae00 100644
--- a/programs/cmd/builtins.c
+++ b/programs/cmd/builtins.c
@@ -4218,7 +4218,7 @@ void WCMD_setshow_env (WCHAR *s) {
if ((!status) & (gle == ERROR_ENVVAR_NOT_FOUND)) {
errorlevel = 1;
} else if (!status) WCMD_print_error();
- else errorlevel = 0;
+ else if (!interactive) errorlevel = 0;
}
}