Bump version for testing builds.

This commit is contained in:
Storm Dragon
2026-01-19 05:40:31 -05:00
parent b24744b22b
commit 75b2d482eb
4 changed files with 8 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
# Maintainer: Storm Dragon <storm_dragon@stormux.org>
pkgname=cthulhu
pkgver=2026.01.12
pkgver=2026.01.19
pkgrel=1
pkgdesc="Desktop-agnostic screen reader with plugin system, forked from Orca"
url="https://git.stormux.org/storm/cthulhu"

View File

@@ -1,5 +1,5 @@
project('cthulhu',
version: '2026.01.12-testing',
version: '2026.01.19-testing',
meson_version: '>= 1.0.0',
)

View File

@@ -23,5 +23,5 @@
# Forked from Orca screen reader.
# Cthulhu project: https://git.stormux.org/storm/cthulhu
version = "2026.01.12"
version = "2026.01.19"
codeName = "testing"

View File

@@ -1487,9 +1487,13 @@ class StructuralNavigation:
def _chunkCriteria(self, arg=None):
return AXCollection.create_match_rule(roles=self.OBJECT_ROLES + self.CONTAINER_ROLES)
def _chunkPredicate(self, obj, arg=None):
def _chunkPredicate(self, obj: Atspi.Accessible, arg=None) -> bool:
if AXUtilities.is_heading(obj):
return True
if AXUtilities.is_list(obj):
return True
if AXUtilities.is_table(obj):
return True
text = self._script.utilities.queryNonEmptyText(obj)
if not text: