@bash0816/claude-code 2.1.235 → 2.1.238
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/README.md
CHANGED
|
@@ -724,6 +724,24 @@
|
|
|
724
724
|
"entry_end_offset": 318530584,
|
|
725
725
|
"tarball_integrity": "sha512-IcG8gsVDgQQpsdPa47bZ0JKR1TzfKin5GdBXzwFLhFO5LIyQ6b/HelB7PRkO5BPiz4rplOHICU86PvIJ/gXVuQ==",
|
|
726
726
|
"tarball_sha256": "2ff29f0ef4817bdcb10e4273bdeffa0b6f3d0033e431f557b4399fc36a18476f",
|
|
727
|
+
"status": "termux_verified"
|
|
728
|
+
},
|
|
729
|
+
"2.1.237": {
|
|
730
|
+
"wrapper_spec": "@anthropic-ai/claude-code@2.1.237",
|
|
731
|
+
"native_spec": "@anthropic-ai/claude-code-linux-arm64@2.1.237",
|
|
732
|
+
"entry_js_offset": 294580561,
|
|
733
|
+
"entry_end_offset": 322298246,
|
|
734
|
+
"tarball_integrity": "sha512-+m44UaA9YMj+LvZUF5WWNQoz2rcNxlFbpbJPNWFvQRyBWEINGMddDiJEHqW0YuJWDwlrYWq4KlCRBB2UnaTRaw==",
|
|
735
|
+
"tarball_sha256": "6d4e8bad1f1792a950fc03ce2dd5133e99f79645e61e526b4abbaa168daca2c0",
|
|
736
|
+
"status": "termux_verified"
|
|
737
|
+
},
|
|
738
|
+
"2.1.238": {
|
|
739
|
+
"wrapper_spec": "@anthropic-ai/claude-code@2.1.238",
|
|
740
|
+
"native_spec": "@anthropic-ai/claude-code-linux-arm64@2.1.238",
|
|
741
|
+
"entry_js_offset": 298326353,
|
|
742
|
+
"entry_end_offset": 326443583,
|
|
743
|
+
"tarball_integrity": "sha512-V948Ylqj6a2hCjCRIt/cd6P1z0Zw/jikThzK3kdEWvF4pwS45IhJAkCoZHN3XUTp+LKmCmU7077B3auexHbVVg==",
|
|
744
|
+
"tarball_sha256": "5e25fce4762c0b6490646e78ee78a221c6302de1674874df03e689becf6c14b4",
|
|
727
745
|
"status": "offset_discovered"
|
|
728
746
|
}
|
|
729
747
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"package_name": "@bash0816/claude-code",
|
|
4
|
-
"latest_audited_version": "2.1.
|
|
5
|
-
"latest_candidate_version": "2.1.
|
|
6
|
-
"previous_stable_version": "2.1.
|
|
4
|
+
"latest_audited_version": "2.1.237",
|
|
5
|
+
"latest_candidate_version": "2.1.238",
|
|
6
|
+
"previous_stable_version": "2.1.235",
|
|
7
7
|
"stable_pinned_version": "2.1.220-2",
|
|
8
8
|
"manifest_url": "https://raw.githubusercontent.com/bash0816/ClaudeCode-Termux/main/config/claude-termux-release-manifest.json"
|
|
9
9
|
}
|
|
@@ -572,6 +572,7 @@ function rewriteNativeChunkSource(source) {
|
|
|
572
572
|
const _typeofBunExpected = (() => {
|
|
573
573
|
const _ver = String(process.env.CURRENT_CLAUDE_VERSION || '');
|
|
574
574
|
const _m = _ver.match(/^(\d+)\.(\d+)\.(\d+)/);
|
|
575
|
+
if (_m && (Number(_m[1]) > 2 || Number(_m[2]) > 1 || Number(_m[3]) >= 237)) return 8;
|
|
575
576
|
if (_m && (Number(_m[1]) > 2 || Number(_m[2]) > 1 || Number(_m[3]) >= 200)) return 7;
|
|
576
577
|
return 6;
|
|
577
578
|
})();
|
|
@@ -1528,6 +1529,7 @@ function rewriteNativeChunkSource(source) {
|
|
|
1528
1529
|
const _typeofBunExpected = (() => {
|
|
1529
1530
|
const _ver = String(process.env.CURRENT_CLAUDE_VERSION || '');
|
|
1530
1531
|
const _m = _ver.match(/^(\d+)\.(\d+)\.(\d+)/);
|
|
1532
|
+
if (_m && (Number(_m[1]) > 2 || Number(_m[2]) > 1 || Number(_m[3]) >= 237)) return 8;
|
|
1531
1533
|
if (_m && (Number(_m[1]) > 2 || Number(_m[2]) > 1 || Number(_m[3]) >= 200)) return 7;
|
|
1532
1534
|
return 6;
|
|
1533
1535
|
})();
|