@bash0816/claude-code 2.1.159-3 → 2.1.159-4
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.
|
@@ -199,6 +199,15 @@
|
|
|
199
199
|
"tarball_integrity": "sha512-c8dXbuQdrotGWll46GlnXm5IPpORK2VrBSosCmI6f8t7Snc/3F58fX0MbIjJ/ycXpY0aaKuOnufCuxf7wi1Xqw==",
|
|
200
200
|
"tarball_sha256": "0b551634f11742310ba3b6344fb7912ba1ed8ee0ef4702eab0099d31b4eeb070",
|
|
201
201
|
"status": "offset_discovered"
|
|
202
|
+
},
|
|
203
|
+
"2.1.159-4": {
|
|
204
|
+
"wrapper_spec": "@anthropic-ai/claude-code@2.1.159",
|
|
205
|
+
"native_spec": "@anthropic-ai/claude-code-linux-arm64@2.1.159",
|
|
206
|
+
"entry_js_offset": 223232708,
|
|
207
|
+
"entry_end_offset": 238749397,
|
|
208
|
+
"tarball_integrity": "sha512-c8dXbuQdrotGWll46GlnXm5IPpORK2VrBSosCmI6f8t7Snc/3F58fX0MbIjJ/ycXpY0aaKuOnufCuxf7wi1Xqw==",
|
|
209
|
+
"tarball_sha256": "0b551634f11742310ba3b6344fb7912ba1ed8ee0ef4702eab0099d31b4eeb070",
|
|
210
|
+
"status": "offset_discovered"
|
|
202
211
|
}
|
|
203
212
|
}
|
|
204
213
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"package_name": "@bash0816/claude-code",
|
|
4
4
|
"latest_audited_version": "2.1.157",
|
|
5
|
-
"latest_candidate_version": "2.1.159-
|
|
5
|
+
"latest_candidate_version": "2.1.159-4",
|
|
6
6
|
"previous_stable_version": "2.1.153-4",
|
|
7
7
|
"manifest_url": "https://raw.githubusercontent.com/bash0816/ClaudeCode-Termux/main/config/claude-termux-release-manifest.json"
|
|
8
8
|
}
|
|
@@ -557,7 +557,9 @@ async function main() {
|
|
|
557
557
|
}
|
|
558
558
|
}
|
|
559
559
|
|
|
560
|
-
main().
|
|
560
|
+
main().then(() => {
|
|
561
|
+
process.exit(process.exitCode ?? 0);
|
|
562
|
+
}).catch(error => {
|
|
561
563
|
if (error && error.code === 'CLAUDE_TERMUX_OFFICIAL_UPDATE_BLOCKED') {
|
|
562
564
|
console.error(BLOCK_MESSAGE);
|
|
563
565
|
process.exit(error.status || 1);
|
|
@@ -1078,7 +1080,9 @@ async function main() {
|
|
|
1078
1080
|
}
|
|
1079
1081
|
}
|
|
1080
1082
|
|
|
1081
|
-
main().
|
|
1083
|
+
main().then(() => {
|
|
1084
|
+
process.exit(process.exitCode ?? 0);
|
|
1085
|
+
}).catch(error => {
|
|
1082
1086
|
if (error && error.code === 'CLAUDE_TERMUX_OFFICIAL_UPDATE_BLOCKED') {
|
|
1083
1087
|
console.error(BLOCK_MESSAGE);
|
|
1084
1088
|
process.exit(error.status || 1);
|