Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

how do i format the .json for a repo with multiple plugins? #4

Closed
RustoMCSpit opened this issue Apr 27, 2024 · 2 comments
Closed

how do i format the .json for a repo with multiple plugins? #4

RustoMCSpit opened this issue Apr 27, 2024 · 2 comments
Assignees
Labels
question Further information is requested

Comments

@RustoMCSpit
Copy link

zamaudio/zam-plugins#103

zamaudio wants to integrate but ive no idea how i add multiple plugins to

{
"plugins": [
{
"author": "Your Name",
"homepage": "https://www.yoursite.com",
"name": "Your Plugin Name",
"description": "Test Class",
"tags": [
"Fx",
"Delay"
],
"version": "1.1.0",
"id": "your-plugin",
"date": "2020-12-09T17:25:12.081Z",
"files": {
"audio": {
"name": "your-plugin.wav",
"size": 352844
},
"image": {
"name": "your-plugin.png",
"size": 35091
},
"linux": {
"name": "your-plugin-linux.zip",
"size": 13089625
},
"mac": {
"name": "your-plugin-mac.zip",
"size": 13089625
},
"win": {
"name": "your-plugin-win.zip",
"size": 13089625
}
}
}
]
}

@kmturley
Copy link
Member

plugins is an array in json

plugins: []

This means you can add multiple plugins like this:

plugins: [
  { "author": "a" },
  { "author": "b" },
  { "author": "c" }
]

Here is an example of a single github repo containing multiple plugins:
https://github.com/studiorack/iem-plugin-suite/releases/tag/v1.13.0

Look at the plugins.json to see how it was implemented!

@kmturley kmturley self-assigned this Apr 28, 2024
@kmturley kmturley added the question Further information is requested label Apr 28, 2024
@RustoMCSpit
Copy link
Author

RustoMCSpit commented Apr 28, 2024

could you write this one for the zamaudio folk cause im ngl it's a bit confusing for me zamaudio/zam-plugins#103

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants