From 2361a3e796a3c4d58b3af4c27127326a0bbef271 Mon Sep 17 00:00:00 2001 From: gutosie Date: Fri, 12 Dec 2025 15:31:12 +0200 Subject: [PATCH] Update plugin.py --- NeoBoot/plugin.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/NeoBoot/plugin.py b/NeoBoot/plugin.py index 29042a5..9eb75b3 100644 --- a/NeoBoot/plugin.py +++ b/NeoBoot/plugin.py @@ -1868,7 +1868,7 @@ def main(session, **kwargs): def menu(menuid, **kwargs): if menuid == 'mainmenu': - return [(_('NeoBOOT'), + return [(_('neoboot'), main, 'neo_boot', 1)] @@ -1880,11 +1880,11 @@ from Plugins.Plugin import PluginDescriptor def Plugins(**kwargs): if isFHD(): - list = [PluginDescriptor(name='NeoBoot', description='NeoBoot', where=PluginDescriptor.WHERE_MENU, fnc=menu), PluginDescriptor(name='NeoBoot', description=_('Installing multiple images'), icon='neo_fhd.png', where=PluginDescriptor.WHERE_PLUGINMENU, fnc=main)] - list.append(PluginDescriptor(name=_('NEOBOOT'), where=PluginDescriptor.WHERE_EXTENSIONSMENU, fnc=main)) + list = [PluginDescriptor(name='neoboot', description='neoboot', where=PluginDescriptor.WHERE_MENU, fnc=menu), PluginDescriptor(name='neoboot', description=_('Installing multiple images'), icon='neo_fhd.png', where=PluginDescriptor.WHERE_PLUGINMENU, fnc=main)] + list.append(PluginDescriptor(name=_('neoboot'), where=PluginDescriptor.WHERE_EXTENSIONSMENU, fnc=main)) else: - list = [PluginDescriptor(name='NeoBoot', description='NeoBoot', where=PluginDescriptor.WHERE_MENU, fnc=menu), PluginDescriptor(name='NeoBoot', description=_('Installing multiple images'), icon='neo_hd.png', where=PluginDescriptor.WHERE_PLUGINMENU, fnc=main)] - list.append(PluginDescriptor(name=_('NEOBOOT'), where=PluginDescriptor.WHERE_EXTENSIONSMENU, fnc=main)) + list = [PluginDescriptor(name='neoboot', description='neoboot', where=PluginDescriptor.WHERE_MENU, fnc=menu), PluginDescriptor(name='neoboot', description=_('Installing multiple images'), icon='neo_hd.png', where=PluginDescriptor.WHERE_PLUGINMENU, fnc=main)] + list.append(PluginDescriptor(name=_('neoboot'), where=PluginDescriptor.WHERE_EXTENSIONSMENU, fnc=main)) return list ####################### _q(-_-)p_ gutosie _q(-_-)p_ #######################