node-sword-interface 1.0.12 → 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 (47) hide show
  1. package/API.md +1 -0
  2. package/examples/install_kjv.js +1 -1
  3. package/examples/print_kjv_matthew.js +1 -1
  4. package/index.js +2 -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 +7 -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
@@ -634,6 +634,7 @@ An object representation of a SWORD module.
634
634
  | distributionLicense | <code>String</code> | The distribution license of the 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
+ | lastUpdate | <code>String</code> | The date of the last version update of the SWORD module |
637
638
  | repository | <code>String</code> | The repository of the SWORD module (only returned by methods interacting with module repositories) |
638
639
  | about | <code>String</code> | Extended description of the SWORD module |
639
640
  | abbreviation | <code>String</code> | The abbreviation of the SWORD module |
@@ -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
@@ -42,6 +42,7 @@ const nodeSwordInterfaceModule = require('./build/Release/node_sword_interface.n
42
42
  * @property {String} distributionLicense - The distribution license of the SWORD module
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
+ * @property {String} lastUpdate - The date of the last version update of the SWORD module
45
46
  * @property {String} repository - The repository of the SWORD module (only returned by methods interacting with module repositories)
46
47
  * @property {String} about - Extended description of the SWORD module
47
48
  * @property {String} abbreviation - The abbreviation of the SWORD module
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-sword-interface",
3
- "version": "1.0.12",
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
@@ -71,6 +71,12 @@ void NapiSwordHelper::swordModuleToNapiObject(const Napi::Env& env, SWModule* sw
71
71
  object["shortCopyright"] = this->getConfigEntry(swModule, "ShortCopyright", env);
72
72
  object["version"] = this->getConfigEntry(swModule, "Version", env);
73
73
 
74
+ if (swModule->getConfigEntry("SwordVersionDate")) {
75
+ object["lastUpdate"] = this->getConfigEntry(swModule, "SwordVersionDate", env);
76
+ } else {
77
+ object["lastUpdate"] = "";
78
+ }
79
+
74
80
  if (swModule->getConfigEntry("Direction")) {
75
81
  string direction = string(swModule->getConfigEntry("Direction"));
76
82
  object["isRightToLeft"] = Napi::Boolean::New(env, (direction == "RtoL"));
@@ -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