Release 1.8-rc4.

This commit is contained in:
Sebastian Lackner 2015-12-15 00:56:47 +01:00
parent e9f445ed37
commit 0c1324b8de
3 changed files with 6 additions and 8 deletions

View File

@ -34,7 +34,7 @@ Wine. All those differences are also documented on the
Included bug fixes and improvements
-----------------------------------
**Bug fixes and features in Wine Staging 1.8-rc3 [269]:**
**Bug fixes and features in Wine Staging 1.8-rc4 [267]:**
*Note: The following list only contains features and bug fixes which are not
yet available in vanilla Wine. They are removed from the list as soon as they
@ -159,7 +159,6 @@ for more details.*
* Fix possible leak of explorer.exe processes and implement proper desktop refcounting
* Fix possible segfault in pulse_rd_loop of PulseAudio backend
* Fix race-condition when threads are killed during shutdown
* ~~Fix regression caused by blacklisting supported OpenGL extensions~~ ([Wine Bug #38480](https://bugs.winehq.org/show_bug.cgi?id=38480))
* Fix return value of ScrollWindowEx for invisible windows ([Wine Bug #37706](https://bugs.winehq.org/show_bug.cgi?id=37706))
* Fix scaling behaviour of images and mipmap levels in IDirect3DTexture2_Load (needed for example by Prezzie Hunt)
* Fix texture corruption in CSI: Fatal Conspiracy ([Wine Bug #33768](https://bugs.winehq.org/show_bug.cgi?id=33768))
@ -257,7 +256,6 @@ for more details.*
* SO_CONNECT_TIME returns the appropriate time
* Send WM_PAINT event during dialog creation ([Wine Bug #35652](https://bugs.winehq.org/show_bug.cgi?id=35652))
* Set EOF on file which has a memory mapping should fail
* ~~Set LastError to 0 in GetSidIdentifierAuthority~~
* Set NamedPipeState to FILE_PIPE_CLOSING_STATE on broken pipe in NtQueryInformationFile
* Share source of d3dx9_36 with d3dx9_33 to avoid Wine DLL forwards ([Wine Bug #21817](https://bugs.winehq.org/show_bug.cgi?id=21817))
* Show unmounted devices in winecfg and allow changing the unix path

View File

@ -58,7 +58,7 @@ upstream_commit()
# Show version information
version()
{
echo "Wine Staging 1.8-rc4 (unreleased)"
echo "Wine Staging 1.8-rc4"
echo "Copyright (C) 2014-2015 the Wine Staging project authors."
echo ""
echo "Patchset to be applied on upstream Wine:"

View File

@ -1,4 +1,4 @@
wine-staging (1.8~rc4) UNRELEASED; urgency=low
wine-staging (1.8~rc4) unstable; urgency=low
* Updated patch to fix implementation of NtQueryInformationProcess for
ProcessDebugFlags.
* Removed patch to set LastError to 0 in GetSidIdentifierAuthority (accepted
@ -6,9 +6,9 @@ wine-staging (1.8~rc4) UNRELEASED; urgency=low
* Removed patch to return an error when trying to open a terminated process
(replaced with alternative approach).
* Added patch to avoid holding reference on parent process in wineserver.
* Added patch to fix memory corruption wineserver (token_duplicate should not
reference the original token).
-- Sebastian Lackner <sebastian@fds-team.de> Tue, 08 Dec 2015 18:32:59 +0100
* Added patch to fix memory corruption in wineserver (token_duplicate should
not reference the original token).
-- Sebastian Lackner <sebastian@fds-team.de> Tue, 15 Dec 2015 00:53:33 +0100
wine-staging (1.8~rc3) unstable; urgency=low
* Updated patch for d3dx9_36 DrawText implementation and fixed multiple bugs.