Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions config/claude-native-audited-versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -778,6 +778,16 @@
"tarball_integrity": "sha512-Qbn5HnZbYeW4GdifVkDGfcVKqj3/f3U9sfVd3LEaUZh08CcS8D/ptJ76zuBfQUGHJHfToAdNVfak86uJ84b1Dg==",
"tarball_sha256": "668662e7b5d91a93cff6c75736e60f3d5d3bed4cbe077ae4feefc63ad1253f4d",
"status": "termux_verified"
},
"2.1.248": {
"wrapper_spec": "@anthropic-ai/[email protected]",
"native_spec": "@anthropic-ai/[email protected]",
"entry_format": "esm-chunked",
"tarball_integrity": "sha512-2qwjgGuzlVfkJC7UWUjl86hiv5Ok5vtVxAZ/5fpdhzQKuBLlxrJJu3z5tVI+VrO/x/hcqx5kJuy9/O9K4eT+Kg==",
"tarball_sha256": "bd2e2b6ebace34039b073b0f586d521ec09c895fa2a39de8d1c86423ae5884ca",
"status": "offset_discovered",
"num_modules": 1946,
"byte_count": 136124175
}
}
}
2 changes: 1 addition & 1 deletion config/claude-termux-release-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 1,
"package_name": "@bash0816/claude-code",
"latest_audited_version": "2.1.245",
"latest_candidate_version": "2.1.245",
"latest_candidate_version": "2.1.248",
"previous_stable_version": "2.1.241",
"stable_pinned_version": "2.1.220-2",
"manifest_url": "https://raw.githubusercontent.com/bash0816/ClaudeCode-Termux/main/config/claude-termux-release-manifest.json"
Expand Down
10 changes: 10 additions & 0 deletions packages/claude-code/config/claude-native-audited-versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -778,6 +778,16 @@
"tarball_integrity": "sha512-Qbn5HnZbYeW4GdifVkDGfcVKqj3/f3U9sfVd3LEaUZh08CcS8D/ptJ76zuBfQUGHJHfToAdNVfak86uJ84b1Dg==",
"tarball_sha256": "668662e7b5d91a93cff6c75736e60f3d5d3bed4cbe077ae4feefc63ad1253f4d",
"status": "termux_verified"
},
"2.1.248": {
"wrapper_spec": "@anthropic-ai/[email protected]",
"native_spec": "@anthropic-ai/[email protected]",
"entry_format": "esm-chunked",
"tarball_integrity": "sha512-2qwjgGuzlVfkJC7UWUjl86hiv5Ok5vtVxAZ/5fpdhzQKuBLlxrJJu3z5tVI+VrO/x/hcqx5kJuy9/O9K4eT+Kg==",
"tarball_sha256": "bd2e2b6ebace34039b073b0f586d521ec09c895fa2a39de8d1c86423ae5884ca",
"status": "offset_discovered",
"num_modules": 1946,
"byte_count": 136124175
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 1,
"package_name": "@bash0816/claude-code",
"latest_audited_version": "2.1.245",
"latest_candidate_version": "2.1.245",
"latest_candidate_version": "2.1.248",
"previous_stable_version": "2.1.241",
"stable_pinned_version": "2.1.220-2",
"manifest_url": "https://raw.githubusercontent.com/bash0816/ClaudeCode-Termux/main/config/claude-termux-release-manifest.json"
Expand Down
2 changes: 1 addition & 1 deletion packages/claude-code/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bash0816/claude-code",
"version": "2.1.245",
"version": "2.1.248",
"description": "Unofficial Termux-native Claude Code wrapper with audited native replay",
"license": "GPL-3.0-only",
"bin": {
Expand Down
2 changes: 2 additions & 0 deletions scripts/add-candidate-metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ function main() {
if (!(offsets.byte_count > 0)) {
throw new Error('esm-chunked offsets missing byte_count');
}
versionEntry.num_modules = offsets.num_modules;
versionEntry.byte_count = offsets.byte_count;
} else {
if (!(offsets.entry_js_offset > 0) || !(offsets.entry_end_offset > offsets.entry_js_offset)) {
throw new Error('legacy-cjs offsets missing entry_js_offset/entry_end_offset');
Expand Down