Skip to content

Commit

Permalink
Quick fix for OctoPrint
Browse files Browse the repository at this point in the history
  • Loading branch information
QuinnDamerell committed Aug 17, 2024
1 parent 2186b5a commit df58592
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion octoeverywhere/notificationshandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -103,7 +103,7 @@

# Any additional python packages you need to install with your plugin that are not contained in <plugin_package>.*
# 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 <plugin_package>.* you do NOT want to install with your plugin
plugin_ignored_packages = []
Expand Down

0 comments on commit df58592

Please sign in to comment.