From 79861c20f132f5882e6939813c926ed91f2102ae Mon Sep 17 00:00:00 2001 From: Sebastian Lackner Date: Fri, 11 Jul 2014 19:44:07 +0200 Subject: [PATCH] Show bug numbers in README.md after the description. --- README.md | 18 +++++++++--------- debian/tools/patchupdate.py | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2e8ccefe..4ac1d712 100644 --- a/README.md +++ b/README.md @@ -5,15 +5,15 @@ The Wine "Compholio" Edition repository includes a variety of patches for Wine t These patches fix the following Wine bugs: -* ([Wine Bug #5048](http://bugs.winehq.org/show_bug.cgi?id=5048)) Multiple applications and games need support for ws2_32 SIO_GET_EXTENSION_FUNCTION_POINTER TransmitFile (WSAID_TRANSMITFILE) -* ([Wine Bug #12401](http://bugs.winehq.org/show_bug.cgi?id=12401)) Support junction points, i.e. DeviceIoCtl(FSCTL_SET_REPARSE_POINT/FSCTL_GET_REPARSE_POINT) -* ([Wine Bug #15980](http://bugs.winehq.org/show_bug.cgi?id=15980)) Rhapsody 2 crashes on startup (GetSecurityInfo returns NULL DACL for process object) -* ([Wine Bug #17273](http://bugs.winehq.org/show_bug.cgi?id=17273)) Many apps and games need SetNamedPipeHandleState implementation (support for named pipe message mode)(FireFox+Flash, Win8/NET 4.x SDK/vcrun2012, WiX installers) -* ([Wine Bug #29903](http://bugs.winehq.org/show_bug.cgi?id=29903)) Some Microsoft debuggers fail to enumerate processes due to wtsapi32.WTSEnumerateProcessesW() being a stub (Microsoft Visual Studio 2005, DbgCLR from .NET 2.0 SDK) -* ([Wine Bug #31858](http://bugs.winehq.org/show_bug.cgi?id=31858)) Netflix on Firefox fails with Internet Connection Problem when loading bar is at 99% -* ([Wine Bug #32323](http://bugs.winehq.org/show_bug.cgi?id=32323)) Netflix (Silverlight 4.x) and several .NET Framework 3.x/4.0 WPF apps require either Arial or Verdana to be installed -* ([Wine Bug #32328](http://bugs.winehq.org/show_bug.cgi?id=32328)) Many .NET and Silverlight applications require SIO_ADDRESS_LIST_CHANGE for interface change notifications -* ([Wine Bug #34406](http://bugs.winehq.org/show_bug.cgi?id=34406)) Finale Notepad 2012 doesn't copy/create user files on program start +* Multiple applications and games need support for ws2_32 SIO_GET_EXTENSION_FUNCTION_POINTER TransmitFile (WSAID_TRANSMITFILE) ([Wine Bug #5048](http://bugs.winehq.org/show_bug.cgi?id=5048)) +* Support junction points, i.e. DeviceIoCtl(FSCTL_SET_REPARSE_POINT/FSCTL_GET_REPARSE_POINT) ([Wine Bug #12401](http://bugs.winehq.org/show_bug.cgi?id=12401)) +* Rhapsody 2 crashes on startup (GetSecurityInfo returns NULL DACL for process object) ([Wine Bug #15980](http://bugs.winehq.org/show_bug.cgi?id=15980)) +* Many apps and games need SetNamedPipeHandleState implementation (support for named pipe message mode)(FireFox+Flash, Win8/NET 4.x SDK/vcrun2012, WiX installers) ([Wine Bug #17273](http://bugs.winehq.org/show_bug.cgi?id=17273)) +* Some Microsoft debuggers fail to enumerate processes due to wtsapi32.WTSEnumerateProcessesW() being a stub (Microsoft Visual Studio 2005, DbgCLR from .NET 2.0 SDK) ([Wine Bug #29903](http://bugs.winehq.org/show_bug.cgi?id=29903)) +* Netflix on Firefox fails with Internet Connection Problem when loading bar is at 99% ([Wine Bug #31858](http://bugs.winehq.org/show_bug.cgi?id=31858)) +* Netflix (Silverlight 4.x) and several .NET Framework 3.x/4.0 WPF apps require either Arial or Verdana to be installed ([Wine Bug #32323](http://bugs.winehq.org/show_bug.cgi?id=32323)) +* Many .NET and Silverlight applications require SIO_ADDRESS_LIST_CHANGE for interface change notifications ([Wine Bug #32328](http://bugs.winehq.org/show_bug.cgi?id=32328)) +* Finale Notepad 2012 doesn't copy/create user files on program start ([Wine Bug #34406](http://bugs.winehq.org/show_bug.cgi?id=34406)) Besides that the following additional changes are included: diff --git a/debian/tools/patchupdate.py b/debian/tools/patchupdate.py index bff85ad0..76b46ea7 100755 --- a/debian/tools/patchupdate.py +++ b/debian/tools/patchupdate.py @@ -252,7 +252,7 @@ def generate_readme(patches, fp): for (bugid, bugname) in patch.fixes: all_fixes.append((bugid, bugname)) for (bugid, bugname) in sorted(all_fixes): - fp.write("* ([Wine Bug #%d](http://bugs.winehq.org/show_bug.cgi?id=%d)) %s\n" % (bugid, bugid, bugname)) + fp.write("* %s ([Wine Bug #%d](http://bugs.winehq.org/show_bug.cgi?id=%d))\n" % (bugname, bugid, bugid)) fp.write("\n") fp.write("\n") fp.write("Besides that the following additional changes are included:\n")