node-sword-interface 1.0.13 → 1.0.14

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.
Files changed (46) hide show
  1. package/examples/install_kjv.js +1 -1
  2. package/examples/print_kjv_matthew.js +1 -1
  3. package/index.js +1 -1
  4. package/package.json +1 -1
  5. package/scripts/build_sword.sh +1 -1
  6. package/scripts/get_sword_build_win32.ps1 +1 -1
  7. package/scripts/get_sword_include_path.sh +1 -1
  8. package/scripts/get_sword_library.sh +1 -1
  9. package/scripts/postinstall.js +1 -1
  10. package/src/napi_module/api_lock.cpp +1 -1
  11. package/src/napi_module/api_lock.hpp +1 -1
  12. package/src/napi_module/binding.cpp +1 -1
  13. package/src/napi_module/install_module_worker.cpp +1 -1
  14. package/src/napi_module/install_module_worker.hpp +1 -1
  15. package/src/napi_module/module_search_worker.cpp +1 -1
  16. package/src/napi_module/module_search_worker.hpp +1 -1
  17. package/src/napi_module/napi_sword_helper.cpp +1 -1
  18. package/src/napi_module/napi_sword_helper.hpp +1 -1
  19. package/src/napi_module/node_sword_interface.cpp +1 -1
  20. package/src/napi_module/node_sword_interface.hpp +1 -1
  21. package/src/napi_module/worker.hpp +1 -1
  22. package/src/sword_backend/common_defs.hpp +1 -1
  23. package/src/sword_backend/file_system_helper.cpp +1 -1
  24. package/src/sword_backend/file_system_helper.hpp +1 -1
  25. package/src/sword_backend/module_helper.cpp +1 -1
  26. package/src/sword_backend/module_helper.hpp +1 -1
  27. package/src/sword_backend/module_installer.cpp +1 -1
  28. package/src/sword_backend/module_installer.hpp +1 -1
  29. package/src/sword_backend/module_search.cpp +1 -1
  30. package/src/sword_backend/module_search.hpp +1 -1
  31. package/src/sword_backend/module_store.cpp +11 -6
  32. package/src/sword_backend/module_store.hpp +1 -1
  33. package/src/sword_backend/mutex.cpp +1 -1
  34. package/src/sword_backend/mutex.hpp +1 -1
  35. package/src/sword_backend/percentage_calc.hpp +1 -1
  36. package/src/sword_backend/repository_interface.cpp +1 -1
  37. package/src/sword_backend/repository_interface.hpp +1 -1
  38. package/src/sword_backend/string_helper.cpp +1 -1
  39. package/src/sword_backend/string_helper.hpp +1 -1
  40. package/src/sword_backend/strongs_entry.cpp +1 -1
  41. package/src/sword_backend/strongs_entry.hpp +1 -1
  42. package/src/sword_backend/sword_status_reporter.cpp +1 -1
  43. package/src/sword_backend/sword_status_reporter.hpp +1 -1
  44. package/src/sword_backend/sword_translation_helper.hpp +1 -1
  45. package/src/sword_backend/text_processor.cpp +1 -1
  46. package/src/sword_backend/text_processor.hpp +1 -1
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
package/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-sword-interface",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "Javascript (N-API) interface to SWORD library",
5
5
  "keywords": [
6
6
  "C++",
@@ -2,7 +2,7 @@
2
2
 
3
3
  # This file is part of node-sword-interface.
4
4
  #
5
- # Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
5
+ # Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
6
6
  #
7
7
  # node-sword-interface is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  # This file is part of node-sword-interface.
2
2
  #
3
- # Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ # Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
  #
5
5
  # node-sword-interface is free software: you can redistribute it and/or modify
6
6
  # it under the terms of the GNU General Public License as published by
@@ -2,7 +2,7 @@
2
2
 
3
3
  # This file is part of node-sword-interface.
4
4
  #
5
- # Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
5
+ # Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
6
6
  #
7
7
  # node-sword-interface is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU General Public License as published by
@@ -2,7 +2,7 @@
2
2
 
3
3
  # This file is part of node-sword-interface.
4
4
  #
5
- # Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
5
+ # Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
6
6
  #
7
7
  # node-sword-interface is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -23,6 +23,7 @@
23
23
 
24
24
  // Sword includes
25
25
  #include <swmgr.h>
26
+ #include <markupfiltmgr.h>
26
27
  #include <swmodule.h>
27
28
 
28
29
  // Own includes
@@ -68,7 +69,7 @@ SWMgr* ModuleStore::createSWMgr()
68
69
  if (customHomeDir != "" || isAndroid) {
69
70
  swMgr = new SWMgr(this->_fileSystemHelper.getUserSwordDir().c_str(),
70
71
  true, // autoload
71
- 0, // filterMgr
72
+ new MarkupFilterMgr(sword::FMT_OSIS, sword::ENC_UTF8),
72
73
  false, // multiMod
73
74
  false); // augmentHome
74
75
 
@@ -79,19 +80,23 @@ SWMgr* ModuleStore::createSWMgr()
79
80
  }
80
81
  } else {
81
82
  #ifdef _WIN32
82
- swMgr = new SWMgr(this->_fileSystemHelper.getUserSwordDir().c_str());
83
+ swMgr = new SWMgr(this->_fileSystemHelper.getUserSwordDir().c_str(),
84
+ true, // autoload
85
+ new MarkupFilterMgr(sword::FMT_OSIS, sword::ENC_UTF8),
86
+ false, // multimod
87
+ true); // augmentHome
83
88
 
84
89
  // This has been disabled because it lead to a crash.
85
90
  // We're keeping it here for now in case this becomes relevant again.
86
91
  // this->_mgr->augmentModules(this->_fileSystemHelper.getSystemSwordDir().c_str());
87
92
  #elif defined(__APPLE__)
88
- swMgr = new SWMgr();
93
+ swMgr = new SWMgr(new MarkupFilterMgr(sword::FMT_OSIS, sword::ENC_UTF8));
89
94
 
90
95
  stringstream appSupport;
91
96
  appSupport << string(getenv("HOME")) << "/Library/Application Support/Sword";
92
97
  swMgr->augmentModules(appSupport.str().c_str());
93
- #else
94
- swMgr = new SWMgr();
98
+ #else // LINUX!
99
+ swMgr = new SWMgr(new MarkupFilterMgr(sword::FMT_OSIS, sword::ENC_UTF8));
95
100
  #endif
96
101
  }
97
102
 
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2022 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
4
4
 
5
5
  node-sword-interface is free software: you can redistribute it and/or modify
6
6
  it under the terms of the GNU General Public License as published by