node-sword-interface 1.0.18 → 1.0.19

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 (48) hide show
  1. package/README.md +8 -3
  2. package/binding.gyp +0 -3
  3. package/examples/install_kjv.js +1 -1
  4. package/examples/print_kjv_matthew.js +1 -1
  5. package/index.js +1 -1
  6. package/package.json +3 -3
  7. package/scripts/build_sword.sh +2 -2
  8. package/scripts/get_sword_build_win32.ps1 +2 -2
  9. package/scripts/get_sword_include_path.sh +1 -1
  10. package/scripts/get_sword_library.sh +1 -1
  11. package/scripts/postinstall.js +1 -1
  12. package/src/napi_module/api_lock.cpp +1 -1
  13. package/src/napi_module/api_lock.hpp +1 -1
  14. package/src/napi_module/binding.cpp +1 -1
  15. package/src/napi_module/install_module_worker.cpp +1 -1
  16. package/src/napi_module/install_module_worker.hpp +1 -1
  17. package/src/napi_module/module_search_worker.cpp +1 -1
  18. package/src/napi_module/module_search_worker.hpp +1 -1
  19. package/src/napi_module/napi_sword_helper.cpp +1 -1
  20. package/src/napi_module/napi_sword_helper.hpp +1 -1
  21. package/src/napi_module/node_sword_interface.cpp +1 -1
  22. package/src/napi_module/node_sword_interface.hpp +1 -1
  23. package/src/napi_module/worker.hpp +1 -1
  24. package/src/sword_backend/common_defs.hpp +1 -1
  25. package/src/sword_backend/file_system_helper.cpp +1 -1
  26. package/src/sword_backend/file_system_helper.hpp +1 -1
  27. package/src/sword_backend/module_helper.cpp +1 -1
  28. package/src/sword_backend/module_helper.hpp +1 -1
  29. package/src/sword_backend/module_installer.cpp +1 -1
  30. package/src/sword_backend/module_installer.hpp +1 -1
  31. package/src/sword_backend/module_search.cpp +1 -1
  32. package/src/sword_backend/module_search.hpp +1 -1
  33. package/src/sword_backend/module_store.cpp +11 -6
  34. package/src/sword_backend/module_store.hpp +1 -1
  35. package/src/sword_backend/mutex.cpp +1 -1
  36. package/src/sword_backend/mutex.hpp +1 -1
  37. package/src/sword_backend/percentage_calc.hpp +1 -1
  38. package/src/sword_backend/repository_interface.cpp +1 -1
  39. package/src/sword_backend/repository_interface.hpp +1 -1
  40. package/src/sword_backend/string_helper.cpp +1 -1
  41. package/src/sword_backend/string_helper.hpp +1 -1
  42. package/src/sword_backend/strongs_entry.cpp +1 -1
  43. package/src/sword_backend/strongs_entry.hpp +1 -1
  44. package/src/sword_backend/sword_status_reporter.cpp +1 -1
  45. package/src/sword_backend/sword_status_reporter.hpp +1 -1
  46. package/src/sword_backend/sword_translation_helper.hpp +1 -1
  47. package/src/sword_backend/text_processor.cpp +1 -1
  48. package/src/sword_backend/text_processor.hpp +1 -1
package/README.md CHANGED
@@ -1,7 +1,12 @@
1
1
  # node-sword-interface
