Hello community,
here is the log from the commit of package wine-nine-standalone for
openSUSE:Factory checked in at 2020-08-19 18:56:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/wine-nine-standalone (Old)
and /work/SRC/openSUSE:Factory/.wine-nine-standalone.new.3399 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "wine-nine-standalone"
Wed Aug 19 18:56:38 2020 rev:4 rq:827736 version:0.7
Changes:
--------
---
/work/SRC/openSUSE:Factory/wine-nine-standalone/wine-nine-standalone.changes
2020-08-17 12:03:04.074616942 +0200
+++
/work/SRC/openSUSE:Factory/.wine-nine-standalone.new.3399/wine-nine-standalone.changes
2020-08-19 18:57:45.487876973 +0200
@@ -1,0 +2,6 @@
+Wed Aug 19 06:27:40 UTC 2020 - Marcus Meissner <[email protected]>
+
+- Version 0.7
+ - Fix restoring the initial video mode
+
+-------------------------------------------------------------------
Old:
----
wine-nine-standalone-0.6.tar.gz
New:
----
wine-nine-standalone-0.7.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ wine-nine-standalone.spec ++++++
--- /var/tmp/diff_new_pack.DlUWTZ/_old 2020-08-19 18:57:46.591877559 +0200
+++ /var/tmp/diff_new_pack.DlUWTZ/_new 2020-08-19 18:57:46.591877559 +0200
@@ -17,7 +17,7 @@
Name: wine-nine-standalone
-Version: 0.6
+Version: 0.7
Release: 0
Summary: Wine Gallium Nine Standalone version
License: LGPL-2.1-or-later
++++++ wine-nine-standalone-0.6.tar.gz -> wine-nine-standalone-0.7.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/wine-nine-standalone-0.6/d3d9-nine/present.c
new/wine-nine-standalone-0.7/d3d9-nine/present.c
--- old/wine-nine-standalone-0.6/d3d9-nine/present.c 2020-08-15
07:14:25.000000000 +0200
+++ new/wine-nine-standalone-0.7/d3d9-nine/present.c 2020-08-19
05:54:55.000000000 +0200
@@ -714,7 +714,7 @@
(void) nine_unregister_window(This->focus_wnd);
if (This->d3d)
destroy_d3dadapter_drawable(This->gdi_display, This->d3d->wnd);
- ChangeDisplaySettingsExW(This->devname, &(This->initial_mode), 0,
CDS_FULLSCREEN, NULL);
+ set_display_mode(This, &This->initial_mode);
PRESENTDestroy(This->present_priv);
This->dri_backend->funcs->deinit(This->dri_backend->priv);
HeapFree(GetProcessHeap(), 0, This);
@@ -1396,6 +1396,7 @@
return E_OUTOFMEMORY;
}
+ lstrcpyW(This->devname, devname);
This->gdi_display = gdi_display;
This->vtable = &DRIPresent_vtable;
This->refs = 1;
@@ -1464,8 +1465,6 @@
update_presentation_interval(This);
- lstrcpyW(This->devname, devname);
-
if (!PRESENTInit(gdi_display, &(This->present_priv)))
{
ERR("Failed to init Present backend\n");
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/wine-nine-standalone-0.6/tools/get_version.sh
new/wine-nine-standalone-0.7/tools/get_version.sh
--- old/wine-nine-standalone-0.6/tools/get_version.sh 2020-08-15
07:14:25.000000000 +0200
+++ new/wine-nine-standalone-0.7/tools/get_version.sh 2020-08-19
05:54:55.000000000 +0200
@@ -1,7 +1,7 @@
#!/bin/sh -e
MAJOR=0
-MINOR=6
+MINOR=7
BUILD=0
REVISION=`git rev-list --count HEAD 2>/dev/null || echo "0"`
STAGE="release"