Bump version for testing builds.
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
# Maintainer: Storm Dragon <storm_dragon@stormux.org>
|
# Maintainer: Storm Dragon <storm_dragon@stormux.org>
|
||||||
|
|
||||||
pkgname=cthulhu
|
pkgname=cthulhu
|
||||||
pkgver=2026.01.12
|
pkgver=2026.01.19
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Desktop-agnostic screen reader with plugin system, forked from Orca"
|
pkgdesc="Desktop-agnostic screen reader with plugin system, forked from Orca"
|
||||||
url="https://git.stormux.org/storm/cthulhu"
|
url="https://git.stormux.org/storm/cthulhu"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
project('cthulhu',
|
project('cthulhu',
|
||||||
version: '2026.01.12-testing',
|
version: '2026.01.19-testing',
|
||||||
meson_version: '>= 1.0.0',
|
meson_version: '>= 1.0.0',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -23,5 +23,5 @@
|
|||||||
# Forked from Orca screen reader.
|
# Forked from Orca screen reader.
|
||||||
# Cthulhu project: https://git.stormux.org/storm/cthulhu
|
# Cthulhu project: https://git.stormux.org/storm/cthulhu
|
||||||
|
|
||||||
version = "2026.01.12"
|
version = "2026.01.19"
|
||||||
codeName = "testing"
|
codeName = "testing"
|
||||||
|
|||||||
@@ -1487,9 +1487,13 @@ class StructuralNavigation:
|
|||||||
def _chunkCriteria(self, arg=None):
|
def _chunkCriteria(self, arg=None):
|
||||||
return AXCollection.create_match_rule(roles=self.OBJECT_ROLES + self.CONTAINER_ROLES)
|
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):
|
if AXUtilities.is_heading(obj):
|
||||||
return True
|
return True
|
||||||
|
if AXUtilities.is_list(obj):
|
||||||
|
return True
|
||||||
|
if AXUtilities.is_table(obj):
|
||||||
|
return True
|
||||||
|
|
||||||
text = self._script.utilities.queryNonEmptyText(obj)
|
text = self._script.utilities.queryNonEmptyText(obj)
|
||||||
if not text:
|
if not text:
|
||||||
|
|||||||
Reference in New Issue
Block a user