-bump version to 0.3.3

-change urls
-add prerelease branches system
This commit is contained in:
thelastWallE 2021-03-14 00:24:49 +01:00
parent 778de6517d
commit 1d2fbe94eb
3 changed files with 21 additions and 9 deletions

View File

@ -1,12 +1,12 @@
## Fork information: ## Fork information:
- This is forked from [the original](https://github.com/mmone/OctoprintKlipperPlugin) version 0.2.5 - This is forked from [the original](https://github.com/mmone/OctoprintKlipperPlugin) version 0.2.5
- The fork now supports Python3 (hopefully without any new bugs) - The fork now supports Python3 (hopefully without any new bugs)
- The current version is 0.3.2 and includes the pull requests left on the old plugin page that fixes several bugs and Themify support. - The current version is 0.3.3 and includes the pull requests left on the old plugin page that fixes several bugs and Themify support.
## Fork Installation Information: ## Fork Installation Information:
- Uninstall any other versions of the plugin using Plugin Manager or other means, as necessary. - Uninstall any other versions of the plugin using Plugin Manager or other means, as necessary.
- Install this version by using Plugin Manager's "From Url" option and entering this URL: - Install this version by using Plugin Manager's "From Url" option and entering this URL:
`https://github.com/AliceGrey/OctoprintKlipperPlugin/archive/master.zip` `https://github.com/thelastWallE/OctoprintKlipperPlugin/archive/master.zip`
# OctoKlipper Plugin # OctoKlipper Plugin
@ -31,7 +31,7 @@ Search for "Klipper" in OctoPrints Plugin Manager.
or install manually using this URL / zip: or install manually using this URL / zip:
https://github.com/AliceGrey/OctoprintKlipperPlugin/archive/master.zip https://github.com/thelastWallE/OctoprintKlipperPlugin/archive/master.zip
## Update ## Update

View File

@ -333,9 +333,21 @@ class KlipperPlugin(
displayVersion=self._plugin_version, displayVersion=self._plugin_version,
type="github_release", type="github_release",
current=self._plugin_version, current=self._plugin_version,
user="AliceGrey", user="thelastWallE",
repo="OctoprintKlipperPlugin", repo="OctoprintKlipperPlugin",
pip="https://github.com/AliceGrey/OctoprintKlipperPlugin/archive/{target_version}.zip" pip="https://github.com/thelastWallE/OctoprintKlipperPlugin/archive/{target_version}.zip",
stable_branch=dict(
name="Stable",
branch="master",
comittish=["master"]
),
prerelease_branches=[
dict(
name="Release Candidate",
branch="rc",
comittish=["rc", "master"],
)
]
) )
) )

View File

@ -19,15 +19,15 @@ plugin_package = "octoprint_klipper"
plugin_name = "OctoKlipper" plugin_name = "OctoKlipper"
plugin_version = "0.3.2" plugin_version = "0.3.3"
plugin_description = """A plugin for OctoPrint to configure,control and monitor the Klipper 3D printer software.""" plugin_description = """A plugin for OctoPrint to configure,control and monitor the Klipper 3D printer software."""
plugin_author = "Alice Weigt" plugin_author = "thelastWallE"
plugin_author_email = "alice@grey.systems" plugin_author_email = "thelastwalle.github@gmail.com"
plugin_url = "" plugin_url = "https://github.com/thelastWallE/OctoprintKlipperPlugin"
plugin_license = "AGPLv3" plugin_license = "AGPLv3"