From e6c6575efe075daefad479b70f52e1c9bfec820e Mon Sep 17 00:00:00 2001 From: Jack Ye <1160210343@qq.com> Date: Sun, 8 Jun 2025 22:40:30 +0800 Subject: [PATCH 1/2] Update README.md Add example for properties & Add helper string --- README.md | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index f7b63e537..f4daf50b0 100644 --- a/README.md +++ b/README.md @@ -23,15 +23,15 @@ Looking for a list of currently available plugins in Flow? Visit [here](https:// 4. It should look like this: ```json { - "ID": "Unique GUID from your plugin.json", - "Name": "Plugin name", - "Description": "Short description", - "Author": "Author", - "Version": "Version from your plugin.json", - "Language": "Programming language", - "Website": "Plugin website", - "UrlDownload": "URL to download", - "UrlSourceCode": "URL to source code", + "ID": "Unique GUID from your plugin.json, e.g. 2f4e384e-76ce-45c3-aea2-b16f5e5c328f", + "Name": "Plugin name, e.g. Hello World Python", + "Description": "Short description, e.g. Python Hello World example plugin", + "Author": "Author, e.g. Flow Launcher", + "Version": "Version from your plugin.json, e.g. 1.0.0", + "Language": "Programming language, e.g. python", + "Website": "Plugin website, e.g. https://github.com/Flow-Launcher/Flow.Launcher.Plugin.HelloWorldPython", + "UrlDownload": "URL to download, e.g. https://github.com/Flow-Launcher/Flow.Launcher.Plugin.HelloWorldPython/releases/download/v1.0.0/Flow.Launcher.Plugin.HelloWorldPython.zip", + "UrlSourceCode": "URL to source code, e.g. https://github.com/Flow-Launcher/Flow.Launcher.Plugin.HelloWorldPython/tree/main", "IcoPath": "Plugin icon image's CDN URL, e.g. https://cdn.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher/Plugins/Flow.Launcher.Plugin.Explorer/Images/explorer.png" } ``` @@ -49,6 +49,8 @@ While the plugin has not yet appeared in the store, you and your users can manua Every three hours the *CI* in this repository will check for new updates from plugins and automatically update them to the latest version. +So you do not need to manually submit a pull request after you make a new release. + ## Plugin Store policy Plugins that facilitate or contain any of the following will not be allowed: From 300384d7fa11de3318da40f40d67195d6e546d40 Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Sun, 8 Jun 2025 22:44:48 +0800 Subject: [PATCH 2/2] Update IcoPath example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f4daf50b0..260452a21 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Looking for a list of currently available plugins in Flow? Visit [here](https:// "Website": "Plugin website, e.g. https://github.com/Flow-Launcher/Flow.Launcher.Plugin.HelloWorldPython", "UrlDownload": "URL to download, e.g. https://github.com/Flow-Launcher/Flow.Launcher.Plugin.HelloWorldPython/releases/download/v1.0.0/Flow.Launcher.Plugin.HelloWorldPython.zip", "UrlSourceCode": "URL to source code, e.g. https://github.com/Flow-Launcher/Flow.Launcher.Plugin.HelloWorldPython/tree/main", - "IcoPath": "Plugin icon image's CDN URL, e.g. https://cdn.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher/Plugins/Flow.Launcher.Plugin.Explorer/Images/explorer.png" + "IcoPath": "Plugin icon image's CDN URL, e.g. https://cdn.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher.Plugin.HelloWorldPython@main/Images/app.png" } ``` 5. For `IcoPath`, use a CDN provider for global accessibility. [jsdelivr.com](https://www.jsdelivr.com/) for example as shown above, works well with GitHub repositories.