From 1df51dc1fdb59c9069d7c602a46d8a60936a079b Mon Sep 17 00:00:00 2001 From: oditha4523 Date: Mon, 21 Apr 2025 17:52:34 +0530 Subject: [PATCH 1/5] initial --- plugins.json | 4 ++++ plugins/example-plugin/plugin.js | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 plugins/example-plugin/plugin.js diff --git a/plugins.json b/plugins.json index 46dba6b..2571871 100644 --- a/plugins.json +++ b/plugins.json @@ -2,5 +2,9 @@ { "name": "Sample Plugin", "entry": "./plugins/sample-plugin/plugin.js" + }, + { + "name": "example Plugin", + "entry": "./plugins/example-plugin/plugin.js" } ] diff --git a/plugins/example-plugin/plugin.js b/plugins/example-plugin/plugin.js new file mode 100644 index 0000000..dffb8d3 --- /dev/null +++ b/plugins/example-plugin/plugin.js @@ -0,0 +1,4 @@ +module.exports.run = () => { + return "Hello from example Plugin!"; + }; + \ No newline at end of file From 4114f120795138de1146e3fdb08955123e9f8a31 Mon Sep 17 00:00:00 2001 From: oditha4523 Date: Sun, 27 Apr 2025 21:45:02 +0530 Subject: [PATCH 2/5] initial commit --- plugins/example-plugin/plugin.js | 3 ++- plugins/sample-plugin/plugin.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/example-plugin/plugin.js b/plugins/example-plugin/plugin.js index dffb8d3..9a1ccd1 100644 --- a/plugins/example-plugin/plugin.js +++ b/plugins/example-plugin/plugin.js @@ -1,4 +1,5 @@ module.exports.run = () => { - return "Hello from example Plugin!"; + return "Hello from new example Plugin!"; + }; \ No newline at end of file diff --git a/plugins/sample-plugin/plugin.js b/plugins/sample-plugin/plugin.js index a10d779..6fab797 100644 --- a/plugins/sample-plugin/plugin.js +++ b/plugins/sample-plugin/plugin.js @@ -1,3 +1,3 @@ module.exports.run = () => { - return "Hello from Sample Plugin!"; + return "Hello from new Sample Plugin!"; }; From 22f71a9488561590ad733fadd5f46145010311e1 Mon Sep 17 00:00:00 2001 From: oditha4523 Date: Sun, 27 Apr 2025 21:48:10 +0530 Subject: [PATCH 3/5] adding changes to plugins file --- plugins.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins.json b/plugins.json index 2571871..7404996 100644 --- a/plugins.json +++ b/plugins.json @@ -1,6 +1,6 @@ [ { - "name": "Sample Plugin", + "name": "new Sample Plugin", "entry": "./plugins/sample-plugin/plugin.js" }, { From 832cbdd4873683a2a20f76a29a8ff4c121e89a80 Mon Sep 17 00:00:00 2001 From: oditha4523 Date: Sun, 27 Apr 2025 21:53:24 +0530 Subject: [PATCH 4/5] Modified Sample Plugin in main branch --- plugins.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins.json b/plugins.json index 2571871..a85afa3 100644 --- a/plugins.json +++ b/plugins.json @@ -1,7 +1,8 @@ [ { - "name": "Sample Plugin", - "entry": "./plugins/sample-plugin/plugin.js" + "name": "Modified Sample Plugin", + "entry": "./plugins/sample-plugin/plugin.js", + "description": "This is a sample plugin for demonstration" }, { "name": "example Plugin", From 5aa031a9ac6848cfe694344082d4a608725a0c98 Mon Sep 17 00:00:00 2001 From: oditha4523 Date: Sun, 27 Apr 2025 21:53:47 +0530 Subject: [PATCH 5/5] Modified Sample Plugin in sample branch --- plugins.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins.json b/plugins.json index 7404996..b61e6ae 100644 --- a/plugins.json +++ b/plugins.json @@ -1,7 +1,8 @@ [ { - "name": "new Sample Plugin", - "entry": "./plugins/sample-plugin/plugin.js" + "name": "Sample Plugin v2", + "entry": "./plugins/sample-plugin/plugin.js", + "version": "2.0.0" }, { "name": "example Plugin",