diff --git a/README.md b/README.md index c4b7318..2673f8f 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 8fa745b..d2579e3 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 2c9c40b..5db7442 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 0796ad7..f3ed63f 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 9c13db5..4ed1749 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": {