diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2023-05-22 13:11:55 -0400 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2023-05-22 13:11:55 -0400 |
commit | 828b9e8f96d0e14f1e39f09cce1def3fdf698e46 (patch) | |
tree | dec90973fe72dcc5e9f3fd9311dc15348bd15f43 /SPEC.md | |
parent | 9cd48d16ffb1682327426428f8f8f5f98f2958db (diff) | |
download | lite-xl-plugin-manager-828b9e8f96d0e14f1e39f09cce1def3fdf698e46.tar.gz lite-xl-plugin-manager-828b9e8f96d0e14f1e39f09cce1def3fdf698e46.zip |
* Fixed a few typos.
* Fixed issue with `run` not handling cases where plugins were either orphaned or core plugins, which would cause the bottle to be incorrectly constructed.
* Fixed issue where you could add non-numeric lite versions.
* Fixed issue where tables generated with lpm didn't annotate non-remote url plugins with *.
Diffstat (limited to 'SPEC.md')
-rw-r--r-- | SPEC.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -47,14 +47,14 @@ Fields that are required are bolded. * **`mod_version`**: The mod_version this addon is compatible with. A string that can contain `[0-9\.]`. If `type` is `library`, this field is optional. * `type`: An optional string that specifies the addon type. Valid values are `"plugin"` - `"library"`, or `color`. Defaults to `"plugin"`. + `"library"`, or `"color"`. Defaults to `"plugin"`. * `name`: The optional name of the addon. * `description`: An optional english-language description of the addon. * `provides`: An optional array of strings that are a shorthand of functionality this addon provides. Can be used as a dependency. * `replaces`: An optional array of ids that this plugin explicitly replaces. Will always prefer this plugin in place of those plugins, so long as version requirements are met. -* `remote`: Optional. Specifies an https git link wheree this addon is located. If present, +* `remote`: Optional. Specifies a public https git link where this addon is located. If present, denotes a **stub**. * `dependencies`: Optionally a hash of dependencies required, or optional for this addon. |