Module: website
Branch: master
Commit: d1b52f77d582566bd6e0be5f3b36abc7750ceacb
URL: https://source.winehq.org/git/website.git/?a=commit;h=d1b52f77d582566bd6e0b…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Fri Oct 23 21:27:33 2020 +0200
Wine release 5.20
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
news/en/2020102301.xml | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/news/en/2020102301.xml b/news/en/2020102301.xml
new file mode 100644
index 00000000..fa0ef4aa
--- /dev/null
+++ b/news/en/2020102301.xml
@@ -0,0 +1,16 @@
+<news>
+<date>October 23, 2020</date>
+<title>Wine 5.20 Released</title>
+<body>
+<p> The Wine development release 5.20 is now available.</p>
+<p> <a href="{$root}/announce/5.20">What's new</a> in this release:
+<ul>
+ <li>More work on the DSS cryptographic provider.</li>
+ <li>A number of fixes for windowless RichEdit.</li>
+ <li>Support for FLS callbacks.</li>
+ <li>Window resizing in the new console host.</li>
+ <li>Various bug fixes.</li>
+</ul>
+<p>The source is <a href="//dl.winehq.org/wine/source/5.x/wine-5.20.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: 9b8188a96079de29d4fb10ccc44cc12d53bdacfb
URL: https://source.winehq.org/git/wine.git/?a=commit;h=9b8188a96079de29d4fb10cc…
Author: Austin English <austinenglish(a)gmail.com>
Date: Tue Oct 20 04:02:02 2020 -0500
dpvsetup: Add stub program.
Signed-off-by: Austin English <austinenglish(a)gmail.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
configure | 2 ++
configure.ac | 1 +
programs/dpvsetup/Makefile.in | 8 ++++++++
programs/dpvsetup/main.c | 33 +++++++++++++++++++++++++++++++++
programs/dpvsetup/version.rc | 26 ++++++++++++++++++++++++++
5 files changed, 70 insertions(+)
diff --git a/configure b/configure
index 816e12f75ab..1afc057f3e9 100755
--- a/configure
+++ b/configure
@@ -1762,6 +1762,7 @@ enable_cscript
enable_dism
enable_dplaysvr
enable_dpnsvr
+enable_dpvsetup
enable_dxdiag
enable_eject
enable_expand
@@ -21221,6 +21222,7 @@ wine_fn_config_makefile programs/cscript enable_cscript
wine_fn_config_makefile programs/dism enable_dism
wine_fn_config_makefile programs/dplaysvr enable_dplaysvr
wine_fn_config_makefile programs/dpnsvr enable_dpnsvr
+wine_fn_config_makefile programs/dpvsetup enable_dpvsetup
wine_fn_config_makefile programs/dxdiag enable_dxdiag
wine_fn_config_makefile programs/eject enable_eject
wine_fn_config_makefile programs/expand enable_expand
diff --git a/configure.ac b/configure.ac
index bd7acca29c6..372785ee0fd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3967,6 +3967,7 @@ WINE_CONFIG_MAKEFILE(programs/cscript)
WINE_CONFIG_MAKEFILE(programs/dism)
WINE_CONFIG_MAKEFILE(programs/dplaysvr)
WINE_CONFIG_MAKEFILE(programs/dpnsvr)
+WINE_CONFIG_MAKEFILE(programs/dpvsetup)
WINE_CONFIG_MAKEFILE(programs/dxdiag)
WINE_CONFIG_MAKEFILE(programs/eject)
WINE_CONFIG_MAKEFILE(programs/expand)
diff --git a/programs/dpvsetup/Makefile.in b/programs/dpvsetup/Makefile.in
new file mode 100644
index 00000000000..189da196c8c
--- /dev/null
+++ b/programs/dpvsetup/Makefile.in
@@ -0,0 +1,8 @@
+MODULE = dpvsetup.exe
+
+EXTRADLLFLAGS = -mwindows -municode -mno-cygwin
+
+C_SRCS = \
+ main.c
+
+RC_SRCS = version.rc
diff --git a/programs/dpvsetup/main.c b/programs/dpvsetup/main.c
new file mode 100644
index 00000000000..d72ede7e4ab
--- /dev/null
+++ b/programs/dpvsetup/main.c
@@ -0,0 +1,33 @@
+/*
+ * Copyright 2020 Austin English
+ *
+ * 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
+ */
+
+#include "wine/debug.h"
+
+WINE_DEFAULT_DEBUG_CHANNEL(dpvsetup);
+
+int __cdecl wmain(int argc, WCHAR *argv[])
+{
+ int i;
+
+ WINE_FIXME("stub:");
+ for (i = 0; i < argc; i++)
+ WINE_FIXME(" %s", wine_dbgstr_w(argv[i]));
+ WINE_FIXME("\n");
+
+ return 0;
+}
diff --git a/programs/dpvsetup/version.rc b/programs/dpvsetup/version.rc
new file mode 100644
index 00000000000..ed2ada993f9
--- /dev/null
+++ b/programs/dpvsetup/version.rc
@@ -0,0 +1,26 @@
+/*
+ * Copyright 2020 Austin English
+ *
+ * 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
+ */
+
+#define WINE_FILEDESCRIPTION_STR "Wine dpvsetup"
+#define WINE_FILENAME_STR "dpvsetup.exe"
+#define WINE_FILEVERSION 5,3,2600,5512
+#define WINE_FILEVERSION_STR "5.3.2600.5512"
+#define WINE_PRODUCTVERSION 5,3,2600,5512
+#define WINE_PRODUCTVERSION_STR "5.3.2600.5512"
+
+#include "wine/wine_common_ver.rc"
Module: wine
Branch: master
Commit: 73afd2648c003fbddb657fc8a3f8f53a86754dcd
URL: https://source.winehq.org/git/wine.git/?a=commit;h=73afd2648c003fbddb657fc8…
Author: Austin English <austinenglish(a)gmail.com>
Date: Tue Oct 20 04:02:01 2020 -0500
dplaysvr: Add stub program.
Signed-off-by: Austin English <austinenglish(a)gmail.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
configure | 2 ++
configure.ac | 1 +
programs/dplaysvr/Makefile.in | 8 ++++++++
programs/dplaysvr/main.c | 33 +++++++++++++++++++++++++++++++++
programs/dplaysvr/version.rc | 26 ++++++++++++++++++++++++++
5 files changed, 70 insertions(+)
diff --git a/configure b/configure
index 5672688a0d7..816e12f75ab 100755
--- a/configure
+++ b/configure
@@ -1760,6 +1760,7 @@ enable_conhost
enable_control
enable_cscript
enable_dism
+enable_dplaysvr
enable_dpnsvr
enable_dxdiag
enable_eject
@@ -21218,6 +21219,7 @@ wine_fn_config_makefile programs/conhost/tests enable_tests
wine_fn_config_makefile programs/control enable_control
wine_fn_config_makefile programs/cscript enable_cscript
wine_fn_config_makefile programs/dism enable_dism
+wine_fn_config_makefile programs/dplaysvr enable_dplaysvr
wine_fn_config_makefile programs/dpnsvr enable_dpnsvr
wine_fn_config_makefile programs/dxdiag enable_dxdiag
wine_fn_config_makefile programs/eject enable_eject
diff --git a/configure.ac b/configure.ac
index a57697a0ddf..bd7acca29c6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3965,6 +3965,7 @@ WINE_CONFIG_MAKEFILE(programs/conhost/tests)
WINE_CONFIG_MAKEFILE(programs/control)
WINE_CONFIG_MAKEFILE(programs/cscript)
WINE_CONFIG_MAKEFILE(programs/dism)
+WINE_CONFIG_MAKEFILE(programs/dplaysvr)
WINE_CONFIG_MAKEFILE(programs/dpnsvr)
WINE_CONFIG_MAKEFILE(programs/dxdiag)
WINE_CONFIG_MAKEFILE(programs/eject)
diff --git a/programs/dplaysvr/Makefile.in b/programs/dplaysvr/Makefile.in
new file mode 100644
index 00000000000..9c8eda44513
--- /dev/null
+++ b/programs/dplaysvr/Makefile.in
@@ -0,0 +1,8 @@
+MODULE = dplaysvr.exe
+
+EXTRADLLFLAGS = -mwindows -municode -mno-cygwin
+
+C_SRCS = \
+ main.c
+
+RC_SRCS = version.rc
diff --git a/programs/dplaysvr/main.c b/programs/dplaysvr/main.c
new file mode 100644
index 00000000000..1de98684760
--- /dev/null
+++ b/programs/dplaysvr/main.c
@@ -0,0 +1,33 @@
+/*
+ * Copyright 2020 Austin English
+ *
+ * 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
+ */
+
+#include "wine/debug.h"
+
+WINE_DEFAULT_DEBUG_CHANNEL(dplaysvr);
+
+int __cdecl wmain(int argc, WCHAR *argv[])
+{
+ int i;
+
+ WINE_FIXME("stub:");
+ for (i = 0; i < argc; i++)
+ WINE_FIXME(" %s", wine_dbgstr_w(argv[i]));
+ WINE_FIXME("\n");
+
+ return 0;
+}
diff --git a/programs/dplaysvr/version.rc b/programs/dplaysvr/version.rc
new file mode 100644
index 00000000000..4a84f681116
--- /dev/null
+++ b/programs/dplaysvr/version.rc
@@ -0,0 +1,26 @@
+/*
+ * Copyright 2020 Austin English
+ *
+ * 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
+ */
+
+#define WINE_FILEDESCRIPTION_STR "Wine dplaysvr"
+#define WINE_FILENAME_STR "dplaysvr.exe"
+#define WINE_FILEVERSION 5,3,2600,5512
+#define WINE_FILEVERSION_STR "5.3.2600.5512"
+#define WINE_PRODUCTVERSION 5,3,2600,5512
+#define WINE_PRODUCTVERSION_STR "5.3.2600.5512"
+
+#include "wine/wine_common_ver.rc"