diff --git a/plugin_manager.py b/plugin_manager.py index 8c05d4b..dee4a71 100644 --- a/plugin_manager.py +++ b/plugin_manager.py @@ -80,9 +80,11 @@ class Plugin: with open(self.install_path, "wb") as fout: fout.write(response.read()) self.enable() + _ba.screenmessage("Plugin Installed") def uninstall(self): os.remove(self.install_path) + _ba.screenmessage("Plugin Uninstalled") def _set_status(self, to_enable=True): if self.entry_point not in ba.app.config["Plugins"]: @@ -92,10 +94,12 @@ class Plugin: def enable(self): self._set_status(to_enable=True) ba.app.config.apply_and_commit() + _ba.screenmessage("Plugin Enabled") def disable(self): self._set_status(to_enable=False) ba.app.config.commit() + _ba.screenmessage("Plugin Disabled") class PluginWindow(popup.PopupWindow): @@ -218,6 +222,7 @@ class PluginWindow(popup.PopupWindow): ba.containerwidget(edit=self._root_widget, transition='out_scale') return None + class PluginManager: def __init__(self): self.request_headers = HEADERS diff --git a/plugins/utilities.json b/plugins/utilities.json index 263861d..23f830a 100644 --- a/plugins/utilities.json +++ b/plugins/utilities.json @@ -10,7 +10,7 @@ }, { "name": "Vishal", - "email": null, + "email": "vishal.u338@gmail.com", "discord": "𝑽𝑰𝑺𝑯𝑼𝑼𝑼#2921" } ],