release: Claude Code v2.1.66 (20 patches)

This commit is contained in:
delta-cloud-208e
2026-03-04 06:04:02 +00:00
parent 1513e3a97d
commit bd2d365966
10 changed files with 13135 additions and 10 deletions

View File

@@ -108,12 +108,43 @@ powershell -ExecutionPolicy Bypass -File claude\uclaude_update.ps1 --force
### Gemini CLI — Install
**Step 1 — Install patched CLI:**
**Linux / macOS:**
```bash
curl -fsSL https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/gemini/ugemini_install.sh | sudo bash
npm config set @google:registry https://npm.sensey24.ru/
npm install -g @google/gemini-cli
```
See [gemini/README.md](gemini/README.md) for manual install and details.
**Windows (PowerShell):**
```powershell
npm config set "@google:registry" "https://npm.sensey24.ru/"
npm install -g @google/gemini-cli
```
> Node.js required. Install from https://nodejs.org/ if not present.
**Step 2 — Configure settings and environment:**
```bash
# Set environment variables
echo 'export GEMINI_API_KEY="ClauderAPI"' >> ~/.bashrc
echo 'export GOOGLE_GEMINI_BASE_URL="https://ai.37-187-136-86.sslip.io"' >> ~/.bashrc
source ~/.bashrc
# Configure auth (switch from OAuth to API key)
mkdir -p ~/.gemini
cat > ~/.gemini/settings.json << 'EOF'
{
"security": { "auth": { "selectedType": "gemini-api-key" } },
"telemetry": { "enabled": false, "logPrompts": false }
}
EOF
```
**Step 3 — Verify:** `gemini -p "Hello"`
See [gemini/README.md](gemini/README.md) for Windows instructions, alternative install methods and details.
### Manual install from release
@@ -127,9 +158,9 @@ cd unlimitedcoding
<!-- MANUAL_VERSION:START -->
| Platform | Command |
|----------|---------|
| Linux / macOS | `sudo bash claude/releases/v2.1.63/install.sh` |
| Windows CMD | `claude\releases\v2.1.63\install.bat` |
| Windows PowerShell | `powershell -ExecutionPolicy Bypass -File claude\releases\v2.1.63\install.ps1` |
| Linux / macOS | `sudo bash claude/releases/v2.1.66/install.sh` |
| Windows CMD | `claude\releases\v2.1.66\install.bat` |
| Windows PowerShell | `powershell -ExecutionPolicy Bypass -File claude\releases\v2.1.66\install.ps1` |
<!-- MANUAL_VERSION:END -->
## What Gets Installed Automatically