release: Claude Code v2.1.52 (20 patches)

This commit is contained in:
delta-cloud-208e
2026-02-24 09:31:41 +00:00
parent cbc6e45a10
commit 4ca665f26f
7 changed files with 12695 additions and 5 deletions

View File

@@ -24,12 +24,16 @@ All dependencies are installed automatically (git, python3, Node.js, Claude Code
**Linux (Debian/Ubuntu/RHEL/Fedora):** **Linux (Debian/Ubuntu/RHEL/Fedora):**
```bash ```bash
curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=cadffcb0a6a3be728ac1ff619bb40c86588f6837' | sudo bash curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" \
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh \
-o /tmp/uclaude.sh && sudo bash /tmp/uclaude.sh
``` ```
**macOS:** **macOS:**
```bash ```bash
curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=cadffcb0a6a3be728ac1ff619bb40c86588f6837' | bash curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" \
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh \
-o /tmp/uclaude.sh && bash /tmp/uclaude.sh
``` ```
**Windows (PowerShell as Administrator):** **Windows (PowerShell as Administrator):**

View File

@@ -24,12 +24,16 @@
**Linux (Debian/Ubuntu/RHEL/Fedora):** **Linux (Debian/Ubuntu/RHEL/Fedora):**
```bash ```bash
curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=cadffcb0a6a3be728ac1ff619bb40c86588f6837' | sudo bash curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" \
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh \
-o /tmp/uclaude.sh && sudo bash /tmp/uclaude.sh
``` ```
**macOS:** **macOS:**
```bash ```bash
curl -fsSL 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh?token=cadffcb0a6a3be728ac1ff619bb40c86588f6837' | bash curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" \
https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh \
-o /tmp/uclaude.sh && bash /tmp/uclaude.sh
``` ```
**Windows (PowerShell от имени администратора):** **Windows (PowerShell от имени администратора):**

View File

@@ -0,0 +1,26 @@
{
"base_url": "https://ai.37-187-136-86.sslip.io",
"api_key": "ClauderAPI",
"model": "claude-opus-4-6",
"models": [
"claude-opus-4-6",
"claude-sonnet-4-6",
"gpt-5.3-codex",
"gpt-5.2-codex",
"claude-opus-4-5-20251101",
"claude-sonnet-4-5-20250929",
"gemini-3-pro-preview",
"gemini-3-flash-preview",
"qwen3-coder-plus",
"qwen3-coder-flash",
"qwen3.5-coder-plus",
"glm-5",
"glm-4.7"
],
"default_sonnet_model": "claude-sonnet-4-6",
"default_opus_model": "claude-opus-4-6",
"timeout_ms": 3000000,
"theme": "dark",
"complete_onboarding": true,
"target_version": "2.1.50"
}

View File

@@ -1,6 +1,12 @@
{ {
"latest": "2.1.50", "latest": "2.1.52",
"releases": [ "releases": [
{
"version": "2.1.52",
"date": "2026-02-24",
"patches": 20,
"status": "stable"
},
{ {
"version": "2.1.47", "version": "2.1.47",
"date": "2026-02-21", "date": "2026-02-21",

View File

@@ -0,0 +1,3 @@
## 2.1.52
- VS Code: Fixed extension crash on Windows ("command 'claude-vscode.editor.openLast' not found")

12611
claude/releases/v2.1.52/cli.js Executable file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,36 @@
#!/bin/bash
# Claude Code Patcher — standalone installer for v2.1.52
# Usage: sudo bash install.sh [--all] [--skip-cli]
set -e
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
CLI_JS="$SCRIPT_DIR/cli.js"
PATCHER="$SCRIPT_DIR/claude_code_patcher.py"
CONFIG="$SCRIPT_DIR/patcher.config.json"
TARGET="/usr/lib/node_modules/@anthropic-ai/claude-code/cli.js"
[ ! -f "$TARGET" ] && TARGET="/usr/local/lib/node_modules/@anthropic-ai/claude-code/cli.js"
[ ! -f "$TARGET" ] && TARGET="/opt/homebrew/lib/node_modules/@anthropic-ai/claude-code/cli.js"
if [ ! -f "$TARGET" ]; then
echo "ERROR: Claude Code cli.js not found. Install Claude Code first."
exit 1
fi
# Install patched cli.js
if [ "$1" != "--skip-cli" ]; then
echo "Installing patched cli.js..."
BACKUP="$TARGET.bak.$(date +%Y%m%d%H%M%S)"
cp "$TARGET" "$BACKUP"
cp "$CLI_JS" "$TARGET"
node --check "$TARGET" || { cp "$BACKUP" "$TARGET"; echo "SYNTAX ERROR, rolled back"; exit 1; }
echo "Installed. Backup: $BACKUP"
fi
# Apply user settings
if [ -f "$PATCHER" ] && [ -f "$CONFIG" ]; then
echo "Applying user settings..."
python3 "$PATCHER" --config "$CONFIG" --all --skip-cli-patch --skip-update
fi
echo "Done. Run 'claude --version' to verify."