Skip to content

Commit 8062745

Browse files
committed
Merge remote-tracking branch 'origin/main' into xml-parser
2 parents 78df163 + c49c980 commit 8062745

8 files changed

Lines changed: 21 additions & 21 deletions

File tree

.github/assets/release-body.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Includes:
22

3-
- Extension template
3+
- Interlinearizer
44

55
Tested on Platform.Bible vX.Y.Z. Expected to be compatible with at least vX.Y.\*.
66

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<!-- Attention template README maintainers: The content in the portion of this README following the Template Info section roughly parallels that of the paranext-multi-extension-template. When editing one, please consider whether similar changes should also be made in the other.-->
22

3-
# paranext-extension-template
3+
# Interlinearizer
44

5-
Basic extension template for Platform.Bible
5+
Interlinearizer extension for Platform.Bible
66

7-
<!-- <!-- Opening comment tag for Template Info Section. Ignore this for now. More info in [Hide Template Info](#hide-template-info). -->
7+
<!-- Opening comment tag for Template Info Section. Ignore this for now. More info in [Hide Template Info](#hide-template-info).
88
99
## Template Info
1010
@@ -94,7 +94,7 @@ The general file structure for an extension is as follows:
9494
- `manifest.json` is the manifest file that defines the extension and important properties for Platform.Bible. It is copied into the build folder
9595
- `src/` contains the source code for the extension
9696
- `src/main.ts` is the main entry file for the extension
97-
- `src/types/paranext-extension-template.d.ts` is this extension's types file that defines how other extensions can use this extension through the `papi`. It is copied into the build folder
97+
- `src/types/interlinearizer.d.ts` is this extension's types file that defines how other extensions can use this extension through the `papi`. It is copied into the build folder
9898
- `*.web-view.tsx` files will be treated as React WebViews
9999
- `*.web-view.html` files are a conventional way to provide HTML WebViews (no special functionality)
100100
- `assets/` contains asset files the extension and its WebViews can retrieve using the `papi-extension:` protocol, as well as textual descriptions in various languages. It is copied into the build folder
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Extension template for Platform.Bible. Powered by webpack.
1+
Interlinearizer extension for Platform.Bible. Powered by webpack.
22

3-
This is a webpack project template pre-configured to build a Platform.Bible extension. It contains the bare minimum of what an extension needs.
3+
This Platform.Bible extension provides interlinear tools.

assets/displayData.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"icon": "",
3-
"moreInfoUrl": "",
4-
"supportUrl": "",
3+
"moreInfoUrl": "https://github.com/sillsdev/interlinearizer-extension",
4+
"supportUrl": "https://github.com/sillsdev/interlinearizer-extension",
55
"localizedDisplayInfo": {
66
"en": {
7-
"displayName": "Paranext Extension Template",
8-
"shortSummary": "Base template for a Platform.Bible Extension",
7+
"displayName": "Interlinearizer",
8+
"shortSummary": "Interlinearizer extension for Platform.Bible",
99
"description": "assets/descriptions/description-en.md"
1010
}
1111
}

manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "paranextExtensionTemplate",
2+
"name": "interlinearizer",
33
"version": "0.0.1",
4-
"publisher": "paranext",
4+
"publisher": "LexicalTools",
55
"displayData": "assets/displayData.json",
6-
"author": "Paranext",
6+
"author": "SIL Global",
77
"license": "MIT",
88
"main": "src/main.ts",
99
"extensionDependencies": {},
1010
"elevatedPrivileges": [],
11-
"types": "src/types/paranext-extension-template.d.ts",
11+
"types": "src/types/interlinearizer.d.ts",
1212
"menus": "contributions/menus.json",
1313
"settings": "contributions/settings.json",
1414
"projectSettings": "contributions/projectSettings.json",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "paranext-extension-template",
2+
"name": "interlinearizer",
33
"private": true,
44
"version": "0.0.1",
55
"main": "src/main.js",
6-
"types": "src/types/paranext-extension-template.d.ts",
7-
"author": "Paranext",
6+
"types": "src/types/interlinearizer.d.ts",
7+
"author": "SIL Global",
88
"license": "MIT",
99
"scripts": {
1010
"build:web-view": "webpack --config ./webpack/webpack.config.web-view.ts",

src/types/paranext-extension-template.d.ts renamed to src/types/interlinearizer.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* fast-xml-parser output internally and returns objects conforming to these types.
88
*/
99

10-
declare module 'paranext-extension-template' {
10+
declare module 'interlinearizer' {
1111
/** Character range in source text (Index, Length). */
1212
export interface StringRange {
1313
/** Start index of the range in the source text (0-based). */

0 commit comments

Comments
 (0)