@bash0816/claude-code 2.1.224 → 2.1.226
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
|
@@ -652,6 +652,15 @@
|
|
|
652
652
|
"entry_end_offset": 286057058,
|
|
653
653
|
"tarball_integrity": "sha512-a16Zlqhr1CXO5vsfsw7FcvLbG2nqBAXWmvMmyXtNW+f9pAJm91GMJE9wK79cIyO9InZRLN06wYWyPcp1cx/nNg==",
|
|
654
654
|
"tarball_sha256": "711712d0526f0b266c961a5591ddca55979cd581ac67b0a0ffd19e5f4e2df2c7",
|
|
655
|
+
"status": "termux_verified"
|
|
656
|
+
},
|
|
657
|
+
"2.1.226": {
|
|
658
|
+
"wrapper_spec": "@anthropic-ai/claude-code@2.1.226",
|
|
659
|
+
"native_spec": "@anthropic-ai/claude-code-linux-arm64@2.1.226",
|
|
660
|
+
"entry_js_offset": 264236564,
|
|
661
|
+
"entry_end_offset": 288213155,
|
|
662
|
+
"tarball_integrity": "sha512-/USq3R28PunkjZZfyweEgUAlR7npgrruZmb47j3oRRxlFWk5Jurj+THiwhl/AKxUgkxaxb35cr6DCAeXNlQ/jg==",
|
|
663
|
+
"tarball_sha256": "fbbb2610daff70d118c8dda8aeffee92b38f20aa464e758c3d09e3c83ab6ef56",
|
|
655
664
|
"status": "offset_discovered"
|
|
656
665
|
}
|
|
657
666
|
}
|
|
@@ -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.223",
|
|
7
|
-
"stable_pinned_version": "2.1.
|
|
4
|
+
"latest_audited_version": "2.1.224",
|
|
5
|
+
"latest_candidate_version": "2.1.226",
|
|
6
|
+
"previous_stable_version": "2.1.223-1",
|
|
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
|
}
|
|
@@ -13,6 +13,11 @@ const vm = require('vm');
|
|
|
13
13
|
const scriptPath = path.join(__dirname, 'termux-run-claude-native.sh');
|
|
14
14
|
const script = fs.readFileSync(scriptPath, 'utf8');
|
|
15
15
|
|
|
16
|
+
// Fixtures below don't include the /background isEnabled pattern, so
|
|
17
|
+
// rewriteNativeChunkSource must run with the patch disabled (its default)
|
|
18
|
+
// regardless of what the ambient shell happens to export.
|
|
19
|
+
delete process.env.CLAUDE_CODE_DISABLE_AGENT_VIEW;
|
|
20
|
+
|
|
16
21
|
function extractBlock(marker, trailer) {
|
|
17
22
|
const start = script.indexOf(marker);
|
|
18
23
|
assert.notEqual(start, -1, `missing marker: ${marker}`);
|