1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-23 18:17:20 +00:00

Remove "coreversion" metadata from plugins

There’s no support for it yet, so it’s confusing.
This commit is contained in:
Jermolene 2013-12-14 09:49:39 +00:00
parent 2126ce1d17
commit 8496337d30
4 changed files with 4 additions and 8 deletions

View File

@ -1,5 +1,5 @@
created: 20130826122000000 created: 20130826122000000
modified: 20131214094401992 modified: 20131214094840608
tags: mechanism tags: mechanism
title: PluginMechanism title: PluginMechanism
type: text/vnd.tiddlywiki type: text/vnd.tiddlywiki
@ -30,7 +30,6 @@ Plugins are stored as tiddlers with the following fields:
|version |Version string (must conform to SemanticVersioning convention) | |version |Version string (must conform to SemanticVersioning convention) |
|source |Source URL of plugin | |source |Source URL of plugin |
|type |Must be ''application/json'' | |type |Must be ''application/json'' |
|core-version |Optional minimum compatible core version |
|plugin-type |Can be ''plugin'' (default) or ''theme'' | |plugin-type |Can be ''plugin'' (default) or ''theme'' |
|text |JSON encoding of the list of tiddlers comprising the plugin | |text |JSON encoding of the list of tiddlers comprising the plugin |
|dependents |List of dependent plugins (currently only implemented for themes) | |dependents |List of dependent plugins (currently only implemented for themes) |

View File

@ -1,6 +1,5 @@
{ {
"title": "$:/plugins/tiddlywiki/codemirror", "title": "$:/plugins/tiddlywiki/codemirror",
"description": "Codemirror plugin", "description": "Codemirror plugin",
"author": "JeremyRuston", "author": "JeremyRuston"
"coreVersion": ">=5.0.0"
} }

View File

@ -1,6 +1,5 @@
{ {
"title": "$:/plugins/tiddlywiki/github-fork-ribbon", "title": "$:/plugins/tiddlywiki/github-fork-ribbon",
"description": "Codemirror plugin", "description": "Codemirror plugin",
"author": "Simon Whitaker, adapted for TiddlyWiki by JeremyRuston", "author": "Simon Whitaker, adapted for TiddlyWiki by JeremyRuston"
"coreVersion": ">=5.0.0"
} }

View File

@ -1,6 +1,5 @@
{ {
"title": "$:/plugins/tiddlywiki/markdown", "title": "$:/plugins/tiddlywiki/markdown",
"description": "Markdown plugin wrapping markdown-js", "description": "Markdown plugin wrapping markdown-js",
"author": "JeremyRuston", "author": "JeremyRuston"
"coreVersion": ">=5.0.0"
} }