Plugin work

This commit is contained in:
2022-09-04 22:35:30 -05:00
parent aabcd46d75
commit 3d0a714106
14 changed files with 1122 additions and 267 deletions

View File

@@ -1,11 +1,11 @@
{
"manifest": {
"name": "Favorites Plugin",
"name": "Favorites",
"author": "ITDominator",
"version": "0.0.1",
"support": "",
"requests": {
"ui_target": "plugin_control_list",
"ui_target": "main_menu_bttn_box_bar",
"pass_fm_events": "true",
"pass_ui_objects": ["path_entry"],
"bind_keys": []

View File

@@ -26,7 +26,7 @@ def daemon_threaded(fn):
class Plugin:
def __init__(self):
self.name = "Favorites Plugin" # NOTE: Need to remove after establishing private bidirectional 1-1 message bus
self.name = "Favorites" # NOTE: Need to remove after establishing private bidirectional 1-1 message bus
# where self.name should not be needed for message comms
self.path = os.path.dirname(os.path.realpath(__file__))
self._GLADE_FILE = f"{self.path}/favorites.glade"