diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e8be35d..75b57823 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # novelWriter Changelog +## Version 2.0.4 [2023-01-29] + +### Release Notes + +This is a patch release that fixes a bug where novelWriter would crash if PyQt5 version 5.15.8 was +installed and imported. + +### Detailed Changelog + +**Bugfixes** + +* Fix an issue with the version check against PyQt5, which was imported from the wrong package when + running novelWriter with PyQt5 version 5.15.8, released 2023-01-28. Issue #1324. PR #1325. + +---- + ## Version 2.0.3 [2023-01-08] ### Release Notes diff --git a/novelwriter/__init__.py b/novelwriter/__init__.py index 48345eea..b1621a76 100644 --- a/novelwriter/__init__.py +++ b/novelwriter/__init__.py @@ -59,9 +59,9 @@ __license__ = "GPLv3" __author__ = "Veronica Berglyd Olsen" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" -__version__ = "2.0.3" -__hexversion__ = "0x020003f0" -__date__ = "2023-01-08" +__version__ = "2.0.4" +__hexversion__ = "0x020004f0" +__date__ = "2023-01-29" __status__ = "Stable" __domain__ = "novelwriter.io" __url__ = "https://novelwriter.io" @@ -179,12 +179,12 @@ def main(sysArgs=None): "At least Python 3.7 is required, found %s" % CONFIG.verPyString ) errorCode |= 0x04 - if CONFIG.verQtValue < 51000: + if CONFIG.verQtValue < 0x050a00: errorData.append( "At least Qt5 version 5.10 is required, found %s" % CONFIG.verQtString ) errorCode |= 0x08 - if CONFIG.verPyQtValue < 51000: + if CONFIG.verPyQtValue < 0x050a00: errorData.append( "At least PyQt5 version 5.10 is required, found %s" % CONFIG.verPyQtString ) diff --git a/novelwriter/assets/text/release_notes.htm b/novelwriter/assets/text/release_notes.htm index 816cf0f6..4dbba364 100644 --- a/novelwriter/assets/text/release_notes.htm +++ b/novelwriter/assets/text/release_notes.htm @@ -109,5 +109,10 @@ been updated and a renderring issue with one of them fixed. Chinese, Norwegian, and Spanish translations have been updated as well. A new credits tab has been added to the About dialog box, replacing the Credits section on the main About tab.
+This is a patch release that fixes a bug where novelWriter would crash if PyQt5 version 5.15.8 +was installed and imported.
+