Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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