2
- node-sword-interface is a [nodejs](https://nodejs.org) module that wraps the [SWORD library](http://www.crosswire.org/sword/) which gives access to Bible text modules and related ressources. It has been created for use within the [Ezra Bible App](https://github.com/ezra-bible-app/ezra-bible-app) Bible study software, but it can also be used for any other nodejs-based software that needs to interface with the SWORD library. node-sword-interface supports Bible modules and dictionary modules that are keyed with Strong's numbers. node-sword-interface works on Windows, macOS, Linux and Android (via [nodejs-mobile](https://code.janeasystems.com/nodejs-mobile)).
3
-
4
- The currently used SWORD version is SVN Rev. 3873 (1.9.x).
2
+ node-sword-interface is a [nodejs](https://nodejs.org) module that wraps the [SWORD library](http://www.crosswire.org/sword/)
3
+ which gives access to Bible text modules and related ressources. It has been created for use within the
4
+ [Ezra Bible App](https://github.com/ezra-bible-app/ezra-bible-app) Bible study software, but it can also be used
5
+ for any other nodejs-based software that needs to interface with the SWORD library. node-sword-interface supports
6
+ Bible modules and dictionary modules that are keyed with Strong's numbers. node-sword-interface works on Windows,
7
+ macOS, Linux and Android (via [nodejs-mobile](https://code.janeasystems.com/nodejs-mobile)).
8
+
9
+ The currently used SWORD version is SVN Rev. 3894 (1.9.x / sword trunk from November 2023).
5
10
 
6
11
  ## Features
7
12
 
package/binding.gyp CHANGED
@@ -126,9 +126,6 @@
126
126
  ],
127
127
  "libraries": [
128
128
  '-l<(module_root_dir)/build/sword-build-win32/lib/sword.lib',
129
- '-l<(module_root_dir)/build/sword-build-win32/lib/icuuc.lib',
130
- '-l<(module_root_dir)/build/sword-build-win32/lib/icuin.lib',
131
- '-l<(module_root_dir)/build/sword-build-win32/lib/icudt.lib',
132
129
  '-l<(module_root_dir)/build/sword-build-win32/lib/libbz2.lib',
133
130
  '-l<(module_root_dir)/build/sword-build-win32/lib/liblzma.lib',
134
131
  '-l<(module_root_dir)/build/sword-build-win32/lib/libcurl_imp.lib',
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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.18",
3
+ "version": "1.0.19",
4
4
  "description": "Javascript (N-API) interface to SWORD library",
5
5
  "keywords": [
6
6
  "C++",
@@ -23,7 +23,7 @@
23
23
  "license": "GPL-2.0+",
24
24
  "dependencies": {
25
25
  "glob": "^8.0.3",
26
- "node-addon-api": "^4.2.0"
26
+ "node-addon-api": "^7.1.0"
27
27
  },
28
28
  "repository": {
29
29
  "type": "git",
@@ -31,6 +31,6 @@
31
31
  },
32
32
  "devDependencies": {
33
33
  "jsdoc-to-markdown": "^8.0.0",
34
- "node-gyp": "^8.0.0"
34
+ "node-gyp": "^8.4.0"
35
35
  }
36
36
  }
@@ -2,7 +2,7 @@
2
2
 
3
3
  # This file is part of node-sword-interface.
4
4
  #
5
- # Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
5
+ # Copyright (C) 2019 - 2024 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
@@ -31,7 +31,7 @@ fi
31
31
 
32
32
  # CLONE SWORD
33
33
  git clone https://github.com/bibletime/crosswire-sword-mirror sword
34
- git -C sword checkout 1460f9
34
+ git -C sword checkout 574325
35
35
  patch --batch --forward -d sword -p 0 < patch/sword_globconf.patch
36
36
 
37
37
  # PATCHES
@@ -1,6 +1,6 @@
1
1
  # This file is part of node-sword-interface.
2
2
  #
3
- # Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
3
+ # Copyright (C) 2019 - 2024 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
@@ -34,7 +34,7 @@ $headers = @{}
34
34
  $github_token = $env:GITHUB_TOKEN
35
35
 
36
36
  # --- Set the uri for the release
37
- $URI = "https://api.github.com/repos/ezra-bible-app/sword-build-win32/releases/tags/v1.8.900-2022-11-06"
37
+ $URI = "https://api.github.com/repos/ezra-bible-app/sword-build-win32/releases/tags/v1.9.0-2024-01-21"
38
38
 
39
39
  if ($Env:CI -eq "true") {
40
40
  Write-Host "GitHub actions build ... using GITHUB_TOKEN for authentication!"
@@ -2,7 +2,7 @@
2
2
 
3
3
  # This file is part of node-sword-interface.
4
4
  #
5
- # Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
5
+ # Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
5
+ # Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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
@@ -66,23 +66,28 @@ SWMgr* ModuleStore::createSWMgr()
66
66
  isAndroid = true;
67
67
  #endif
68
68
 
69
+ MarkupFilterMgr* markupFilterMgr = new MarkupFilterMgr(sword::FMT_OSIS, sword::ENC_UTF8);
70
+
69
71
  if (customHomeDir != "" || isAndroid) {
70
72
  swMgr = new SWMgr(this->_fileSystemHelper.getUserSwordDir().c_str(),
71
73
  true, // autoload
72
- new MarkupFilterMgr(sword::FMT_OSIS, sword::ENC_UTF8),
74
+ markupFilterMgr,
73
75
  false, // multiMod
74
76
  false); // augmentHome
75
77
 
76
78
  if (isAndroid) {
77
79
  // Also consider the originally used path for Android, which does not work anymore from Android 11, but is still relevant
78
80
  // for existing translations on Android versions < 11.
79
- swMgr->augmentModules("/sdcard/sword");
81
+ swMgr->augmentModules("/sdcard/sword");
82
+
83
+ // Also consider /sdcard/Documents/sword, which is the path used by other programs
84
+ swMgr->augmentModules("/sdcard/Documents/sword");
80
85
  }
81
86
  } else {
82
87
  #ifdef _WIN32
83
88
  swMgr = new SWMgr(this->_fileSystemHelper.getUserSwordDir().c_str(),
84
89
  true, // autoload
85
- new MarkupFilterMgr(sword::FMT_OSIS, sword::ENC_UTF8),
90
+ markupFilterMgr,
86
91
  false, // multimod
87
92
  true); // augmentHome
88
93
 
@@ -90,13 +95,13 @@ SWMgr* ModuleStore::createSWMgr()
90
95
  // We're keeping it here for now in case this becomes relevant again.
91
96
  // this->_mgr->augmentModules(this->_fileSystemHelper.getSystemSwordDir().c_str());
92
97
  #elif defined(__APPLE__)
93
- swMgr = new SWMgr(new MarkupFilterMgr(sword::FMT_OSIS, sword::ENC_UTF8));
98
+ swMgr = new SWMgr(markupFilterMgr);
94
99
 
95
100
  stringstream appSupport;
96
101
  appSupport << string(getenv("HOME")) << "/Library/Application Support/Sword";
97
102
  swMgr->augmentModules(appSupport.str().c_str());
98
103
  #else // LINUX!
99
- swMgr = new SWMgr(new MarkupFilterMgr(sword::FMT_OSIS, sword::ENC_UTF8));
104
+ swMgr = new SWMgr(markupFilterMgr);
100
105
  #endif
101
106
  }
102
107
 
@@ -1,6 +1,6 @@
1
1
  /* This file is part of node-sword-interface.
2
2
 
3
- Copyright (C) 2019 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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 - 2023 Tobias Klein <contact@tklein.info>
3
+ Copyright (C) 2019 - 2024 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