Module: website
Branch: master
Commit: c773bcce57cd45274f43e9358488dee84d4bb5fa
URL: http://source.winehq.org/git/website.git/?a=commit;h=c773bcce57cd45274f43e9…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Fri Feb 8 16:54:33 2008 +0100
Wine release 0.9.55
---
news/2008020801.xml | 25 +++++++++++++++++++++++++
1 files changed, 25 insertions(+), 0 deletions(-)
diff --git a/news/2008020801.xml b/news/2008020801.xml
new file mode 100644
index 0000000..1e88408
--- /dev/null
+++ b/news/2008020801.xml
@@ -0,0 +1,25 @@
+<news>
+<date>February 8, 2008</date>
+<title>Wine 0.9.55 Released</title>
+<body>
+<p>Wine 0.9.55 was released today, with the following main changes:</p>
+
+<ul>
+<li>Direct3D improvements, including driver version emulation.</li>
+<li>Beginnings of support for OLE objects in Richedit.</li>
+<li>Several fixes to the animation control.</li>
+<li>A bunch of fixes for regression test failures.</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.55.tar.bz2">available now</a>.
+You can find out more about this release in the
+<a href="?announce=0.9.55">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: 01af8501b992896a5fff38da365896b7708cc705
URL: http://source.winehq.org/git/wine.git/?a=commit;h=01af8501b992896a5fff38da3…
Author: Reece H. Dunn <msclrhd(a)hotmail.com>
Date: Fri Feb 8 08:45:31 2008 +0000
user32: Make the listbox tests pass in directories other than dlls/user32/tests.
---
dlls/user32/tests/listbox.c | 14 ++++++++++++++
1 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/dlls/user32/tests/listbox.c b/dlls/user32/tests/listbox.c
index 3645190..18b7951 100644
--- a/dlls/user32/tests/listbox.c
+++ b/dlls/user32/tests/listbox.c
@@ -559,6 +559,11 @@ static void test_listbox_LB_DIR()
char pathBuffer[MAX_PATH];
char * p;
char driveletter;
+ HANDLE file;
+
+ file = CreateFileA( "wtest1.tmp.c", FILE_ALL_ACCESS, 0, NULL, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, NULL );
+ ok(file != INVALID_HANDLE_VALUE, "Error creating the test file: %d", GetLastError());
+ CloseHandle( file );
/* NOTE: for this test to succeed, there must be no subdirectories
under the current directory. In addition, there must be at least
@@ -965,6 +970,8 @@ static void test_listbox_LB_DIR()
ok( driveletter >= 'a' && driveletter <= 'z', "Drive letter not in range a..z, got ascii %d\n", driveletter);
}
DestroyWindow(hList);
+
+ DeleteFileA( "wtest1.tmp.c" );
}
HWND g_listBox;
@@ -1045,6 +1052,11 @@ static void test_listbox_dlgdir(void)
char tempBuffer[MAX_PATH];
char * p;
char driveletter;
+ HANDLE file;
+
+ file = CreateFileA( "wtest1.tmp.c", FILE_ALL_ACCESS, 0, NULL, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, NULL );
+ ok(file != INVALID_HANDLE_VALUE, "Error creating the test file: %d", GetLastError());
+ CloseHandle( file );
/* NOTE: for this test to succeed, there must be no subdirectories
under the current directory. In addition, there must be at least
@@ -1436,6 +1448,8 @@ static void test_listbox_dlgdir(void)
}
}
DestroyWindow(hWnd);
+
+ DeleteFileA( "wtest1.tmp.c" );
}
START_TEST(listbox)
Module: wine
Branch: master
Commit: 8554db9f5c4eadc031d51138db35d2f2b10bb92a
URL: http://source.winehq.org/git/wine.git/?a=commit;h=8554db9f5c4eadc031d51138d…
Author: Paul Vriens <paul.vriens.wine(a)gmail.com>
Date: Fri Feb 8 10:51:14 2008 +0100
rpcrt4/tests: Skip rest of the tests if we fail.
---
dlls/rpcrt4/tests/rpc.c | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/dlls/rpcrt4/tests/rpc.c b/dlls/rpcrt4/tests/rpc.c
index cca1fa1..a95ff50 100644
--- a/dlls/rpcrt4/tests/rpc.c
+++ b/dlls/rpcrt4/tests/rpc.c
@@ -325,6 +325,12 @@ static void test_towers(void)
ret = TowerConstruct(&mapi_if_id, &ndr_syntax, "ncacn_ip_tcp", "135", "10.0.0.1", &tower);
ok(ret == RPC_S_OK, "TowerConstruct failed with error %ld\n", ret);
+ if (ret == RPC_S_INVALID_RPC_PROTSEQ)
+ {
+ /* Windows Vista fails with this error and crashes if we continue */
+ skip("TowerConstruct failed, we are most likely on Windows Vista\n");
+ return;
+ }
/* first check we have the right amount of data */
ok(tower->tower_length == sizeof(tower_data_tcp_ip1) ||