Skip to content

Commit 8a067ee

Browse files
committed
Fix update key as per request for plugins.octopring.org/#231
1 parent aa8e91a commit 8a067ee

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

octoprint_filamentsensorng/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def sensor_callback(self, _):
155155

156156
def get_update_information(self):
157157
return dict(
158-
octoprint_filament=dict(
158+
octoprint_filamentsensorng=dict(
159159
displayName="Filament Sensor NG",
160160
displayVersion=self._plugin_version,
161161

@@ -171,7 +171,7 @@ def get_update_information(self):
171171
)
172172

173173
__plugin_name__ = "Filament Sensor NG"
174-
__plugin_version__ = "1.0.1"
174+
__plugin_version__ = "1.0.2"
175175

176176
def __plugin_load__():
177177
global __plugin_implementation__

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
plugin_name = "Octoprint-FilamentSensor-ng"
1515

1616
# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
17-
plugin_version = "1.0.1"
17+
plugin_version = "1.0.2"
1818

1919
# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
2020
# module

0 commit comments

Comments
 (0)