Add example-plugin-2 to directory
This commit is contained in:
@@ -48,6 +48,12 @@ for (const file of changedFiles) {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Skip index.json - it's the manifest file, not a plugin definition
|
||||||
|
if (file === 'plugins/index.json') {
|
||||||
|
console.log(`✅ Index file updated`);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
const pluginId = file.replace('plugins/', '').replace('.json', '');
|
const pluginId = file.replace('plugins/', '').replace('.json', '');
|
||||||
|
|
||||||
// Check if file was added or removed
|
// Check if file was added or removed
|
||||||
|
|||||||
12
plugins/example-plugin-2.json
Normal file
12
plugins/example-plugin-2.json
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"id": "example-plugin-2",
|
||||||
|
"name": "Example Plugin 2",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "A second example plugin demonstrating additional capabilities",
|
||||||
|
"author": "litruv",
|
||||||
|
"repository": "http://synbox.ruv.wtf:8418/litruv/Plugin-Example2.git",
|
||||||
|
"downloadUrl": "http://synbox.ruv.wtf:8418/litruv/Plugin-Example2/archive/main.zip",
|
||||||
|
"homepage": "http://synbox.ruv.wtf:8418/litruv/Plugin-Example2",
|
||||||
|
"tags": ["example", "demo", "filtering", "validation"],
|
||||||
|
"addedDate": "2026-04-17T00:00:00.000Z"
|
||||||
|
}
|
||||||
@@ -2,6 +2,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"updatedAt": "2026-04-17T00:00:00.000Z",
|
"updatedAt": "2026-04-17T00:00:00.000Z",
|
||||||
"plugins": [
|
"plugins": [
|
||||||
"example-plugin"
|
"example-plugin",
|
||||||
|
"example-plugin-2"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user