Skip to content

Commit

Permalink
Merge pull request #34 from unfoldingWord/develop
Browse files Browse the repository at this point in the history
Updates Footnote rendering by using a local PK hook
  • Loading branch information
richmahn authored Jun 21, 2024
2 parents 4454593 + b4e29cc commit 216cbcb
Show file tree
Hide file tree
Showing 12 changed files with 1,433 additions and 12 deletions.
1 change: 1 addition & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"@components/*": ["src/components/*"],
"@helpers/*": ["src/helpers/*"],
"@hooks/*": ["src/hooks/*"],
"@renderer/*": ["src/renderer/*"]
}
},
"include": ["src"],
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "door43-preview-app",
"private": true,
"version": "1.0.12",
"version": "1.0.13",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down Expand Up @@ -33,7 +33,8 @@
"pako": "^2.1.0",
"papaparse": "^5.4.1",
"prop-types": "^15.8.1",
"proskomma-core": "^0.10.5",
"proskomma-core": "^0.10.7",
"proskomma-json-tools": "^0.8.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-draggable": "^4.4.6",
Expand Down
139 changes: 134 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/components/Bible.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ export default function Bible() {
showWordAtts: false,
showTitles: true,
showHeadings: true,
showIntroductions: true,
showFootnotes: true,
showXrefs: false,
showParaStyles: true,
showCharacterMarkup: false,
showXrefs: true,
showChapterLabels: true,
showVersesLabels: true,
showCharacterMarkup: true,
showParaStyles: true,
selectedBcvNotes: []
};

const onBibleReferenceChange = (b, c, v) => {
Expand Down
Loading

0 comments on commit 216cbcb

Please sign in to comment.