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
package/scripts/build_sword.sh
CHANGED
|
@@ -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-
|
|
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
|
package/src/node_sword_cli.cpp
CHANGED
|
@@ -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
|
|