From df585922ef7393ab059f7565c5c44565a3fa1115 Mon Sep 17 00:00:00 2001 From: Quinn Damerell Date: Sat, 17 Aug 2024 13:45:53 -0700 Subject: [PATCH] Quick fix for OctoPrint --- octoeverywhere/{notifications => Notifications}/__init__.py | 0 .../{notifications => Notifications}/bedcooldownwatcher.py | 0 octoeverywhere/notificationshandler.py | 2 +- setup.py | 4 ++-- 4 files changed, 3 insertions(+), 3 deletions(-) rename octoeverywhere/{notifications => Notifications}/__init__.py (100%) rename octoeverywhere/{notifications => Notifications}/bedcooldownwatcher.py (100%) diff --git a/octoeverywhere/notifications/__init__.py b/octoeverywhere/Notifications/__init__.py similarity index 100% rename from octoeverywhere/notifications/__init__.py rename to octoeverywhere/Notifications/__init__.py diff --git a/octoeverywhere/notifications/bedcooldownwatcher.py b/octoeverywhere/Notifications/bedcooldownwatcher.py similarity index 100% rename from octoeverywhere/notifications/bedcooldownwatcher.py rename to octoeverywhere/Notifications/bedcooldownwatcher.py diff --git a/octoeverywhere/notificationshandler.py b/octoeverywhere/notificationshandler.py index 6d6da19a..da95772b 100644 --- a/octoeverywhere/notificationshandler.py +++ b/octoeverywhere/notificationshandler.py @@ -16,7 +16,7 @@ from .printinfo import PrintInfoManager, PrintInfo from .snapshotresizeparams import SnapshotResizeParams from .debugprofiler import DebugProfiler, DebugProfilerFeatures -from .notifications.bedcooldownwatcher import BedCooldownWatcher +from .Notifications.bedcooldownwatcher import BedCooldownWatcher try: # On some systems this package will install but the import will fail due to a missing system .so. diff --git a/setup.py b/setup.py index a37093f3..7b49c193 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ # The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module # Note that this single version string is used by all of the plugins in OctoEverywhere! -plugin_version = "3.5.4" +plugin_version = "3.5.6" # The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin # module @@ -103,7 +103,7 @@ # Any additional python packages you need to install with your plugin that are not contained in .* # For OctoEverywhere, we need to include or common packages shared between hosts, so OctoPrint copies them into the package folder as well. -plugin_additional_packages = [ "octoeverywhere", "octoeverywhere.Proto", "octoeverywhere.WebStream", "octoeverywhere.Webcam" ] +plugin_additional_packages = [ "octoeverywhere", "octoeverywhere.Proto", "octoeverywhere.WebStream", "octoeverywhere.Webcam", "octoeverywhere.Notifications" ] # Any python packages within .* you do NOT want to install with your plugin plugin_ignored_packages = []