Merge branch 'main' into dev

This commit is contained in:
Veronica Berglyd Olsen
2024-03-11 22:26:15 +01:00
20 changed files with 1206 additions and 1152 deletions
+2 -1
View File
@@ -46,7 +46,7 @@ if TYPE_CHECKING: # pragma: no cover
logger = logging.getLogger(__name__)
FILE_VERSION = "1.5" # The current project file format version
FILE_REVISION = "2" # The current project file format revision
FILE_REVISION = "3" # The current project file format revision
HEX_VERSION = 0x0105
NUM_VERSION = {
@@ -108,6 +108,7 @@ class ProjectXMLReader:
Rev 1: Drops the titleFormat node from settings. 2.1 Beta 1.
Rev 2: Drops the title node from project and adds the TEMPLATE
class for items. 2.3 Beta 1.
Rev 3: Added TEMPLATE class. 2.3.
"""
def __init__(self, path: str | Path) -> None:
+1 -1
View File
@@ -70,7 +70,7 @@ class GuiWordList(QDialog):
# Header
self.headLabel = NColourLabel(
"Project Word List", SHARED.theme.helpText, parent=self,
self.tr("Project Word List"), SHARED.theme.helpText, parent=self,
scale=NColourLabel.HEADER_SCALE
)