mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 01:17:42 +01:00
Merge branch 'master' into development
This commit is contained in:
commit
d254cdfb7d
2 changed files with 3 additions and 4 deletions
|
@ -1,2 +1,3 @@
|
||||||
__version__ = "4.0.4.a3"
|
__version__ = "4.0.4.a3"
|
||||||
__codename__ = "Spring Break"
|
__codename__ = "Spring Break"
|
||||||
|
|
||||||
|
|
|
@ -201,6 +201,7 @@ def plugins_list():
|
||||||
if name.startswith('cbpi') and len(name) > 4
|
if name.startswith('cbpi') and len(name) > 4
|
||||||
}
|
}
|
||||||
for key, module in discovered_plugins.items():
|
for key, module in discovered_plugins.items():
|
||||||
|
|
||||||
try:
|
try:
|
||||||
meta = metadata(key)
|
meta = metadata(key)
|
||||||
result.append(dict(Name=meta["Name"], Version=meta["Version"], Author=meta["Author"], Homepage=meta["Home-page"], Summary=meta["Summary"]))
|
result.append(dict(Name=meta["Name"], Version=meta["Version"], Author=meta["Author"], Homepage=meta["Home-page"], Summary=meta["Summary"]))
|
||||||
|
@ -213,9 +214,6 @@ def plugins_list():
|
||||||
|
|
||||||
def plugin_create():
|
def plugin_create():
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
print("Plugin Creation")
|
print("Plugin Creation")
|
||||||
print("")
|
print("")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue