Skip to content

Commit 11172a0

Browse files
committed
Update plugin manifest
1 parent c498284 commit 11172a0

File tree

2 files changed

+9
-13
lines changed

2 files changed

+9
-13
lines changed

main.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,5 @@ def __init__(self):
3030
# Adds the action to the plugin
3131
self.add_action_holder(self.simple_action_holder)
3232

33-
# Register plugin
34-
self.register(
35-
plugin_name="Template", # Should be a unique name for your plugin
36-
# The GitHub repository for your plugin
37-
github_repo="https://github.com/StreamController/PluginTemplate",
38-
plugin_version="1.0.0", # The plugin version, will be used to check updates
39-
app_version="1.1.1-alpha" # The support application version
40-
)
33+
# Register plugin using details from manifest.json
34+
self.register()

manifest.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
2-
"version": "",
3-
"thumbnail": "",
4-
"id": "",
5-
"name": ""
6-
}
2+
"version": "0.0.1",
3+
"id": "",
4+
"github": "https://github.com/StreamController/PluginTemplate",
5+
"name": "PluginTemplate",
6+
"minimum-app-version": "1.5.0-beta.10",
7+
"app-version": "1.5.0-beta.10"
8+
}

0 commit comments

Comments
 (0)