From 1231f7f75a52225eac75f355577196903e42f11f Mon Sep 17 00:00:00 2001 From: anpigon Date: Wed, 20 Dec 2023 22:41:29 +0900 Subject: [PATCH] feat(manifest-beta.json): add manifest file for beta version of the Steemit plugin The manifest-beta.json file is added to the project. This file contains the metadata for the beta version of the Steemit plugin. It includes the plugin ID, name, version, minimum app version required, description, author information, desktop-only flag, and funding URL. This manifest file will be used to configure and publish the beta version of the plugin. --- manifest-beta.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 manifest-beta.json diff --git a/manifest-beta.json b/manifest-beta.json new file mode 100755 index 0000000..a3673b3 --- /dev/null +++ b/manifest-beta.json @@ -0,0 +1,13 @@ +{ + "id": "obsidian-steemit", + "name": "Steemit", + "version": "0.3.0-beta-1", + "minAppVersion": "1.4.5", + "description": "A plugin for publishing Obsidian documents to Steemit.", + "author": "anpigon", + "authorUrl": "https://steemit.com/@anpigon", + "isDesktopOnly": true, + "fundingUrl": { + "Buy Me a Coffee": "https://www.buymeacoffee.com/anpigon" + } +}