diff --git a/src/cthulhu/cthulhuVersion.py b/src/cthulhu/cthulhuVersion.py index ff8827e..030b4bd 100644 --- a/src/cthulhu/cthulhuVersion.py +++ b/src/cthulhu/cthulhuVersion.py @@ -23,5 +23,5 @@ # Fork of Orca Screen Reader (GNOME) # Original source: https://gitlab.gnome.org/GNOME/orca -version = "2025.04.03" +version = "2025.04.04" codeName = "testing" diff --git a/src/cthulhu/plugins/Date/Date.plugin b/src/cthulhu/plugins/Date/Date.plugin deleted file mode 100644 index 12f6a7e..0000000 --- a/src/cthulhu/plugins/Date/Date.plugin +++ /dev/null @@ -1,6 +0,0 @@ -[Plugin] -Module=Date -Loader=python3 -Name=Date -Description=Present the current date -Authors=Chrys chrys@linux-a11y.org diff --git a/src/cthulhu/plugins/Date/Date.py b/src/cthulhu/plugins/Date/Date.py deleted file mode 100644 index 3d7887f..0000000 --- a/src/cthulhu/plugins/Date/Date.py +++ /dev/null @@ -1,58 +0,0 @@ -#!/usr/bin/env python3 -# -# Copyright (c) 2024 Stormux -# Copyright (c) 2010-2012 The Orca Team -# Copyright (c) 2012 Igalia, S.L. -# Copyright (c) 2005-2010 Sun Microsystems Inc. -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., Franklin Street, Fifth Floor, -# Boston MA 02110-1301 USA. -# -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca - -from cthulhu import plugin - -import gi, time -gi.require_version('Peas', '1.0') -from gi.repository import GObject -from gi.repository import Peas - -class Date(GObject.Object, Peas.Activatable, plugin.Plugin): - #__gtype_name__ = 'Date' - - object = GObject.Property(type=GObject.Object) - def __init__(self): - plugin.Plugin.__init__(self) - def do_activate(self): - API = self.object - self.connectSignal("setup-inputeventhandlers-completed", self.setupCompatBinding) - def setupCompatBinding(self, app): - cmdnames = app.getDynamicApiManager().getAPI('Cmdnames') - inputEventHandlers = app.getDynamicApiManager().getAPI('inputEventHandlers') - inputEventHandlers['presentDateHandler'] = app.getAPIHelper().createInputEventHandler(self.presentDate, cmdnames.PRESENT_CURRENT_DATE) - def do_deactivate(self): - API = self.object - inputEventHandlers = API.app.getDynamicApiManager().getAPI('inputEventHandlers') - del inputEventHandlers['presentDateHandler'] - def presentDate(self, script=None, inputEvent=None): - """ Presents the current time. """ - API = self.object - settings_manager = API.app.getDynamicApiManager().getAPI('SettingsManager') - _settingsManager = settings_manager.getManager() - dateFormat = _settingsManager.getSetting('presentDateFormat') - message = time.strftime(dateFormat, time.localtime()) - API.app.getDynamicApiManager().getAPI('CthulhuState').activeScript.presentMessage(message, resetStyles=False) - return True diff --git a/src/cthulhu/plugins/Date/Makefile.am b/src/cthulhu/plugins/Date/Makefile.am deleted file mode 100644 index 64881f8..0000000 --- a/src/cthulhu/plugins/Date/Makefile.am +++ /dev/null @@ -1,7 +0,0 @@ -cthulhu_python_PYTHON = \ - __init__.py \ - Date.plugin \ - Date.py - -cthulhu_pythondir=$(pkgpythondir)/plugins/Date - diff --git a/src/cthulhu/plugins/Date/__init__.py b/src/cthulhu/plugins/Date/__init__.py deleted file mode 100644 index 782103c..0000000 --- a/src/cthulhu/plugins/Date/__init__.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env python3 -# -# Copyright (c) 2024 Stormux -# Copyright (c) 2010-2012 The Orca Team -# Copyright (c) 2012 Igalia, S.L. -# Copyright (c) 2005-2010 Sun Microsystems Inc. -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., Franklin Street, Fifth Floor, -# Boston MA 02110-1301 USA. -# -# Fork of Orca Screen Reader (GNOME) -# Original source: https://gitlab.gnome.org/GNOME/orca - diff --git a/src/cthulhu/plugins/Makefile.am b/src/cthulhu/plugins/Makefile.am index 89e438a..042fc2b 100644 --- a/src/cthulhu/plugins/Makefile.am +++ b/src/cthulhu/plugins/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS = Clipboard DisplayVersion hello_world self_voice Time MouseReview Date ByeCthulhu HelloCthulhu PluginManager CapsLockHack SimplePluginSystem +SUBDIRS = Clipboard DisplayVersion hello_world self_voice Time MouseReview ByeCthulhu HelloCthulhu PluginManager CapsLockHack SimplePluginSystem cthulhu_pythondir=$(pkgpythondir)/plugins diff --git a/src/cthulhu/settings.py b/src/cthulhu/settings.py index 1c05ff9..787c5cd 100644 --- a/src/cthulhu/settings.py +++ b/src/cthulhu/settings.py @@ -413,4 +413,4 @@ presentChatRoomLast = False presentLiveRegionFromInactiveTab = False # Plugins -activePlugins = ['Clipboard', 'DisplayVersion', 'MouseReview', 'Date', 'ByeCthulhu', 'Time', 'HelloCthulhu', 'hello_world', 'self_voice', 'PluginManager', 'SimplePluginSystem'] +activePlugins = ['Clipboard', 'DisplayVersion', 'MouseReview', 'ByeCthulhu', 'Time', 'HelloCthulhu', 'hello_world', 'self_voice', 'PluginManager', 'SimplePluginSystem']