feat: add update scripts for all tools + Update section in README

- gemini/ugemini_update.sh + .ps1
- codex/ucodex_update.sh + .ps1
- qwen/uqwen_update.sh + .ps1
- README.md: added Update section with one-line and cloned-repo commands
- README.md: removed outdated Codex update instructions

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
delta-cloud-208e
2026-03-08 07:44:38 +00:00
parent 1fa1dbae11
commit 9adb786bec
7 changed files with 557 additions and 7 deletions

View File

@@ -199,13 +199,6 @@ powershell -ExecutionPolicy Bypass -File codex\ucodex_install.ps1
Verify: `codex exec "Hello"`
**Update (Linux):**
```bash
cd unlimitedcoding/codex
git pull
sudo bash update-codex.sh && sudo python3 codex_patcher.py --apply
```
See [codex/README.md](codex/README.md) for details, troubleshooting, and configuration.
### Qwen Code — Install
@@ -268,6 +261,34 @@ cd unlimitedcoding
| Windows PowerShell | `powershell -ExecutionPolicy Bypass -File claude\releases\v2.1.71\install.ps1` |
<!-- MANUAL_VERSION:END -->
## Update
Update scripts check for latest version, download and re-apply patches automatically.
**One-line update (no repo clone needed):**
| Tool | Linux / macOS | Windows (PowerShell) |
|------|---------------|----------------------|
| Claude Code | `curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_update.sh -o /tmp/uclaude_update.sh && sudo bash /tmp/uclaude_update.sh` | `powershell -ExecutionPolicy Bypass -File claude\uclaude_update.ps1` |
| Gemini CLI | `curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/gemini/ugemini_update.sh -o /tmp/ugemini_update.sh && sudo bash /tmp/ugemini_update.sh` | `powershell -ExecutionPolicy Bypass -File gemini\ugemini_update.ps1` |
| Codex CLI | `curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/codex/ucodex_update.sh -o /tmp/ucodex_update.sh && sudo bash /tmp/ucodex_update.sh` | `powershell -ExecutionPolicy Bypass -File codex\ucodex_update.ps1` |
| Qwen Code | `curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/qwen/uqwen_update.sh -o /tmp/uqwen_update.sh && sudo bash /tmp/uqwen_update.sh` | `powershell -ExecutionPolicy Bypass -File qwen\uqwen_update.ps1` |
**Or from cloned repo:**
```bash
git clone --depth 1 https://x-token:cadffcb0a6a3be728ac1ff619bb40c86588f6837@git.sensey24.ru/aibot777/unlimitedcoding.git
cd unlimitedcoding
```
| Tool | Linux / macOS | Windows (PowerShell) |
|------|---------------|----------------------|
| Claude Code | `sudo bash claude/uclaude_update.sh` | `powershell -ExecutionPolicy Bypass -File claude\uclaude_update.ps1` |
| Gemini CLI | `sudo bash gemini/ugemini_update.sh` | `powershell -ExecutionPolicy Bypass -File gemini\ugemini_update.ps1` |
| Codex CLI | `sudo bash codex/ucodex_update.sh` | `powershell -ExecutionPolicy Bypass -File codex\ucodex_update.ps1` |
| Qwen Code | `sudo bash qwen/uqwen_update.sh` | `powershell -ExecutionPolicy Bypass -File qwen\uqwen_update.ps1` |
Each updater: checks current version, downloads latest, re-applies patches.
## Uninstall
Clone repo (if not already cloned):