node-sword-interface 1.0.13 → 1.0.15

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 (47) hide show
  1. package/API.md +2 -0
  2. package/examples/install_kjv.js +1 -1
  3. package/examples/print_kjv_matthew.js +1 -1
  4. package/index.js +3 -1
  5. package/package.json +1 -1
  6. package/scripts/build_sword.sh +1 -1
  7. package/scripts/get_sword_build_win32.ps1 +1 -1
  8. package/scripts/get_sword_include_path.sh +1 -1
  9. package/scripts/get_sword_library.sh +1 -1
  10. package/scripts/postinstall.js +1 -1
  11. package/src/napi_module/api_lock.cpp +1 -1
  12. package/src/napi_module/api_lock.hpp +1 -1
  13. package/src/napi_module/binding.cpp +1 -1
  14. package/src/napi_module/install_module_worker.cpp +1 -1
  15. package/src/napi_module/install_module_worker.hpp +1 -1
  16. package/src/napi_module/module_search_worker.cpp +1 -1
  17. package/src/napi_module/module_search_worker.hpp +1 -1
  18. package/src/napi_module/napi_sword_helper.cpp +14 -1
  19. package/src/napi_module/napi_sword_helper.hpp +1 -1
  20. package/src/napi_module/node_sword_interface.cpp +1 -1
  21. package/src/napi_module/node_sword_interface.hpp +1 -1
  22. package/src/napi_module/worker.hpp +1 -1
  23. package/src/sword_backend/common_defs.hpp +1 -1
  24. package/src/sword_backend/file_system_helper.cpp +1 -1
  25. package/src/sword_backend/file_system_helper.hpp +1 -1
  26. package/src/sword_backend/module_helper.cpp +1 -1
  27. package/src/sword_backend/module_helper.hpp +1 -1
  28. package/src/sword_backend/module_installer.cpp +1 -1
  29. package/src/sword_backend/module_installer.hpp +1 -1
  30. package/src/sword_backend/module_search.cpp +1 -1
  31. package/src/sword_backend/module_search.hpp +1 -1
  32. package/src/sword_backend/module_store.cpp +11 -6
  33. package/src/sword_backend/module_store.hpp +1 -1
  34. package/src/sword_backend/mutex.cpp +1 -1
  35. package/src/sword_backend/mutex.hpp +1 -1
  36. package/src/sword_backend/percentage_calc.hpp +1 -1
  37. package/src/sword_backend/repository_interface.cpp +1 -1
  38. package/src/sword_backend/repository_interface.hpp +1 -1
  39. package/src/sword_backend/string_helper.cpp +1 -1
  40. package/src/sword_backend/string_helper.hpp +1 -1
  41. package/src/sword_backend/strongs_entry.cpp +1 -1
  42. package/src/sword_backend/strongs_entry.hpp +1 -1
  43. package/src/sword_backend/sword_status_reporter.cpp +1 -1
  44. package/src/sword_backend/sword_status_reporter.hpp +1 -1
  45. package/src/sword_backend/sword_translation_helper.hpp +1 -1
  46. package/src/sword_backend/text_processor.cpp +1 -1
  47. package/src/sword_backend/text_processor.hpp +1 -1
package/API.md CHANGED
@@ -635,9 +635,11 @@ An object representation of a SWORD module.
635
635
  | shortCopyright | <code>String</code> | The short copyright information of the SWORD module |
636
636
  | version | <code>String</code> | The version of the SWORD module |
637
637
  | lastUpdate | <code>String</code> | The date of the last version update of the SWORD module |
638
+ | category | <code>String</code> | The category of the SWORD module |
638
639
  | repository | <code>String</code> | The repository of the SWORD module (only returned by methods interacting with module repositories) |
639
640
  | about | <code>String</code> | Extended description of the SWORD module |
640
641
  | abbreviation | <code>String</code> | The abbreviation of the SWORD module |
642
+ | sourceRepo | <code>String</code> | The repository from which this SWORD modules has been installed |
641
643
  | size | <code>Number</code> | The file size of the SWORD module (in KB) |
642
644
  | location | <code>String</code> | The filesystem location where the module is stored |
643
645
  | unlockInfo | <code>String</code> | Information about how to retrieve an unlock key (in case the module is locked) |
@@ -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
@@ -43,9 +43,11 @@ const nodeSwordInterfaceModule = require('./build/Release/node_sword_interface.n
43
43
  * @property {String} shortCopyright - The short copyright information of the SWORD module
44
44
  * @property {String} version - The version of the SWORD module
45
45
  * @property {String} lastUpdate - The date of the last version update of the SWORD module
46
+ * @property {String} category - The category of the SWORD module
46
47
  * @property {String} repository - The repository of the SWORD module (only returned by methods interacting with module repositories)
47
48
  * @property {String} about - Extended description of the SWORD module
48
49
  * @property {String} abbreviation - The abbreviation of the SWORD module
50
+ * @property {String} sourceRepo - The repository from which this SWORD modules has been installed
49
51
  * @property {Number} size - The file size of the SWORD module (in KB)
50
52
  * @property {String} location - The filesystem location where the module is stored
51
53
  * @property {String} unlockInfo - Information about how to retrieve an unlock key (in case the module is locked)
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.15",
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
@@ -61,6 +61,13 @@ void NapiSwordHelper::swordModuleToNapiObject(const Napi::Env& env, SWModule* sw
61
61
 
62
62
  object["name"] = swModule->getName();
63
63
  object["type"] = swModule->getType();
64
+
65
+ if (swModule->getConfigEntry("Category")) {
66
+ object["category"] = string(swModule->getConfigEntry("Category"));
67
+ } else {
68
+ object["category"] = "";
69
+ }
70
+
64
71
  object["description"] = swModule->getDescription();
65
72
  object["language"] = swModule->getLanguage();
66
73
  object["location"] = this->_moduleStore.getModuleDataPath(swModule);
@@ -84,6 +91,12 @@ void NapiSwordHelper::swordModuleToNapiObject(const Napi::Env& env, SWModule* sw
84
91
  object["isRightToLeft"] = Napi::Boolean::New(env, false);
85
92
  }
86
93
 
94
+ if (swModule->getConfigEntry("InstallSourceCaption")) {
95
+ object["sourceRepo"] = string(swModule->getConfigEntry("InstallSourceCaption"));
96
+ } else {
97
+ object["sourceRepo"] = "";
98
+ }
99
+
87
100
  if (swModule->getConfigEntry("InstallSize")) {
88
101
  std::string configInstallSize = string(swModule->getConfigEntry("InstallSize"));
89
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
@@ -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