node-sword-interface 1.0.113 → 1.0.114

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.114",
4
4
  "description": "Javascript (N-API) interface to SWORD library",
5
5
  "keywords": [
6
6
  "C++",
@@ -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