Commit Graph

228 Commits

Author SHA1 Message Date
delta-cloud-208e
889d3af956 feat(codex): auto-update to v0.123.0
Binary: 0.122.0 -> 0.123.0
Config synced from claude_code_patcher.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-23 04:06:32 +00:00
delta-cloud-208e
3381797148 fix(ps1): strip all non-ASCII Unicode from PowerShell scripts
Windows PowerShell 5.1 reads .ps1 files without BOM as Windows-1251 by
default. Em-dashes (-) and other Unicode chars in string literals get
mangled into invalid bytes (e.g. "session - no" becomes garbage that
breaks the parser with "Unexpected token" errors.

Replaced em-dash, en-dash, smart quotes, ellipsis, NBSP and arrows with
their ASCII equivalents across all 12 .ps1 scripts (install/update/
uninstall for claude/gemini/codex/qwen).

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-21 10:53:15 +00:00
delta-cloud-208e
cb088c4e9a fix(gemini): update.ps1 must set $env:GEMINI_API_KEY in current session
Previously env vars were only set inside the PowerShell-fallback branch
(when Python was missing). If Python was present, gemini_patcher.py wrote
env vars via setx — which only updates the registry, not the current
PowerShell process. Result: user runs update, then `gemini`, and gets
prompted for API key because process.env.GEMINI_API_KEY is empty.

Fix: always set env vars in BOTH User scope (persistent across sessions)
AND $env: (current session) at the end of the script, regardless of which
branch was taken. Also fix malformed JSON in trustedFolders.json fallback
(escaped quotes were inconsistent).

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-21 10:49:45 +00:00
delta-cloud-208e
82830c971d fix(qwen): patch regional dashscope endpoints + inline validator
Qwen patcher had two issues:
1. Only patched dashscope.aliyuncs.com but missed regional endpoints
   (cn-hongkong, dashscope-intl, dashscope-us). Users in those regions
   would still hit Aliyun directly.
2. --validate raised ModuleNotFoundError (referenced removed updater/
   package). Replaced with self-contained inline checker — 13 GREEN
   targets covering cli.js markers, settings.json, env vars.

Also bump Codex version to v0.122.0 across all READMEs (was v0.116.0).

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-21 10:26:55 +00:00
delta-cloud-208e
0a3de88e65 fix(gemini): conseca.toml enum value autoEdit, not auto_edit
Gemini v0.35+ accepts only camelCase 'autoEdit' in safety_checker modes
(strict zod schema). Older patcher inserted snake_case 'auto_edit' which
blocks gemini startup with: "Invalid enum value. Expected 'default' |
'autoEdit' | 'yolo' | 'plan', received 'auto_edit'".

Changes:
- conseca.toml writer now emits 'autoEdit'
- self-heal: detect existing 'auto_edit' on disk and rewrite to 'autoEdit'
- settingsSchema.js patcher: accept both 'auto_edit' (v0.32.x) and
  'autoEdit' (v0.35+) source variants

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-21 10:16:37 +00:00
delta-cloud-208e
95d53ba750 docs: sync all localized READMEs (RU/ZH/ES) with current install flow
- Update product table versions everywhere (claude v2.1.112, codex v0.116.0, gemini v0.35.3, qwen v0.14.5)
- Replace outdated bash heredocs with one-liner installer scripts
- Add Windows PowerShell + Windows CMD entry points
- Update claude/README*.md: drop git clone snippets, use uclaude_install.ps1 one-liner

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-21 10:06:22 +00:00
delta-cloud-208e
1bbeedf8e2 docs(gemini): use one-liner script as primary install method, drop manual paste
User feedback: pasting bash heredocs into PowerShell fails. Make the
ugemini_install.ps1/.sh wrapper the one and only command users need —
no need to copy bash/PS code blocks. Wrapper handles Node.js, npm,
env vars, settings.json, trustedFolders.json automatically.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-21 09:59:09 +00:00
delta-cloud-208e
3ef64ccf0c docs: clearly separate bash vs PowerShell vs CMD setup for Gemini
Users were copying bash heredocs (cat << EOF) into PowerShell where they fail.
Split into three explicit sections per shell with warning at top.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-21 09:55:56 +00:00
delta-cloud-208e
feeef468db docs: bump gemini version in product table to v0.35.3
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-21 09:30:53 +00:00
delta-cloud-208e
f7cf0b79fd docs: cross-platform install/update/uninstall instructions for codex/gemini/qwen
- Add Linux / macOS / Windows PowerShell / Windows CMD sections to all CLI READMEs
- Update product table versions (claude v2.1.112, codex v0.116.0, qwen v0.14.5)
- Make qwen install/update/uninstall scripts macOS-aware (sedi wrapper, launchctl, /Users scan, ~/.zshrc)
- Make gemini uninstall script macOS-aware (matching install/update)
- Fix CRLF line endings in qwen/gemini uninstall scripts

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-21 09:30:16 +00:00
delta-cloud-208e
1320f13f5c feat(codex): auto-update to v0.122.0
Binary: 0.121.0 -> 0.122.0
Config synced from claude_code_patcher.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-21 02:06:17 +00:00
delta-cloud-208e
c56a4dc427 release: Claude Code v2.1.112 (28 patches) 2026-04-17 12:01:09 +00:00
delta-cloud-208e
c2bdb579e9 release: Claude Code v2.1.112 (28 patches) 2026-04-17 00:05:17 +00:00
delta-cloud-208e
b13b44b98f feat: add Claude Opus 4.7 support — new flagship model
- patcher.config.json: opus-4-7 added to models list, set as default opus
- PS1 installers: ANTHROPIC_DEFAULT_OPUS_MODEL=claude-opus-4-7
- CLAUDE_CUSTOM_MODELS includes opus-4-7 first
- v2.1.111 cli.js with patches applied

Opus 4.7 (released 2026-04-16):
- 1M context, 128K output
- New xhigh effort level
- Adaptive thinking (no more budget_tokens)
- High-res vision (2576px), high token efficiency

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-16 17:52:09 +00:00
delta-cloud-208e
84405df361 release: Claude Code v2.1.111 (28 patches) 2026-04-16 17:38:47 +00:00
delta-cloud-208e
8136439210 release: Claude Code v2.1.110 (28 patches) 2026-04-16 06:01:29 +00:00
delta-cloud-208e
99d55d3ab2 feat(codex): auto-update to v0.121.0
Binary: 0.120.0 -> 0.121.0
Config synced from claude_code_patcher.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-16 02:08:28 +00:00
delta-cloud-208e
faf43fe2a0 release: Claude Code v2.1.110 (28 patches) 2026-04-16 00:02:51 +00:00
delta-cloud-208e
08e8456ddf release: Claude Code v2.1.109 (28 patches) 2026-04-15 06:00:48 +00:00
delta-cloud-208e
a5fdd651a8 release: Claude Code v2.1.108 (28 patches) 2026-04-15 00:02:53 +00:00
delta-cloud-208e
e9ea2fc345 release: Claude Code v2.1.107 (28 patches) 2026-04-14 12:00:30 +00:00
delta-cloud-208e
22071416d4 release: Claude Code v2.1.105 (28 patches) 2026-04-14 00:04:49 +00:00
delta-cloud-208e
a50f195034 release: Claude Code v2.1.104 (28 patches) 2026-04-13 00:07:09 +00:00
delta-cloud-208e
e09659daa4 release: Claude Code v2.1.104 (28 patches) 2026-04-12 06:08:45 +00:00
delta-cloud-208e
7c8d540324 release: Claude Code v2.1.101 (28 patches) 2026-04-12 00:01:36 +00:00
delta-cloud-208e
fd359755ec feat(codex): auto-update to v0.120.0
Binary: 0.119.0 -> 0.120.0
Config synced from claude_code_patcher.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-11 14:08:02 +00:00
delta-cloud-208e
7d75fabcd2 feat(codex): auto-update to v0.119.0
Binary: 0.118.0 -> 0.119.0
Config synced from claude_code_patcher.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-11 02:09:02 +00:00
delta-cloud-208e
e7feeae713 release: Claude Code v2.1.101 (28 patches) 2026-04-11 00:06:13 +00:00
delta-cloud-208e
af460e8f12 release: Claude Code v2.1.100 (28 patches) 2026-04-10 06:07:58 +00:00
delta-cloud-208e
f4f9d1c253 release: Claude Code v2.1.98 (28 patches) 2026-04-10 00:00:43 +00:00
delta-cloud-208e
69f1c9e200 release: Claude Code v2.1.97 (28 patches) 2026-04-09 00:06:45 +00:00
delta-cloud-208e
6e2ac9d1e0 release: Claude Code v2.1.96 (28 patches) 2026-04-08 12:10:26 +00:00
delta-cloud-208e
a66c80c2fd release: Claude Code v2.1.96 (28 patches) 2026-04-08 06:09:24 +00:00
delta-cloud-208e
c1cd42033b release: Claude Code v2.1.94 (28 patches) 2026-04-08 00:02:30 +00:00
delta-cloud-208e
0b165a4275 release: Claude Code v2.1.92 (28 patches) 2026-04-07 00:03:08 +00:00
delta-cloud-208e
7a1fd49278 release: Claude Code v2.1.92 (28 patches) 2026-04-06 00:07:18 +00:00
delta-cloud-208e
0ae94bff18 release: Claude Code v2.1.92 (28 patches) 2026-04-05 00:00:52 +00:00
delta-cloud-208e
1a8b363c67 release: Claude Code v2.1.92 (28 patches) 2026-04-04 06:05:59 +00:00
delta-cloud-208e
737e425a85 release: Claude Code v2.1.91 (28 patches) 2026-04-04 00:04:16 +00:00
delta-cloud-208e
57d4f54ab2 release: Claude Code v2.1.91 (28 patches) 2026-04-03 12:02:08 +00:00
delta-cloud-208e
c5d079ebe5 release: Claude Code v2.1.91 (28 patches) 2026-04-03 00:02:56 +00:00
delta-cloud-208e
6bb8fcbeb4 release: Claude Code v2.1.90 (28 patches) 2026-04-02 18:06:34 +00:00
delta-cloud-208e
8facd76d82 release: Claude Code v2.1.90 (28 patches) 2026-04-02 00:01:47 +00:00
delta-cloud-208e
5301078300 release: Claude Code v2.1.89 (28 patches) 2026-04-01 06:06:33 +00:00
delta-cloud-208e
4d64122170 release: Gemini CLI v0.35.3 (6 patches) 2026-04-01 03:05:04 +00:00
delta-cloud-208e
aedec5606d feat(codex): auto-update to v0.118.0
Binary: 0.117.0 -> 0.118.0
Config synced from claude_code_patcher.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-01 02:08:41 +00:00
delta-cloud-208e
9b1a7a4bef release: Claude Code v2.1.87 (28 patches) 2026-04-01 00:00:11 +00:00
delta-cloud-208e
9ed1257fc9 release: Claude Code v2.1.87 (28 patches) 2026-03-31 12:08:56 +00:00
delta-cloud-208e
4e2408e048 release: Gemini CLI v0.35.3 (6 patches) 2026-03-31 03:01:33 +00:00
delta-cloud-208e
52c53e79a6 release: Claude Code v2.1.88 (28 patches) 2026-03-31 00:06:22 +00:00