codexparser 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project are documented here. For full details, see the Release Notes in README and the GitHub Releases page.
|
|
4
4
|
|
|
5
|
+
## 0.4.1 — 2026-04-28
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- **Genesis 5:32 LXX missing entry.** ENG/MT Gen 5:32 ("Noah was 500 years old, and he fathered Shem, Ham, and Japheth") is folded into LXX Göttingen Gen 6:1, so LXX Genesis 5 has only 31 verses. The previous data left ENG Gen 5:32 unmapped, so `convertVersion("lxx")` returned 32 verses for Gen 5 and downstream lookups against an LXX corpus 404'd. Now correctly emits `missingPassages: [{ verse: 32 }]` and `verses: ["1-31"]`.
|
|
10
|
+
|
|
5
11
|
## 0.4.0 — 2026-04-28
|
|
6
12
|
|
|
7
13
|
LXX versification audit + structural fixes. Major data-correctness pass against authoritative sources (Hanhart's Göttingen Esther, Rahlfs-Hanhart 2006, Göttingen Theodotion Daniel/Susanna/Bel) verified via Logos library.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codexparser",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "This is a Javascript Bible parser and text scanner. It will search through texts and collate all scripture references into an array and parse them into objects, and it will parse passages into objects by book, chapter, verse, and testament. ",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
module.exports = {
|
|
2
|
+
// LXX/Göttingen Genesis 5 has only 31 verses. The content of ENG/MT 5:32
|
|
3
|
+
// ("Noah was 500 years old, and he fathered Shem, Ham, and Japheth")
|
|
4
|
+
// is folded into LXX 6:1, which then continues with the start of ENG/MT 6:1.
|
|
5
|
+
"5:32": {
|
|
6
|
+
lxx: "",
|
|
7
|
+
mt: "5:32",
|
|
8
|
+
eng: "5:32",
|
|
9
|
+
},
|
|
2
10
|
"31:55": {
|
|
3
11
|
lxx: "32:1",
|
|
4
12
|
mt: "32:1",
|