Sort entries for autogenerated README.md file.

This commit is contained in:
Sebastian Lackner 2014-07-11 19:38:38 +02:00
parent 32148424bd
commit bb0cece9a9
2 changed files with 19 additions and 13 deletions

View File

@ -5,24 +5,24 @@ The Wine "Compholio" Edition repository includes a variety of patches for Wine t
These patches fix the following Wine bugs:
* ([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 #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 #34406](http://bugs.winehq.org/show_bug.cgi?id=34406)) Finale Notepad 2012 doesn't copy/create user files on program start
* ([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 #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 #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 #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 #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
Besides that the following additional changes are included:
* XEMBED support for embedding Wine windows inside Linux applications
* Support for PulseAudio backend for audio
* Support for GetVolumePathName
* Lockfree algorithm for filedescriptor cache (improves file access speed)
* Workaround for shlwapi URLs with relative paths
* Reduced SetTimer minimum value from 15 ms to 5 ms (improves Silverlight framerates)
* Other Pipelight specific enhancements
* Reduced SetTimer minimum value from 15 ms to 5 ms (improves Silverlight framerates)
* Support for GetVolumePathName
* Support for PulseAudio backend for audio
* Workaround for shlwapi URLs with relative paths
* XEMBED support for embedding Wine windows inside Linux applications

View File

@ -247,16 +247,22 @@ def generate_readme(patches, fp):
fp.write("\n")
fp.write("These patches fix the following Wine bugs:\n")
fp.write("\n")
all_fixes = []
for i, patch in patches.iteritems():
for (bugid, bugname) in patch.fixes:
fp.write("* ([Wine Bug #%d](http://bugs.winehq.org/show_bug.cgi?id=%d)) %s\n" % (bugid, bugid, bugname))
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("\n")
fp.write("\n")
fp.write("Besides that the following additional changes are included:\n")
fp.write("\n")
all_changes = []
for i, patch in patches.iteritems():
for change in patch.changes:
fp.write("* %s\n" % change)
all_changes.append(change)
for change in sorted(all_changes):
fp.write("* %s\n" % change)
fp.write("\n")
if __name__ == "__main__":