From 15301c91217fdc71aae375eb130e106b1a443c01 Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Sat, 25 Jan 2025 22:00:14 +0100 Subject: [PATCH 1/3] Bump version and update changelog --- CHANGELOG.md | 33 +++++++++++++++++++++++++++++++++ novelwriter/__init__.py | 6 +++--- sample/nwProject.nwx | 4 ++-- 3 files changed, 38 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index edec4a39..2db9c025 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,38 @@ # novelWriter Changelog +## Version 2.6 [2025-01-26] + +### Release Notes + +The 2.6 release fixes a few minor issues from the RC 1 pre-release, and updates most translations. + +See the website for complete [Release Notes](https://novelwriter.io/releases/release_2_6.html). + +### Detailed Changelog + +**Bugfixes** + +* Fixed a bug in the novel selector dropdown used a few places that would clear the selection if + the novel list was refreshed. PR #2179. +* Fixed a bug that would crash the app if the project tree was clicked without any project having + been loaded. The selection model does not exist prior to a project load. Issue #2173. PR #2181. +* Replaced a broken link on the dictionary install tool available on Windows. PR #2189. +* Backported a few code fixes from 2.7 related to freeing memory from closed dialogs and one + instance of a potentially uninitialised variable. PR #2202. +* Fixed word wrapping in the item details panel for status and importance labels with very long + names. PR #2202. +* Fixed the project tree context menu so that it is not opened when right-clicking on an empty area + of the tree widget. PR #2202. + +**Improvements** + +* Chapter headings are now level 1 headings in all manuscript output formats, not just HTML like + before. Most applications that post-processes output will assume chapters are level 1. + Correspondingly, scenes are now level 2 and sections are level 3. Notes headings remain + unchanged. Issue #2205. PR #2206. + +---- + ## Version 2.6 RC 1 [2025-01-09] ### Release Notes diff --git a/novelwriter/__init__.py b/novelwriter/__init__.py index 1ae7ed84..84957f84 100644 --- a/novelwriter/__init__.py +++ b/novelwriter/__init__.py @@ -47,9 +47,9 @@ __license__ = "GPLv3" __author__ = "Veronica Berglyd Olsen" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" -__version__ = "2.6rc1" -__hexversion__ = "0x020600c1" -__date__ = "2025-01-09" +__version__ = "2.6" +__hexversion__ = "0x020600f0" +__date__ = "2025-01-26" __status__ = "Stable" __domain__ = "novelwriter.io" diff --git a/sample/nwProject.nwx b/sample/nwProject.nwx index edccaf43..22ff2391 100644 --- a/sample/nwProject.nwx +++ b/sample/nwProject.nwx @@ -1,6 +1,6 @@ - - + + Sample Project Jane Smith From 8ca13f6e082395615922b8e72051f616895fc9bf Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Sun, 26 Jan 2025 20:01:34 +0100 Subject: [PATCH 2/3] Update changelog with last changes --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2db9c025..eb0bed4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,15 @@ See the website for complete [Release Notes](https://novelwriter.io/releases/rel Correspondingly, scenes are now level 2 and sections are level 3. Notes headings remain unchanged. Issue #2205. PR #2206. +**Internationalisation** + +* German, US English, Italian, Japanese, Norwegian and Polish have been updated in full. Brazilian + Portuguese and Chinese have been partially updated. PR #2207. + +**Documentation** + +* Documentation has been updated with 2.6 features. PR #2208. + ---- ## Version 2.6 RC 1 [2025-01-09] From 9d993b29925b277866f8dfdb8e53a8ec534e96be Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Sun, 26 Jan 2025 20:05:03 +0100 Subject: [PATCH 3/3] Fix typo in changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb0bed4d..2a2755db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,7 +38,7 @@ See the website for complete [Release Notes](https://novelwriter.io/releases/rel **Documentation** -* Documentation has been updated with 2.6 features. PR #2208. +* Documentation has been updated with 2.6 features. PR #2210. ----