diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e8be35d..cd8bae1a 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 @@ -178,7 +194,7 @@ icons. They are technically no longer tree views, but rather a Table of Contents novel root folder. If you have multiple novel root folders, you can select which one to view. In the Novel Tree View, you now also have the option to hide or show a third column of data. -Currently, you can chose between "Point of View Character", "Focus Character" and "Novel Plot". If +Currently, you can choose between "Point of View Character", "Focus Character" and "Novel Plot". If you referenced more than one in the document, the column will only show the first entry, so make sure the most important one is listed first in your document if you use this feature. An arrow icon is also visible at the end of each row in the tree, and if you click on it, a tool tip should pop diff --git a/docs/source/int_source.rst b/docs/source/int_source.rst index 52c246be..272f18c3 100644 --- a/docs/source/int_source.rst +++ b/docs/source/int_source.rst @@ -48,6 +48,13 @@ source, dependencies can still be installed from PyPi with: pip install -r requirements.txt +.. note:: + + On Linux distros, the Qt library is usually split up into multiple packages. In some cases, + secondary dependencies may not be installed automatically. For novelWriter, the library files + for renderring the SVG icons may be left out and needs to be installed manually. This is the + case on for instance Arch Linux. + .. _a_source_install: 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..6f8d0bd0 100644 --- a/novelwriter/assets/text/release_notes.htm +++ b/novelwriter/assets/text/release_notes.htm @@ -70,7 +70,7 @@ document icons. They are technically no longer tree views, but rather a Table of specific novel root folder. If you have multiple novel root folders, you can select which one to view.
In the Novel Tree View, you now also have the option to hide or show a third column of data. -Currently, you can chose between "Point of View Character", "Focus Character" and "Novel Plot". If +Currently, you can choose between "Point of View Character", "Focus Character" and "Novel Plot". If you referenced more than one in the document, the column will only show the first entry, so make sure the most important one is listed first in your document if you use this feature. An arrow icon is also visible at the end of each row in the tree, and if you click on it, a tool tip should pop @@ -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.
+