Skip to content

Commit

Permalink
Testing OctoPrint's native update manager
Browse files Browse the repository at this point in the history
  • Loading branch information
donovan6000 committed Aug 2, 2015
1 parent e7dc5fa commit 1b78765
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions octoprint_m3dfio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,19 +155,19 @@ def get_assets(self) :
)

# Get update information
def getUpdateInformation(self) :
def getUpdateInformation(self, *args, **kwargs) :

# Return update information
return dict(
updateplugindemo = dict(

displayName = "M3D Fio",
displayName = self._plugin_name,
displayVersion = self._plugin_version,
type = "github_release",
current = self._plugin_version,
user = "donovan6000",
repo = "M3D-Fio",
pip = "https://github.com/donovan6000/M3D-Fio/archive/{target_version}.zip"
pip = "https://github.com/donovan6000/M3D-Fio/archive/{target}.zip"
)
)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
plugin_identifier = "m3dfio"
plugin_package = "octoprint_%s" % plugin_identifier
plugin_name = "OctoPrint-M3DFio"
plugin_version = "0.7"
plugin_version = "0.8"
plugin_description = "Allows communication with the Micro 3D printer and processes all uploaded/sliced G-code through a pre-processor"
plugin_author = "donovan6000"
plugin_author_email = "[email protected]"
Expand Down

0 comments on commit 1b78765

Please sign in to comment.