node-sword-interface 1.0.0 → 1.0.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/README.md CHANGED
@@ -11,6 +11,7 @@ node-sword-interface focusses on discovery, installation/removal and text loadin
11
11
  - List SWORD repositories
12
12
  - List remote modules (Bible modules or dictionary modules)
13
13
  - List local modules (Bible modules or dictionary modules)
14
+ - Get a list of updated modules
14
15
  - Install a module
15
16
  - Uninstall a module
16
17
  - Get information about a module
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-sword-interface",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Javascript (N-API) interface to SWORD library",
5
5
  "keywords": [
6
6
  "C++",
@@ -82,7 +82,7 @@ else
82
82
  # macOS & Linux
83
83
 
84
84
  cd sword_build
85
- cmake -DLIBSWORD_LIBRARY_TYPE=Static -DCMAKE_CXX_STANDARD=11 ../sword
85
+ cmake -DLIBSWORD_LIBRARY_TYPE=Static -DCMAKE_CXX_STANDARD=11 -DCMAKE_BUILD_TYPE=Release ../sword
86
86
  fi
87
87
 
88
88
  make -j4 sword_static
@@ -30,7 +30,7 @@ $AllProtocols = [System.Net.SecurityProtocolType]'Tls11,Tls12'
30
30
  [System.Net.ServicePointManager]::SecurityProtocol = $AllProtocols
31
31
 
32
32
  # --- Set the uri for the release
33
- $URI = "https://api.github.com/repos/ezra-project/sword-build-win32/releases/tags/v1.8.900-2022-01-02"
33
+ $URI = "https://api.github.com/repos/ezra-bible-app/sword-build-win32/releases/tags/v1.8.900-2022-11-06"
34
34
 
35
35
  # --- Query the API to get the url of the zip
36
36
  $Response = Invoke-RestMethod -Method Get -Uri $URI
@@ -88,8 +88,8 @@ void get_repo_module(RepositoryInterface& repoInterface)
88
88
 
89
89
  void get_updated_repo_modules(RepositoryInterface& repoInterface)
90
90
  {
91
- ModuleStore moduleStore;
92
- ModuleHelper moduleHelper(moduleStore);
91
+ //ModuleStore moduleStore;
92
+ //ModuleHelper moduleHelper(moduleStore);
93
93
 
94
94
  vector<SWModule*> updatedModules = repoInterface.getUpdatedRepoModules();
95
95