Module: website
Branch: master
Commit: 991f575ef5a101cf38a41c3b1797dfee7317dd2c
URL: http://source.winehq.org/git/website.git/?a=commit;h=991f575ef5a101cf38a41c…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Fri Jan 25 17:16:40 2008 +0100
Wine release 0.9.54
---
news/2008012501.xml | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/news/2008012501.xml b/news/2008012501.xml
new file mode 100644
index 0000000..5650e93
--- /dev/null
+++ b/news/2008012501.xml
@@ -0,0 +1,24 @@
+<news>
+<date>January 25, 2008</date>
+<title>Wine 0.9.54 Released</title>
+<body>
+<p>Wine 0.9.54 was released today, with the following main changes:</p>
+
+<ul>
+<li>Photoshop CS/CS2 should now work, please help us testing it.</li>
+<li>A number of RPC fixes.</li>
+<li>Various improvements to the debugger support.</li>
+<li>Lots of bug fixes.</li>
+</ul>
+
+<p>
+Binary packages are in the process of being built and it may take a
+few days for them to appear, but the source is
+<a href="http://prdownloads.sourceforge.net/wine/wine-0.9.54.tar.bz2">available now</a>.
+You can find out more about this release in the
+<a href="?announce=0.9.54">announcement</a>. Check out our
+<a href="/site/download">download page</a> for packages for your
+distribution.
+</p>
+</body>
+</news>
Module: wine
Branch: master
Commit: 27d3c09a39a6a2a19fac28537b9c8f213075b284
URL: http://source.winehq.org/git/wine.git/?a=commit;h=27d3c09a39a6a2a19fac28537…
Author: Dmitry Timoshkov <dmitry(a)codeweavers.com>
Date: Fri Jan 25 20:25:10 2008 +0800
winex11.drv: Remove an incorrect FIXME.
---
dlls/winex11.drv/x11drv_main.c | 9 +++------
1 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/dlls/winex11.drv/x11drv_main.c b/dlls/winex11.drv/x11drv_main.c
index f2bf12c..8d822ef 100644
--- a/dlls/winex11.drv/x11drv_main.c
+++ b/dlls/winex11.drv/x11drv_main.c
@@ -498,13 +498,10 @@ static BOOL process_attach(void)
break;
case 15:
- /* Out tests suggest that windows does not support 15 bpp color depth.
- * X11 does, what should we do with these situations?
+ /* In GetDeviceCaps MSDN description explicitly states that
+ * in 15 bpp mode 16 is returned.
*/
- FIXME("The X server is running at 15 bpp color depth\n");
- screen_bpp = 15;
- break;
-
+ /* fall through */
case 16:
screen_bpp = 16;
break;
Module: wine
Branch: master
Commit: a30327afef7b08d1aac1943ded64ee363a61c537
URL: http://source.winehq.org/git/wine.git/?a=commit;h=a30327afef7b08d1aac1943de…
Author: Ken Thomases <ken(a)codeweavers.com>
Date: Fri Jan 25 12:20:39 2008 +0000
winex11.drv: Accomodate XGetWindowProperty returning an actual format of something other than 32 for the TARGETS property.
We shouldn't care what format the property was set with, as long as we
trust that the property is an atom type.
---
dlls/winex11.drv/clipboard.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/winex11.drv/clipboard.c b/dlls/winex11.drv/clipboard.c
index 7731ae0..453746f 100644
--- a/dlls/winex11.drv/clipboard.c
+++ b/dlls/winex11.drv/clipboard.c
@@ -1903,8 +1903,8 @@ static int X11DRV_CLIPBOARD_QueryAvailableData(LPCLIPBOARDINFO lpcbinfo)
* The TARGETS property should have returned us a list of atoms
* corresponding to each selection target format supported.
*/
- if ((atype == XA_ATOM || atype == x11drv_atom(TARGETS)) && aformat == 32)
- X11DRV_CLIPBOARD_InsertSelectionProperties(display, targetList, cSelectionTargets);
+ if (atype == XA_ATOM || atype == x11drv_atom(TARGETS))
+ X11DRV_CLIPBOARD_InsertSelectionProperties(display, targetList, (cSelectionTargets * aformat / (8 * sizeof(Atom))));
/* Free the list of targets */
wine_tsx11_lock();