Skip to content

Commit af3e2fc

Browse files
authored
Release 2.4 (#1827)
2 parents ea3c5fa + 795007f commit af3e2fc

File tree

3 files changed

+58
-5
lines changed

3 files changed

+58
-5
lines changed

CHANGELOG.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,58 @@
11
# novelWriter Changelog
22

3+
## Version 2.4 [2024-04-20]
4+
5+
### Release Notes
6+
7+
This release adds a new global search feature. The tool is still relatively basic, and will likely
8+
be extended in later releases.
9+
10+
Among new text editing features is the ability to highlight text using `[m]text[/m]` shortcodes.
11+
The code `[m]` is for "mark", which is the equivalent code in HTML.
12+
13+
A second feature added for text editing is the ability to add an alternatively formatted scene
14+
heading by adding a `!` to the markup, like for chapters and main titles. This allows to
15+
distinguish between two scene formatting styles, `### Title` and `###! Title`, which can for
16+
instance be used for soft and hard scene breaks.
17+
18+
The **Manuscript Build** tool has also been extended with multiple new formatting options.
19+
20+
See the website for complete [Release Notes](https://novelwriter.io/releases/release_2_4.html).
21+
22+
### Detailed Changelog
23+
24+
**Bugfixes**
25+
26+
* Fixed background colour on some widgets on the new Project Search tool. PR #1800.
27+
* Fixed a bug when using bold/italic/strike through toggle on an existing text selection in the
28+
editor. Issue #1807. PR #1808.
29+
* An index out of bounds error in the word counter has been fixed. It could only be triggered by a
30+
single line only containing a ">" character. Issues #1816 and #1825. PR #1817.
31+
* Fixed an issue where not all theme colours were completely reset before changing theme. PR #1820.
32+
* Shortcodes are no longer passed to the spell checker. PR #1823.
33+
34+
**Improvements**
35+
36+
* Made placeholder text for search read as "Search for" and "Replace with". PR #1799.
37+
* The initial count for adding chapter and scenes to new project in the Welcome dialog has been
38+
changed to 0. The user must now select to add chapters and scenes. Issue #1811. PR #1815.
39+
40+
**Documentation**
41+
42+
* Updated the documentation for 2.4 features. PR #1818.
43+
44+
**Internationalisation**
45+
46+
* Norwegian and US English translations updated by Veronica Berglyd Olsen (@vkbo).
47+
PRs #1799 and #1814.
48+
* Latin American Spanish translation updated by Tommy Marplatt (@tmarplatt). PR #1814.
49+
* Italian translation updated by Lou Cyper (loucyper1). PR #1814.
50+
* Japanese translation updated by @hebekeg. PR #1814.
51+
* French translation updated by Albert Aribaud (@aaribaud). PR #1821.
52+
* German translation updated by Myian (@HeyMyian). PR #1821.
53+
54+
----
55+
356
## Version 2.4 RC 1 [2024-04-06]
457

558
### Release Notes

novelwriter/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
__author__ = "Veronica Berglyd Olsen"
4848
__maintainer__ = "Veronica Berglyd Olsen"
4949
__email__ = "[email protected]"
50-
__version__ = "2.4rc1"
51-
__hexversion__ = "0x020400c1"
52-
__date__ = "2024-04-06"
50+
__version__ = "2.4"
51+
__hexversion__ = "0x020400f0"
52+
__date__ = "2024-04-20"
5353
__status__ = "Stable"
5454
__domain__ = "novelwriter.io"
5555

sample/nwProject.nwx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<novelWriterXML appVersion="2.4rc1" hexVersion="0x020400c1" fileVersion="1.5" fileRevision="3" timeStamp="2024-04-06 15:52:29">
3-
<project id="e2be99af-f9bf-4403-857a-c3d1ac25abea" saveCount="1699" autoCount="264" editTime="83349">
2+
<novelWriterXML appVersion="2.4" hexVersion="0x020400f0" fileVersion="1.5" fileRevision="3" timeStamp="2024-04-20 15:25:00">
3+
<project id="e2be99af-f9bf-4403-857a-c3d1ac25abea" saveCount="1701" autoCount="264" editTime="83373">
44
<name>Sample Project</name>
55
<author>Jane Smith</author>
66
</project>

0 commit comments

Comments
 (0)