Browse Source

Replace websiteUrl with pluginUrl

pull/379/merge
Andrew Belt 5 years ago
parent
commit
156a10b838
8 changed files with 12 additions and 26 deletions
  1. +5
    -19
      README.md
  2. +1
    -1
      manifests/AudibleInstruments.json
  3. +1
    -1
      manifests/Befaco.json
  4. +1
    -1
      manifests/ESeries.json
  5. +1
    -1
      manifests/Fundamental.json
  6. +1
    -1
      manifests/VCV-Console.json
  7. +1
    -1
      manifests/VCV-PulseMatrix.json
  8. +1
    -1
      manifests/VCV-Router.json

+ 5
- 19
README.md View File

@@ -15,32 +15,18 @@ Tasks:
- Handle issues opened by plugin developers who want to add/update their plugin.
- Seek new plugins/updates when developers don't notify us.

#### Manifest example

Filename should be `YourSlug.json`.

```json
{
"name": "Fundamental",
"author": "VCV",
"license": "BSD-3-Clause",
"contactEmail": "contact@vcvrack.com",
"websiteUrl": "https://vcvrack.com/Fundamental.html",
"manualUrl": "https://vcvrack.com/Fundamental.html#manual",
"sourceUrl": "https://github.com/VCVRack/Fundamental",
"latestVersion": "0.6.0",
}
```
#### Manifest

#### Manifest properties
The filename of each manifest should be `YourSlug.json`.
See [Fundamental.json](manifests/Fundamental.json) for an example.

All properties are optional.
All properties are optional. URLs should not be redundant across different keys, meaning you must choose the most relevant key for a particular URL.

- **name**: Human-readable display name for your plugin. You can change this on a whim, unlike slugs.
- **author**: Your name, company, alias, or GitHub username.
- **license**: The license type of your plugin. Use "proprietary" if all rights are reserved. If your license is in the [SPDX license list](https://spdx.org/licenses/), use its abbreviation in the "Identifier" column.
- **contactEmail**: Your email address for support inquiries.
- **websiteUrl**: Homepage featuring the plugin itself.
- **pluginUrl**: Homepage featuring the plugin itself.
- **authorUrl**: Homepage of the author.
- **manualUrl**: The manual of your plugin. HTML, PDF, or GitHub readme/wiki are fine.
- **sourceUrl**: The source code homepage. E.g. GitHub repo.


+ 1
- 1
manifests/AudibleInstruments.json View File

@@ -2,7 +2,7 @@
"name": "Audible Instruments",
"author": "VCV",
"license": "BSD-3-Clause",
"homepageUrl": "https://vcvrack.com/AudibleInstruments.html",
"pluginUrl": "https://vcvrack.com/AudibleInstruments.html",
"authorUrl": "https://vcvrack.com/",
"manualUrl": "https://vcvrack.com/AudibleInstruments.html#manual",
"sourceUrl": "https://github.com/VCVRack/AudibleInstruments",


+ 1
- 1
manifests/Befaco.json View File

@@ -2,7 +2,7 @@
"name": "Befaco",
"author": "VCV",
"license": "BSD-3-Clause",
"homepageUrl": "https://vcvrack.com/Befaco.html",
"pluginUrl": "https://vcvrack.com/Befaco.html",
"authorUrl": "https://vcvrack.com/",
"manualUrl": "https://vcvrack.com/Befaco.html#manual",
"sourceUrl": "https://github.com/VCVRack/Befaco",


+ 1
- 1
manifests/ESeries.json View File

@@ -2,7 +2,7 @@
"name": "E-Series",
"author": "VCV",
"license": "BSD-3-Clause",
"homepageUrl": "https://vcvrack.com/ESeries.html",
"pluginUrl": "https://vcvrack.com/ESeries.html",
"authorUrl": "https://vcvrack.com/",
"manualUrl": "https://vcvrack.com/ESeries.html#manual",
"sourceUrl": "https://github.com/VCVRack/ESeries",


+ 1
- 1
manifests/Fundamental.json View File

@@ -2,7 +2,7 @@
"name": "Fundamental",
"author": "VCV",
"license": "BSD-3-Clause",
"homepageUrl": "https://vcvrack.com/Fundamental.html",
"pluginUrl": "https://vcvrack.com/Fundamental.html",
"authorUrl": "https://vcvrack.com/",
"manualUrl": "https://vcvrack.com/Fundamental.html#manual",
"sourceUrl": "https://github.com/VCVRack/Fundamental",


+ 1
- 1
manifests/VCV-Console.json View File

@@ -2,7 +2,7 @@
"name": "Console",
"author": "VCV",
"license": "proprietary",
"homepageUrl": "https://vcvrack.com/Console.html",
"pluginUrl": "https://vcvrack.com/Console.html",
"authorUrl": "https://vcvrack.com/",
"manualUrl": "https://vcvrack.com/Console.html#manual",
"latestVersion": "0.5.0",


+ 1
- 1
manifests/VCV-PulseMatrix.json View File

@@ -2,7 +2,7 @@
"name": "Pulse Matrix",
"author": "VCV",
"license": "proprietary",
"homepageUrl": "https://vcvrack.com/PulseMatrix.html",
"pluginUrl": "https://vcvrack.com/PulseMatrix.html",
"authorUrl": "https://vcvrack.com/",
"manualUrl": "https://vcvrack.com/PulseMatrix.html#manual",
"latestVersion": "0.5.1",


+ 1
- 1
manifests/VCV-Router.json View File

@@ -2,7 +2,7 @@
"name": "Router",
"author": "VCV",
"license": "proprietary",
"homepageUrl": "https://vcvrack.com/Router.html",
"pluginUrl": "https://vcvrack.com/Router.html",
"authorUrl": "https://vcvrack.com/",
"manualUrl": "https://vcvrack.com/Router.html#manual",
"latestVersion": "0.5.0",


Loading…
Cancel
Save