Bump version and update changelog
This commit is contained in:
@@ -1,5 +1,28 @@
|
|||||||
# novelWriter Changelog
|
# novelWriter Changelog
|
||||||
|
|
||||||
|
## Version 2.7.5 [2025-09-14]
|
||||||
|
|
||||||
|
### Release Notes
|
||||||
|
|
||||||
|
This is a patch release that fixes an issue related to crashes when using the completer menu under
|
||||||
|
certain conditions, and improves positioning of the input box for CJK languages.
|
||||||
|
|
||||||
|
### Detailed Changelog
|
||||||
|
|
||||||
|
**Bugfixes**
|
||||||
|
|
||||||
|
* Fixes an issue where the app would crash of deleting the `@` character with the completer menu
|
||||||
|
visible and the text margins of the editor set to "justified". This is likely crashing due to
|
||||||
|
some unhandled corner case in the Qt library, but the implementation of the completer menu in
|
||||||
|
novelWriter uses a small hack to bypass some intended behaviour of the menu. Extra steps have
|
||||||
|
been added to the implementation that seems to avoid the crash. Issue #2510. PR #2511.
|
||||||
|
* Fixes an issue where the input box that shows up when typing CJK languages were covering the text
|
||||||
|
due to an incorrect offset of the box location. The incorrect offset is caused by the text
|
||||||
|
margins not being taken into account. Fix by @Euophrys based on solution by @Jack-name.
|
||||||
|
Issues #2267 and #2517. PR #2518.
|
||||||
|
|
||||||
|
----
|
||||||
|
|
||||||
## Version 2.7.4 [2025-07-15]
|
## Version 2.7.4 [2025-07-15]
|
||||||
|
|
||||||
### Release Notes
|
### Release Notes
|
||||||
|
|||||||
@@ -49,9 +49,9 @@ __license__ = "GPLv3"
|
|||||||
__author__ = "Veronica Berglyd Olsen"
|
__author__ = "Veronica Berglyd Olsen"
|
||||||
__maintainer__ = "Veronica Berglyd Olsen"
|
__maintainer__ = "Veronica Berglyd Olsen"
|
||||||
__email__ = "code@vkbo.net"
|
__email__ = "code@vkbo.net"
|
||||||
__version__ = "2.7.4"
|
__version__ = "2.7.5"
|
||||||
__hexversion__ = "0x020704f0"
|
__hexversion__ = "0x020705f0"
|
||||||
__date__ = "2025-07-15"
|
__date__ = "2025-09-14"
|
||||||
__status__ = "Stable"
|
__status__ = "Stable"
|
||||||
__domain__ = "novelwriter.io"
|
__domain__ = "novelwriter.io"
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<novelWriterXML appVersion="2.7.4" hexVersion="0x020704f0" fileVersion="1.5" fileRevision="5" timeStamp="2025-07-15 16:54:07">
|
<novelWriterXML appVersion="2.7.5" hexVersion="0x020705f0" fileVersion="1.5" fileRevision="5" timeStamp="2025-09-14 17:28:05">
|
||||||
<project id="e2be99af-f9bf-4403-857a-c3d1ac25abea" saveCount="2211" autoCount="287" editTime="97176">
|
<project id="e2be99af-f9bf-4403-857a-c3d1ac25abea" saveCount="2212" autoCount="287" editTime="97179">
|
||||||
<name>Sample Project</name>
|
<name>Sample Project</name>
|
||||||
<author>Jane Smith</author>
|
<author>Jane Smith</author>
|
||||||
</project>
|
</project>
|
||||||
|
|||||||
Reference in New Issue
Block a user