Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add MEV #196

Merged
merged 2 commits into from
May 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/bible-api-and-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ This plugin Bible Verse Query Functionality is currently powered by
- **Almeida**: João Ferreira de Almeida (Book Names Are In English, Bible Verses Are In Portuguese)
- **RCCV**: Romanian Corrected Cornilescu Version (Book Names Are In English, Bible Verses Are In Romanian)
- Bolls Life
- **MEV**: Modern English Version (Bolls Life)
- **NIV**: New International Version, 1984 (Bolls Life)
- **NKJV**: New King James Version (Bolls Life)
- **CUV**: China Union Version (Bolls Life) (Book Names Are In English, Bible Verses Are In Chinese)
Expand Down
8 changes: 8 additions & 0 deletions src/data/BibleVersionCollection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,14 @@ export const BibleVersionCollection: IBibleVersion[] = [
apiSource: BibleAPISourceCollection.bibleApi,
},
// bolls life
{
key: "mev",
versionName: "Modern English Version",
language: "English",
code: "en",
apiSource: BibleAPISourceCollection.bollsLife,
infoUrl: "https://wikipedia.org/wiki/Modern_English_Version"
},
{
key: 'nkjv',
versionName: 'New King James Version',
Expand Down
Loading