Skip to content

Commit

Permalink
Merge pull request #4 from techman83/development
Browse files Browse the repository at this point in the history
Release 0.2.2
  • Loading branch information
techman83 authored Apr 26, 2021
2 parents 3577ebb + 3ba4c5a commit dfb1665
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
draft: false
files: |
LICENSE.txt
dist/*.tar.gz
7 changes: 4 additions & 3 deletions filament_scale_enhanced/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ def check_weight(self):
self._plugin_manager.send_plugin_message(self._identifier, v)
self.hx.power_down()

# pylint: disable=line-too-long
def get_update_information(self):
# Define the configuration for your plugin to use with the
# Software Update Plugin here.
Expand All @@ -72,12 +73,12 @@ def get_update_information(self):

# version check: github repository
type="github_release",
user="dieki-n",
repo="OctoPrint-Filament-scale",
user="techman83",
repo="Filament-Scale-Enhanced",
current=self._plugin_version,

# update method: pip
pip="https://github.com/dieki-n/OctoPrint-Filament-scale/archive/{target_version}.zip"
pip="https://github.com/techman83/Filament-Scale-Enhanced/releases/download/v{target_version}/Filament_Scale_Enhanced-{target_version}.tar.gz" # noqa: E501
)
)

Expand Down
2 changes: 1 addition & 1 deletion filament_scale_enhanced/fse_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.2.1"
VERSION = "0.2.2"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import sys
sys.exit(-1)

plugin_identifier = "filament_scale_enhanced"
plugin_identifier = "filament_scale"
plugin_package = "filament_scale_enhanced"
plugin_name = "Filament Scale Enhanced"
plugin_version = __version__
Expand Down

0 comments on commit dfb1665

Please sign in to comment.