8 Commits

Author SHA1 Message Date
Storm Dragon c6049ef5f3 Preparing for release. 2026-01-26 13:07:33 -05:00
Storm Dragon c8c1922060 Minor tweaks to steam notifications. 2026-01-26 13:03:58 -05:00
Storm Dragon c8304ce7c0 Fixed indentation error. 2026-01-21 10:04:50 -05:00
Storm Dragon 8ff9c70d29 commit: fix: Corrected indentation error in speech.py file
Co-authored-by: aider (ollama/deepseek-coder:6.7b) <aider@aider.chat>
2026-01-21 09:31:12 -05:00
Storm Dragon 26cca56c34 fix: correct indentation in setSpeechServer function
Co-authored-by: aider (ollama/deepseek-coder:6.7b) <aider@aider.chat>
2026-01-21 09:28:32 -05:00
Storm Dragon 803404aa48 fix: correct indentation in setSpeechServer function
Co-authored-by: aider (ollama/deepseek-coder:6.7b) <aider@aider.chat>
2026-01-21 09:27:41 -05:00
Storm Dragon 78ef51d01f Latest code, hopefully stable. 2026-01-19 05:24:48 -05:00
Storm Dragon 30a40f6974 Merged dbus implementation for plugins. 2026-01-12 11:54:42 -05:00
6 changed files with 7 additions and 7 deletions
+1
View File
@@ -102,3 +102,4 @@ po/insert-header.sed
!/help/C/*.xml !/help/C/*.xml
/help/*/*.mo /help/*/*.mo
/help/*/*.stamp /help/*/*.stamp
.aider*
+1 -1
View File
@@ -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.19 pkgver=2026.01.26
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 -1
View File
@@ -1,5 +1,5 @@
project('cthulhu', project('cthulhu',
version: '2026.01.19-testing', version: '2026.01.26-master',
meson_version: '>= 1.0.0', meson_version: '>= 1.0.0',
) )
+2 -2
View File
@@ -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.19" version = "2026.01.26"
codeName = "testing" codeName = "master"
+2
View File
@@ -81,6 +81,8 @@ class ScriptManager:
{'Icedove': 'Thunderbird', {'Icedove': 'Thunderbird',
'Nereid': 'Banshee', 'Nereid': 'Banshee',
'gnome-calculator': 'gcalctool', 'gnome-calculator': 'gcalctool',
'Steam': 'steamwebhelper',
'Steam Web Helper': 'steamwebhelper',
'gtk-window-decorator': 'switcher', 'gtk-window-decorator': 'switcher',
'marco': 'switcher', 'marco': 'switcher',
'xfce4-notifyd': 'notification-daemon', 'xfce4-notifyd': 'notification-daemon',
-3
View File
@@ -167,9 +167,6 @@ def setSpeechServer(speechServer: SpeechServer) -> None:
""" """
global _speechserver global _speechserver
_speechserver = speechServer _speechserver = speechServer
shutdown()
else:
init()
def __resolveACSS(acss: Optional[Any] = None) -> ACSS: def __resolveACSS(acss: Optional[Any] = None) -> ACSS:
if isinstance(acss, ACSS): if isinstance(acss, ACSS):