node-sword-interface 1.0.113 → 1.0.115

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/deploy_local.sh CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/bin/bash
2
2
 
3
- PROJECT_DIR='ezra-project-git'
3
+ PROJECT_DIR='ezra-bible-app'
4
4
  WORK_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
5
5
  rm -rf $WORK_DIR/../$PROJECT_DIR/node_modules/node-sword-interface
6
6
  cp -a $WORK_DIR $WORK_DIR/../$PROJECT_DIR/node_modules/node-sword-interface
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-sword-interface",
3
- "version": "1.0.113",
3
+ "version": "1.0.115",
4
4
  "description": "Javascript (N-API) interface to SWORD library",
5
5
  "keywords": [
6
6
  "C++",
@@ -31,7 +31,7 @@ fi
31
31
 
32
32
  # CLONE SWORD
33
33
  git clone https://github.com/ezra-bible-app/crosswire-sword-mirror sword
34
- git -C sword checkout 1.9.0-2025-12-30
34
+ git -C sword checkout 1.9.0-2026-04-03
35
35
  patch --batch --forward -d sword -p 0 < patch/sword_globconf.patch
36
36
 
37
37
  # PATCHES
@@ -109,6 +109,13 @@ int RepositoryInterface::refreshRemoteSources(bool force, map<string, bool>* rep
109
109
  return -1;
110
110
  }
111
111
 
112
+ // Force eBible.org to use HTTPS instead of FTP
113
+ InstallSource* eBibleSource = this->getRemoteSource("eBible.org");
114
+ if (eBibleSource != 0) {
115
+ eBibleSource->type = "HTTPS";
116
+ eBibleSource->source = "ebible.org";
117
+ }
118
+
112
119
  vector<string> sourceNames = this->getRepoNames();
113
120
  this->_remoteSourceCount = sourceNames.size();
114
121