-bump version to 0.3.3
-change urls -add prerelease branches system
This commit is contained in:
parent
778de6517d
commit
1d2fbe94eb
|
@ -1,12 +1,12 @@
|
|||
## Fork information:
|
||||
- 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 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:
|
||||
- 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:
|
||||
`https://github.com/AliceGrey/OctoprintKlipperPlugin/archive/master.zip`
|
||||
`https://github.com/thelastWallE/OctoprintKlipperPlugin/archive/master.zip`
|
||||
|
||||
|
||||
# OctoKlipper Plugin
|
||||
|
@ -31,7 +31,7 @@ Search for "Klipper" in OctoPrints Plugin Manager.
|
|||
|
||||
or install manually using this URL / zip:
|
||||
|
||||
https://github.com/AliceGrey/OctoprintKlipperPlugin/archive/master.zip
|
||||
https://github.com/thelastWallE/OctoprintKlipperPlugin/archive/master.zip
|
||||
|
||||
## Update
|
||||
|
||||
|
|
|
@ -333,9 +333,21 @@ class KlipperPlugin(
|
|||
displayVersion=self._plugin_version,
|
||||
type="github_release",
|
||||
current=self._plugin_version,
|
||||
user="AliceGrey",
|
||||
user="thelastWallE",
|
||||
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"],
|
||||
)
|
||||
]
|
||||
)
|
||||
)
|
||||
|
||||
|
|
8
setup.py
8
setup.py
|
@ -19,15 +19,15 @@ plugin_package = "octoprint_klipper"
|
|||
|
||||
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_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"
|
||||
|
||||
|
|
Loading…
Reference in New Issue