node-sword-interface 1.0.54 → 1.0.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/binding.gyp
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"variables": {
|
|
3
3
|
# Detect if we are building for iOS by checking an env var
|
|
4
|
-
"is_ios%": "<!(
|
|
4
|
+
"is_ios%": "<!(python3 -c \"import os; print(1 if os.environ.get('PLATFORM') == 'ios' or os.environ.get('SDKROOT') and 'iPhone' in os.environ.get('SDKROOT') else 0)\")"
|
|
5
5
|
},
|
|
6
6
|
"targets": [
|
|
7
7
|
{
|
package/package.json
CHANGED
package/scripts/build_sword.sh
CHANGED
|
@@ -997,9 +997,9 @@ Napi::Value NodeSwordInterface::getSwordVersion(const Napi::CallbackInfo& info)
|
|
|
997
997
|
Napi::HandleScope scope(env);
|
|
998
998
|
|
|
999
999
|
#if defined(__ANDROID__)
|
|
1000
|
-
string version = "1.9.0-2025-
|
|
1000
|
+
string version = "1.9.0-2025-12-30";
|
|
1001
1001
|
#elif defined(__linux__) || defined(__APPLE__)
|
|
1002
|
-
string version = "1.9.0-2025-
|
|
1002
|
+
string version = "1.9.0-2025-12-30";
|
|
1003
1003
|
#elif _WIN32
|
|
1004
1004
|
string version = "1.9.0-2025-03-03";
|
|
1005
1005
|
#endif
|