From e1c006e49d85b4311d90406512ce9489c20ac80e Mon Sep 17 00:00:00 2001 From: Ira Hopkinson Date: Fri, 19 Jul 2024 10:53:57 +1200 Subject: [PATCH] Squashed 'extensions/src/quick-verse/' changes from 1c7c788d3..01213e7e2 01213e7e2 update `@sillsdev/scripture` (#74) 652c77714 feat: added some fields to `manifest.json` and moved URL-related fields (#73) 8076b1624 fix: changed elevatedPrivileges to an array ccbf06c8b refactor: adjusted structure for fields in manifest.json 4df693672 feat: added 'moreInfoUrl' and 'supportUrl' to manifest git-subtree-dir: extensions/src/quick-verse git-subtree-split: 01213e7e2372ab91e5ac17299cc531ec586048ae --- README.md | 2 ++ assets/displayData.json | 2 ++ manifest.json | 2 ++ package-lock.json | 14 +++++++------- package.json | 2 +- 5 files changed, 14 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index c4b7318ada..2673f8fdaa 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,8 @@ To make the process of customizing from the template as smooth as possible, we r - In `assets/displayData.json`: - If your extension has an icon, update the `icon` value to point towards the icon file (for example: `assets/icon.svg`) + - Update the `moreInfoUrl` field to web URL to a page where users can find out more information about you / your organization / your extension. + - Update the `supportUrl` field to web URL to a support page where users can request help and report issues with your extension. - Update the `en` entry of `localizedDisplayInfo` so that: - `displayName` contains a human-readable name for your extension (i.e. `Your Extension Name`). diff --git a/assets/displayData.json b/assets/displayData.json index 8fa745b823..d2579e387e 100644 --- a/assets/displayData.json +++ b/assets/displayData.json @@ -1,5 +1,7 @@ { "icon": "", + "moreInfoUrl": "", + "supportUrl": "", "localizedDisplayInfo": { "en": { "displayName": "Paranext Extension Template", diff --git a/manifest.json b/manifest.json index 2c9c40bbd3..5db7442924 100644 --- a/manifest.json +++ b/manifest.json @@ -5,6 +5,8 @@ "author": "Paranext", "license": "MIT", "main": "src/main.ts", + "extensionDependencies": {}, + "elevatedPrivileges": [], "types": "src/types/paranext-extension-template.d.ts", "menus": "contributions/menus.json", "settings": "contributions/settings.json", diff --git a/package-lock.json b/package-lock.json index 0796ad76ef..f3ed63fcf1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "0.0.1", "license": "MIT", "dependencies": { - "@sillsdev/scripture": "^2.0.0", + "@sillsdev/scripture": "^2.0.1", "platform-bible-utils": "file:../paranext-core/lib/platform-bible-utils" }, "devDependencies": { @@ -2396,9 +2396,9 @@ } }, "node_modules/@sillsdev/scripture": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@sillsdev/scripture/-/scripture-2.0.0.tgz", - "integrity": "sha512-1u6fGszmpSv6lfryU1Q37csOwRoOEh+pGCj2pVFPOYa/SN6BWadkADDM6FnUYi3Q6/8cSM9m1fTOwsje2/lLHQ==" + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@sillsdev/scripture/-/scripture-2.0.1.tgz", + "integrity": "sha512-hE8vN+j7JOKqKxyGSFCEgzW7SpRmplePYnNMyZnxmzxUs+7NCM72UnxIpb0XSy40a6ViE22Shx6Lvhqq83Bisg==" }, "node_modules/@sinclair/typebox": { "version": "0.27.8", @@ -15509,9 +15509,9 @@ "dev": true }, "@sillsdev/scripture": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@sillsdev/scripture/-/scripture-2.0.0.tgz", - "integrity": "sha512-1u6fGszmpSv6lfryU1Q37csOwRoOEh+pGCj2pVFPOYa/SN6BWadkADDM6FnUYi3Q6/8cSM9m1fTOwsje2/lLHQ==" + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@sillsdev/scripture/-/scripture-2.0.1.tgz", + "integrity": "sha512-hE8vN+j7JOKqKxyGSFCEgzW7SpRmplePYnNMyZnxmzxUs+7NCM72UnxIpb0XSy40a6ViE22Shx6Lvhqq83Bisg==" }, "@sinclair/typebox": { "version": "0.27.8", diff --git a/package.json b/package.json index 9c13db5bff..4ed174921d 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "react-dom": ">=18.2.0" }, "dependencies": { - "@sillsdev/scripture": "^2.0.0", + "@sillsdev/scripture": "^2.0.1", "platform-bible-utils": "file:../paranext-core/lib/platform-bible-utils" }, "devDependencies": {