Beschreibung angepasst

This commit is contained in:
David Zingg 2019-11-19 21:35:43 +01:00
parent 6daeefa71c
commit 32550e7374
3 changed files with 29 additions and 7 deletions

View File

@ -1,14 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ChangeListManager">
<list default="true" id="7e2e0eec-b22e-4d48-8f24-196d1ed9b51a" name="Default Changelist" comment="" />
<list default="true" id="7e2e0eec-b22e-4d48-8f24-196d1ed9b51a" name="Default Changelist" comment="">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/octoprint_mystromswitch/__init__.py" beforeDir="false" afterPath="$PROJECT_DIR$/octoprint_mystromswitch/__init__.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/setup.py" beforeDir="false" afterPath="$PROJECT_DIR$/setup.py" afterDir="false" />
</list>
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
<option name="LAST_RESOLUTION" value="IGNORE" />
</component>
<component name="Git.Settings">
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
</component>
<component name="ProjectId" id="1TqgYXT1S9U5eM0eUvs1YarA1ll" />
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
<component name="PropertiesComponent">
<property name="SHARE_PROJECT_CONFIGURATION_FILES" value="true" />
</component>
<component name="RunDashboard">
<option name="ruleStates">
<list>
@ -34,4 +45,15 @@
</task>
<servers />
</component>
<component name="Vcs.Log.Tabs.Properties">
<option name="TAB_STATES">
<map>
<entry key="MAIN">
<value>
<State />
</value>
</entry>
</map>
</option>
</component>
</project>

View File

@ -413,22 +413,22 @@ class shutdownprinterPlugin(octoprint.plugin.SettingsPlugin,
def get_update_information(self):
return dict(
shutdownprinter=dict(
displayName="Shutdown Printer",
displayName="OctoPrint-MyStromSwitch",
displayVersion=self._plugin_version,
# version check: github repository
type="github_release",
user="devildant",
repo="OctoPrint-ShutdownPrinter",
user="da4id",
repo="OctoPrint-MyStromSwitch",
current=self._plugin_version,
# update method: pip w/ dependency links
pip="https://github.com/devildant/OctoPrint-ShutdownPrinter/archive/{target_version}.zip"
pip="https://github.com/da4id/OctoPrint-MyStromSwitch/archive/master.zip"
)
)
__plugin_name__ = "Shutdown Printer"
__plugin_name__ = "OctoPrint-MyStromSwitch"
def __plugin_load__():

View File

@ -27,7 +27,7 @@ plugin_author = "David Zingg"
plugin_author_email = ""
# The plugin's homepage URL. Can be overwritten within OctoPrint's internal data via __plugin_url__ in the plugin module
plugin_url = "https://github.com/devildant/OctoPrint-ShutdownPrinter"
plugin_url = "https://github.com/da4id/OctoPrint-MyStromSwitch"
# The plugin's license. Can be overwritten within OctoPrint's internal data via __plugin_license__ in the plugin module
plugin_license = "AGPLv3"