A few touch ups before tagged release.
This commit is contained in:
@@ -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 = ""
|
||||
|
||||
@@ -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
|
||||
#
|
||||
|
||||
@@ -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}'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user