From cd8b918a555900f52cedff07905f3bfc68323155 Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Wed, 4 Jan 2023 16:31:11 -0300 Subject: [PATCH] Add manifest.json, versions.json of Obsidian plugin to project root - Obsidian provides limited support for plugins in larger repositories. Currently, it does not have a way to specify the directory of a plugin So it expects the plugins `manifest.json' and `versions.json' to be at project root - While this unnecessarily litters the codebase. It is the (current) required tradeoff for keeping the core plugins in a mono repo --- manifest.json | 10 ++++++++++ versions.json | 3 +++ 2 files changed, 13 insertions(+) create mode 100644 manifest.json create mode 100644 versions.json diff --git a/manifest.json b/manifest.json new file mode 100644 index 00000000..aa38a357 --- /dev/null +++ b/manifest.json @@ -0,0 +1,10 @@ +{ + "id": "khoj", + "name": "Khoj", + "version": "0.2.1", + "minAppVersion": "0.15.0", + "description": "Natural, Incremental Search for your Second Brain 🦅", + "author": "Debanjum Singh Solanky", + "authorUrl": "https://github.com/debanjum", + "isDesktopOnly": false +} diff --git a/versions.json b/versions.json new file mode 100644 index 00000000..12c5334f --- /dev/null +++ b/versions.json @@ -0,0 +1,3 @@ +{ + "0.2.1": "0.15.0" +}