diff --git a/actions/RecPlayPause/RecPlayPause.py b/actions/RecPlayPause/RecPlayPause.py index 8313002..b8c18df 100644 --- a/actions/RecPlayPause/RecPlayPause.py +++ b/actions/RecPlayPause/RecPlayPause.py @@ -1,4 +1,4 @@ -from plugins.dev_core447_OBSPlugin.OBSActionBase import OBSActionBase +from plugins.com_core447_OBSPlugin.OBSActionBase import OBSActionBase from src.backend.DeckManagement.DeckController import DeckController from src.backend.PageManagement.Page import Page from src.backend.PluginManager.PluginBase import PluginBase diff --git a/actions/SwitchScene/SwitchScene.py b/actions/SwitchScene/SwitchScene.py index 61be043..5f1b0e8 100644 --- a/actions/SwitchScene/SwitchScene.py +++ b/actions/SwitchScene/SwitchScene.py @@ -1,4 +1,4 @@ -from plugins.dev_core447_OBSPlugin.OBSActionBase import OBSActionBase +from plugins.com_core447_OBSPlugin.OBSActionBase import OBSActionBase from src.backend.DeckManagement.DeckController import DeckController from src.backend.PageManagement.Page import Page from src.backend.PluginManager.PluginBase import PluginBase diff --git a/actions/ToggleRecord/ToggleRecord.py b/actions/ToggleRecord/ToggleRecord.py index bd12805..71dfc4a 100644 --- a/actions/ToggleRecord/ToggleRecord.py +++ b/actions/ToggleRecord/ToggleRecord.py @@ -1,5 +1,5 @@ # from ...OBSActionBase import OBSActionBase -from plugins.dev_core447_OBSPlugin.OBSActionBase import OBSActionBase +from plugins.com_core447_OBSPlugin.OBSActionBase import OBSActionBase from src.backend.DeckManagement.DeckController import DeckController from src.backend.PageManagement.Page import Page from src.backend.PluginManager.PluginBase import PluginBase diff --git a/main.py b/main.py index 05c9641..1587e72 100644 --- a/main.py +++ b/main.py @@ -46,7 +46,7 @@ class OBS(PluginBase): toggle_record_action_holder = ActionHolder( plugin_base=self, action_base=ToggleRecord, - action_id="dev_core447_OBSPlugin::ToggleRecord", + action_id="com_core447_OBSPlugin::ToggleRecord", action_name=self.lm.get("actions.toggle-record.name") ) self.add_action_holder(toggle_record_action_holder) @@ -54,7 +54,7 @@ class OBS(PluginBase): rec_play_pause_action_holder = ActionHolder( plugin_base=self, action_base=RecPlayPause, - action_id="dev_core447_OBSPlugin::RecPlayPause", + action_id="com_core447_OBSPlugin::RecPlayPause", action_name=self.lm.get("actions.rec-play-pause.name") ) self.add_action_holder(rec_play_pause_action_holder) @@ -62,7 +62,7 @@ class OBS(PluginBase): switch_scene_action_holder = ActionHolder( plugin_base=self, action_base=SwitchScene, - action_id="dev_core447_OBSPlugin::SwitchScene", + action_id="com_core447_OBSPlugin::SwitchScene", action_name=self.lm.get("actions.switch-scene.name") ) self.add_action_holder(switch_scene_action_holder) diff --git a/manifest.json b/manifest.json index 92f9f6b..daf93ab 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "version": "1.0.0", "thumbnail": "store/Thumbnail.png", - "id": "dev_core447_OBSPlugin", + "id": "com_core447_OBSPlugin", "name": "OBS" } \ No newline at end of file