A few touch ups before tagged release.

This commit is contained in:
Storm Dragon
2026-05-26 00:27:40 -04:00
parent c39f2310e3
commit 46d3c66dc7
14 changed files with 130 additions and 85 deletions
+2 -2
View File
@@ -23,5 +23,5 @@
# Forked from Orca screen reader.
# Cthulhu project: https://git.stormux.org/storm/cthulhu
version = "2026.05.14"
codeName = "master"
version = "2026.05.25"
codeName = ""
+2 -1
View File
@@ -30,7 +30,8 @@ __license__ = "LGPL"
# $CTHULHU_VERSION
#
version = f"Cthulhu screen reader version {cthulhuVersion.version}-{cthulhuVersion.codeName}"
versionSuffix = f"-{cthulhuVersion.codeName}" if cthulhuVersion.codeName else ""
version = f"Cthulhu screen reader version {cthulhuVersion.version}{versionSuffix}"
# The revision if built from git; otherwise an empty string
#
+2 -1
View File
@@ -35,7 +35,8 @@ class DisplayVersion(Plugin):
def _get_version_string(self):
"""Generate the full version string with AT-SPI and session information."""
msg = f'Cthulhu screen reader version {cthulhuVersion.version}-{cthulhuVersion.codeName}'
version_suffix = f'-{cthulhuVersion.codeName}' if cthulhuVersion.codeName else ''
msg = f'Cthulhu screen reader version {cthulhuVersion.version}{version_suffix}'
if cthulhu_platform.revision:
msg += f' revision {cthulhu_platform.revision}'