SHA256
1
0
forked from pool/wine

- escape a single \ with \\ in the wine-browsedrive.desktop file.

- Updated to 1.3.20 development snapshot
  - Option to clip the mouse inside fullscreen windows.
  - Support for persistent HTTP connections.
  - Initial implementation of the XML writer.
  - Support for drawing rectangles in the DIB engine.
  - Volume control in MMDevAPI.
  - More MSVC runtime functions.
  - Various bug fixes.
- updated winetricks

- Updated to 1.3.19 development snapshot
  - New sound driver architecture for MMDevAPI.
  - Better support for relative mouse events in DInput.
  - Debugger support for the ARM platform.
  - Various improvements in D3DX9.
  - More MSVC runtime functions.
  - Various bug fixes.

- Updated winetricks

- Updated to 1.3.18 development snapshot
  - Support for mouse pointer clipping.
  - Raw mouse events support using XInput2.
  - First steps of a DIB engine implementation.
  - More properties supported in DXDiag.
  - New security tab in the Internet control panel.
  - Improved video playback on Mac OS X.

OBS-URL: https://build.opensuse.org/package/show/Emulators/wine?expand=0&rev=85
This commit is contained in:
Marcus Meissner 2011-05-17 10:58:20 +00:00 committed by Git OBS Bridge
parent c62e9836f2
commit d0c0871d8d
7 changed files with 14639 additions and 4085 deletions

View File

@ -1,20 +0,0 @@
diff --git a/dlls/shell32/pidl.c b/dlls/shell32/pidl.c
index 71b8f93..8a3d721 100644
--- a/dlls/shell32/pidl.c
+++ b/dlls/shell32/pidl.c
@@ -1755,13 +1755,13 @@ LPITEMIDLIST _ILCreateEntireNetwork(void)
TRACE("\n");
- pidlOut = _ILAlloc(PT_NETWORK, FIELD_OFFSET(PIDLDATA, u.network.szNames[sizeof("Entire Network")]));
+ pidlOut = _ILAlloc(PT_NETWORK, FIELD_OFFSET(PIDLDATA, u.network.szNames[strlen("Entire Network")+1]));
if (pidlOut)
{
LPPIDLDATA pData = _ILGetDataPointer(pidlOut);
pData->u.network.dummy = 0;
- strcpy(pData->u.network.szNames, "Entire Network");
+ memcpy(pData->u.network.szNames, "Entire Network", strlen("Entire Network")+1);
}
return pidlOut;
}

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:746c0b7aebefa5ef8552c417dbe77510a018d73615a1e987e1b9bcefd02f395d oid sha256:e07a2ce16dee12b3f8483ec908ebfe6d62632627c6b20de6bd197cdb3428f3e8
size 26190 size 26196

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e9dfcd9fa93ec804f4b606bb1202eceb11926c2e2501d89f102451287cbc7138
size 18969910

3
wine-1.3.20.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:37cb8c558bb4c9e3751778fc2d7bb5c01bc0e6b2a8ffef40923452b7692aaea9
size 19251665

View File

@ -1,3 +1,86 @@
-------------------------------------------------------------------
Mon May 16 17:45:44 CEST 2011 - meissner@suse.de
- escape a single \ with \\ in the wine-browsedrive.desktop file.
-------------------------------------------------------------------
Sat May 14 14:21:25 CEST 2011 - meissner@suse.de
- Updated to 1.3.20 development snapshot
- Option to clip the mouse inside fullscreen windows.
- Support for persistent HTTP connections.
- Initial implementation of the XML writer.
- Support for drawing rectangles in the DIB engine.
- Volume control in MMDevAPI.
- More MSVC runtime functions.
- Various bug fixes.
- updated winetricks
-------------------------------------------------------------------
Fri Apr 29 20:41:37 CEST 2011 - meissner@suse.de
- Updated to 1.3.19 development snapshot
- New sound driver architecture for MMDevAPI.
- Better support for relative mouse events in DInput.
- Debugger support for the ARM platform.
- Various improvements in D3DX9.
- More MSVC runtime functions.
- Various bug fixes.
-------------------------------------------------------------------
Fri Apr 29 11:27:34 UTC 2011 - meissner@novell.com
- Updated winetricks
-------------------------------------------------------------------
Fri Apr 15 20:19:30 CEST 2011 - meissner@suse.de
- Updated to 1.3.18 development snapshot
- Support for mouse pointer clipping.
- Raw mouse events support using XInput2.
- First steps of a DIB engine implementation.
- More properties supported in DXDiag.
- New security tab in the Internet control panel.
- Improved video playback on Mac OS X.
- Various bug fixes.
- Updated winetricks
-------------------------------------------------------------------
Fri Apr 1 23:54:35 CEST 2011 - meissner@suse.de
- Updated to 1.3.17 development snapshot
- Implementation of the new Vista file dialogs.
- Initial support for patching in MSI installers.
- Improvements to the calendar control.
- A few fixes for file associations.
- Menus cleaned up in built-in applications.
- Various bug fixes.
- Updated winetricks
-------------------------------------------------------------------
Fri Mar 18 21:24:18 CET 2011 - meissner@suse.de
- Updated to 1.3.16 development snapshot
- New version of the Gecko engine, based on Firefox 4.
- Better support for Dwarf debugging information.
- Improved handling of animated cursors.
- GnuTLS no longer required on Mac OS X.
- Improvements to the GDI driver infrastructure.
- A number of MSI fixes for the .NET installers.
- Several GdiPlus improvements.
- Various bug fixes.
- new winetricks release
-------------------------------------------------------------------
Sat Mar 5 07:16:17 UTC 2011 - meissner@suse.de
- Updated to 1.3.15 development snapshot
- Support for changing network passwords.
- Reflection support in shader compiler.
- Tests no longer attempt to cope with Win9x behavior.
- A number of MSHTML and MSXML improvements.
- Various bug fixes.
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Feb 19 08:34:33 CET 2011 - meissner@suse.de Sat Feb 19 08:34:33 CET 2011 - meissner@suse.de

View File

@ -30,7 +30,7 @@ BuildRequires: gstreamer-0_10-plugins-base-devel
License: LGPLv2.1+ License: LGPLv2.1+
Group: System/Emulators/PC Group: System/Emulators/PC
AutoReqProv: on AutoReqProv: on
Version: 1.3.14 Version: 1.3.20
Release: 1 Release: 1
Summary: An MS Windows Emulator Summary: An MS Windows Emulator
Url: http://www.winehq.com Url: http://www.winehq.com
@ -42,7 +42,8 @@ Source3: README.SuSE
Source4: wine.desktop Source4: wine.desktop
Source5: ubuntuwine.tar.bz2 Source5: ubuntuwine.tar.bz2
# SUSE specific patches # SUSE specific patches
Patch0: susepatches.patch # - currently none, but add them here
#Patch0: susepatches.patch
Recommends: wine-gecko wine-mp3 Recommends: wine-gecko wine-mp3
%ifarch %ix86 x86_64 %ifarch %ix86 x86_64
Requires: wine-32bit = %version Requires: wine-32bit = %version

18606
winetricks

File diff suppressed because it is too large Load Diff