Skip to content

Commit

Permalink
merge with development
Browse files Browse the repository at this point in the history
  • Loading branch information
danielc-n committed Oct 15, 2024
2 parents c492574 + 663811b commit d4bf9b7
Show file tree
Hide file tree
Showing 35 changed files with 4,615 additions and 1,870 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ Autogrpha-DB/
/app/**/*.map
/.next
.next
.yalc
yalc.lock

# testing
/coverage
Expand Down
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"productName": "scribe-scripture-editor",
"description": "A friendly assistant for Bible Translators.",
"author": "Bible Technology <[email protected]>",
"version": "0.6.3",
"version": "0.7.0",
"license": "MIT",
"private": true,
"main": "main/index.js",
Expand Down Expand Up @@ -88,6 +88,7 @@
"@babel/eslint-parser": "^7.5.4",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.17.12",
"@capacitor/cli": "5.4.2",
"@mui/icons-material": "^5.8.4",
"@netlify/plugin-nextjs": "^4.8.0",
"@playwright/test": "^1.36.2",
Expand Down Expand Up @@ -127,6 +128,8 @@
"@mui/icons-material": "^5.x"
},
"dependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@biblionexus-foundation/scribe-editor": "0.1.2-scribe-v1",
"@capacitor/app": "5.0.6",
"@capacitor/core": "5.4.2",
"@capacitor/haptics": "5.0.6",
Expand Down Expand Up @@ -222,6 +225,7 @@
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "5.0.1",
"sj-usfm-grammar": "^3.0.3",
"styled-components": "^5.3.6",
"tc-ui-toolkit": "5.3.3",
"terser-webpack-plugin": "^5.3.10",
Expand All @@ -230,9 +234,9 @@
"typescript": "^4.9.5",
"use-deep-compare": "^1.1.0",
"usfm-editor": "0.8.7",
"usfm-grammar": "^2.3.0",
"usfm-grammar": "^2.3.1",
"uuid": "^9.0.1",
"wavesurfer.js": "^6.6.2",
"wavesurfer.js": "^6.6.4",
"webpack-node-externals": "^3.0.0",
"winston": "^3.7.2",
"word-aligner": "1.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export default function SelectBook({
selectedBooks,
setSelectedBooks,
scope,
setBook,
existingScope = [],
disableScope = {},
call = '',
Expand All @@ -37,6 +38,7 @@ export default function SelectBook({
function bookSelect(e, bookId) {
e.preventDefault();
onChangeBook(bookId, selectedBooks[0]);
setBook(bookId);
if (multiSelectBook === false) { selectBook(); }
}

Expand Down
251 changes: 0 additions & 251 deletions renderer/src/components/EditorPage/TextEditor/BibleNavigationX.jsx

This file was deleted.

Loading

0 comments on commit d4bf9b7

Please sign in to comment.