Rename manuscript build tool file and add build dialog

This commit is contained in:
Veronica Berglyd Olsen
2023-05-24 22:38:47 +02:00
parent a1837d8153
commit ad6b517c1d
6 changed files with 69 additions and 23 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ VALID_MAP = {
"GuiBuildSettings": {
"winWidth", "winHeight", "treeWidth", "filterWidth"
},
"GuiBuildManuscript": {
"GuiManuscript": {
"winWidth", "winHeight", "optsWidth", "viewWidth"
},
}
+2 -1
View File
@@ -4,7 +4,8 @@ novelWriter Text Tokenizer
Split novelWriter plain text into its elements
File History:
Created: 2019-05-05 [0.0.1]
Created: 2019-05-05 [0.0.1] Tokenizer
Created: 2023-05-23 [2.1b1] HeadingFormatter
This file is a part of novelWriter
Copyright 20182023, Veronica Berglyd Olsen
+6 -2
View File
@@ -4,7 +4,10 @@ novelWriter ODT Text Converter
Extends the Tokenizer class to generate ODT and FODT files
File History:
Created: 2021-01-26 [1.2b1]
Created: 2021-01-26 [1.2b1] ToOdt
Created: 2021-01-27 [1.2b1] ODTParagraphStyle
Created: 2021-01-27 [1.2b1] ODTTextStyle
Created: 2021-08-14 [1.5b1] XMLParagraph
This file is a part of novelWriter
Copyright 20182023, Veronica Berglyd Olsen
@@ -1439,7 +1442,8 @@ class XMLParagraph:
def checkError(self):
"""Check that the number of characters written matches the
number of characters received."""
number of characters received.
"""
errMsg = ""
nMissed = len(self._rawTxt) - self._chrPos
if nMissed != 0: