Skip to content

Commit 3ba4c5a

Browse files
authored
Merge pull request #3 from techman83/fix_views
Fix Views + Versioning
2 parents 3577ebb + 7e5b525 commit 3ba4c5a

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.github/workflows/release.yml

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
with:
3131
repo_token: "${{ secrets.GITHUB_TOKEN }}"
3232
prerelease: false
33+
draft: false
3334
files: |
3435
LICENSE.txt
3536
dist/*.tar.gz

filament_scale_enhanced/__init__.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ def check_weight(self):
6060
self._plugin_manager.send_plugin_message(self._identifier, v)
6161
self.hx.power_down()
6262

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

7374
# version check: github repository
7475
type="github_release",
75-
user="dieki-n",
76-
repo="OctoPrint-Filament-scale",
76+
user="techman83",
77+
repo="Filament-Scale-Enhanced",
7778
current=self._plugin_version,
7879

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "0.2.1"
1+
VERSION = "0.2.2"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import sys
1616
sys.exit(-1)
1717

18-
plugin_identifier = "filament_scale_enhanced"
18+
plugin_identifier = "filament_scale"
1919
plugin_package = "filament_scale_enhanced"
2020
plugin_name = "Filament Scale Enhanced"
2121
plugin_version = __version__

0 commit comments

Comments
 (0)