@bash0816/claude-code 2.1.161-2 → 2.1.177

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
@@ -37,7 +37,7 @@ npm が `claude` bin link を管理する状態になれば、通常の `npm ins
37
37
  Latest audited version / 最新監査済み版:
38
38
 
39
39
  ```sh
40
- npm install -g @bash0816/claude-code@2.1.159-13
40
+ npm install -g @bash0816/claude-code@2.1.161-2
41
41
  ```
42
42
 
43
43
  ## Update / 更新
@@ -256,7 +256,7 @@
256
256
  "tarball_integrity": "sha512-rLEzd8/q4UnTLDSAd3eYgog+G0iZ8y6K8yh0gSxf82d7uOkypYaBUkbmFENuHuzIzCIf9Yy/utCJfp6kQFjUow==",
257
257
  "tarball_sha256": "e87d973bbe58593e06c101196f6417f7d950bf777cb9f1a8ff002ebf987ea066",
258
258
  "tarball_size": 74314760,
259
- "status": "offset_discovered"
259
+ "status": "termux_verified"
260
260
  },
261
261
  "2.1.165": {
262
262
  "wrapper_spec": "@anthropic-ai/claude-code@2.1.165",
@@ -266,6 +266,15 @@
266
266
  "tarball_integrity": "sha512-uGwKxRQGTxh3BZGnX096CLf/2us5lUFnk4KerWhG4WCpRiEUSu4TUDojp/S3SUzA//FpM57fViUW07XL3T19lw==",
267
267
  "tarball_sha256": "6dc6d84624bedaf5ff0948b178fdfc9c2724d8051cb00e70559e292055f7155e",
268
268
  "status": "reverted"
269
+ },
270
+ "2.1.177": {
271
+ "wrapper_spec": "@anthropic-ai/claude-code@2.1.177",
272
+ "native_spec": "@anthropic-ai/claude-code-linux-arm64@2.1.177",
273
+ "entry_js_offset": 231509988,
274
+ "entry_end_offset": 248542413,
275
+ "tarball_integrity": "sha512-qb0K+/xwaZFz9spBUcDX3vNgEFTSNdbDze8AOpU4R9weVrwBY9zAO/OPqxC9qNhb5ZIRnJAZLKiICEeEUHowzA==",
276
+ "tarball_sha256": "dc6f28ab95d8748528a92e207d0f2d1dcd173855d18f11b8f82c5827bbdcb234",
277
+ "status": "offset_discovered"
269
278
  }
270
279
  }
271
280
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "manifest_version": 1,
3
3
  "package_name": "@bash0816/claude-code",
4
- "latest_audited_version": "2.1.159-13",
5
- "latest_candidate_version": "2.1.161-2",
6
- "previous_stable_version": "2.1.159-8",
4
+ "latest_audited_version": "2.1.161-2",
5
+ "latest_candidate_version": "2.1.177",
6
+ "previous_stable_version": "2.1.159-13",
7
7
  "manifest_url": "https://raw.githubusercontent.com/bash0816/ClaudeCode-Termux/main/config/claude-termux-release-manifest.json"
8
8
  }
@@ -565,7 +565,7 @@ function rewriteNativeChunkSource(source) {
565
565
  /\bBun\./g,
566
566
  '__claudeBun.',
567
567
  'Bun property access',
568
- 31,
568
+ 33,
569
569
  );
570
570
  return patched;
571
571
  }
@@ -1227,7 +1227,7 @@ function rewriteNativeChunkSource(source) {
1227
1227
  /\bBun\./g,
1228
1228
  '__claudeBun.',
1229
1229
  'Bun property access',
1230
- 31,
1230
+ 33,
1231
1231
  );
1232
1232
  return patched;
1233
1233
  }
@@ -279,7 +279,7 @@ test('cleanupStaleEntryFiles removes only stale extracted files for the same off
279
279
 
280
280
  function buildSyntheticBundleSource() {
281
281
  const typeofBun = Array.from({ length: 3 }, () => 'typeof Bun').join('; ');
282
- const bunProps = Array.from({ length: 31 }, (_, index) => `Bun.p${index}`).join('; ');
282
+ const bunProps = Array.from({ length: 33 }, (_, index) => `Bun.p${index}`).join('; ');
283
283
  return `function(exports, require, module, __filename, __dirname) { ${typeofBun}; typeof globalThis.Bun; globalThis.Bun; ${bunProps}; }`;
284
284
  }
285
285
 
@@ -301,11 +301,11 @@ test('rewriteNativeChunkSource rejects unexpected replacement counts', () => {
301
301
 
302
302
  assert.throws(
303
303
  () => rewriteNativeChunkSource(source),
304
- /unexpected Bun property access count 30/,
304
+ /unexpected Bun property access count 32/,
305
305
  );
306
306
  });
307
307
 
308
- const tarballPath = path.join(__dirname, '..', 'bash0816-claude-code-2.1.161-2.tgz');
308
+ const tarballPath = path.join(__dirname, '..', 'bash0816-claude-code-2.1.177.tgz');
309
309
 
310
310
  test('tarball contents match the workspace runner and test file', { skip: !fs.existsSync(tarballPath) }, () => {
311
311
  const tarRunner = child_process.execFileSync('tar', ['-xOf', tarballPath, 'package/lib/termux-run-claude-native.sh']);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bash0816/claude-code",
3
- "version": "2.1.161-2",
3
+ "version": "2.1.177",
4
4
  "description": "Unofficial Termux-native Claude Code wrapper with audited native replay",
5
5
  "license": "Apache-2.0",
6
6
  "bin": {