diff options
author | 2016-03-24 21:06:49 +0100 | |
---|---|---|
committer | 2016-03-24 21:07:39 +0100 | |
commit | 315612190b68d80f68698e104b8d8fe9d382c1cd (patch) | |
tree | 9575bbc2f692c46a85b0feed4f902a8a0a237bb8 /plugins | |
parent | 5e23c377cf9ac6bf957935f58548f4761c548550 (diff) |
Added parsing of plugin json files for machine_manager (nw)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/dummy/plugin.json | 3 | ||||
-rw-r--r-- | plugins/hiscore/plugin.json | 3 | ||||
-rw-r--r-- | plugins/json/plugin.json | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/plugins/dummy/plugin.json b/plugins/dummy/plugin.json index 4d877fa4dfa..45c14b019e7 100644 --- a/plugins/dummy/plugin.json +++ b/plugins/dummy/plugin.json @@ -1,9 +1,10 @@ { "plugin": { "name": "dummy", + "description": "Dummy test plugin", "version": "0.0.1", "author": "Miodrag Milanovic", "type": "plugin", - "start": "false", + "start": "false" } }
\ No newline at end of file diff --git a/plugins/hiscore/plugin.json b/plugins/hiscore/plugin.json index 34871cab446..38d81289a63 100644 --- a/plugins/hiscore/plugin.json +++ b/plugins/hiscore/plugin.json @@ -1,9 +1,10 @@ { "plugin": { "name": "hiscore", + "description": "Hiscore support", "version": "1.0.0", "author": "borgar@borgar.net", "type": "plugin", - "start": "false", + "start": "false" } }
\ No newline at end of file diff --git a/plugins/json/plugin.json b/plugins/json/plugin.json index c5a0c77355d..c089e2cf178 100644 --- a/plugins/json/plugin.json +++ b/plugins/json/plugin.json @@ -1,8 +1,9 @@ { "plugin": { "name": "json", + "description": "json library", "version": "2.5.0", "author": "David Kolf", - "type": "library", + "type": "library" } }
\ No newline at end of file |