From 7122276309bc44e3ded3df1aab10a2e3a9f867c6 Mon Sep 17 00:00:00 2001 From: Sebastian Lackner Date: Wed, 13 Aug 2014 02:22:57 +0200 Subject: [PATCH] README.md: Improve formatting of headlines for fixed bugs. --- README.md | 4 ++-- debian/tools/patchupdate.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e37dfb18..8f3dcfd7 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ which are not present in regular wine, and always report such issues to us Included bugfixes and improvements ---------------------------------- -Fixed bugs for the next release (5): +**Bugs and features included in the next upcomping release [5]:** * Other Pipelight-specific enhancements * Support for DwmInvalidateIconicBitmaps ([Wine Bug #32977](http://bugs.winehq.org/show_bug.cgi?id=32977 "Solidworks 2012 needs unimplemented function dwmapi.dll.DwmInvalidateIconicBitmaps (Win7 mode)")) @@ -22,7 +22,7 @@ Fixed bugs for the next release (5): * nVidia driver for high-end laptop cards does not list all supported resolutions -Fixed bugs in Wine-Compholio 1.7.24 (45): +**Bugs fixed in Wine-Compholio 1.7.24 [45]:** * ATL IOCS data should not be stored in GWLP_USERDATA ([Wine Bug #21767](http://bugs.winehq.org/show_bug.cgi?id=21767 "JLC's Internet TV crashes on startup")) * Add Dynamic DST exceptions for Israel Standard Time ([Wine Bug #36374](http://bugs.winehq.org/show_bug.cgi?id=36374 "Israel timezone handled incorrectly")) diff --git a/debian/tools/patchupdate.py b/debian/tools/patchupdate.py index 6192b038..6477e72b 100755 --- a/debian/tools/patchupdate.py +++ b/debian/tools/patchupdate.py @@ -568,13 +568,13 @@ def generate_markdown(all_patches, stable_patches, stable_compholio_version): # Generate information for current version lines = [] if len(new_fixes): - lines.append("Fixed bugs for the next release (%d):" % len(new_fixes)) + lines.append("**Bugs and features included in the next upcomping release [%d]:**" % len(new_fixes)) lines.append("") for mode, bugid, bugname in sorted(new_fixes, key=lambda x: x[2]): lines.append(_format_bug(mode, bugid, bugname)) lines.append("") lines.append("") - lines.append("Fixed bugs in Wine-Compholio %s (%d):" % (stable_compholio_version, len(old_fixes))) + lines.append("**Bugs fixed in Wine-Compholio %s [%d]:**" % (stable_compholio_version, len(old_fixes))) lines.append("") for mode, bugid, bugname in sorted(old_fixes, key=lambda x: x[2]): lines.append(_format_bug(mode, bugid, bugname))