# Unlimited Coding 🌐 [English](README.md) | [Русский](README_ru.md) | [δΈ­ζ–‡](README_zh.md) | [EspaΓ±ol](README_es.md) ΠŸΠ°Ρ‚Ρ‡Π΅Π½Π½Ρ‹Π΅ AI-инструмСнты для ΠΊΠΎΠ΄ΠΈΠ½Π³Π° с ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΊΠΎΠΉ кастомных API-эндпоинтов. ## ΠŸΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹ | Папка | Π˜Π½ΡΡ‚Ρ€ΡƒΠΌΠ΅Π½Ρ‚ | Бтатус | |-------|-----------|--------| | [claude/](claude/) | Claude Code | АктивСн (v2.1.112) | | [codex/](codex/) | OpenAI Codex CLI | **АктивСн (v0.122.0)** | | [gemini/](gemini/) | Gemini CLI | **АктивСн (v0.35.3)** | | [qwen/](qwen/) | Qwen Code | **АктивСн (v0.14.5)** | | antigravity/ | Antigravity | ΠŸΠ»Π°Π½ΠΈΡ€ΡƒΠ΅Ρ‚ΡΡ | ## Быстрый старт ### ΠŸΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° зависимостСй ΠŸΠ΅Ρ€Π΅Π΄ установкой ΡƒΠ±Π΅Π΄ΠΈΡ‚Π΅ΡΡŒ, Ρ‡Ρ‚ΠΎ установлСн Node.js v24.13+: ```bash node --version # Linux (Debian/Ubuntu): sudo apt update && sudo apt install -y nodejs npm # Linux (RHEL/Fedora): sudo dnf install -y nodejs npm # macOS: brew install node # Windows (PowerShell ΠΎΡ‚ администратора): winget install OpenJS.NodeJS ``` ### Claude Code β€” Установка Π”Π²Π΅ ΠΊΠΎΠΌΠ°Π½Π΄Ρ‹ Π½Π° любой ΠΏΠ»Π°Ρ‚Ρ„ΠΎΡ€ΠΌΠ΅: **Linux / macOS:** ```bash npm config set @anthropic-ai:registry https://npm.sensey24.ru/ npm install -g @anthropic-ai/claude-code ``` **Windows (PowerShell):** ```powershell npm config set "@anthropic-ai:registry" "https://npm.sensey24.ru/" npm install -g @anthropic-ai/claude-code ``` > ВрСбуСтся Node.js. Π£ΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ: https://nodejs.org/ ### ΠΠ»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Π° β€” автоустановщик (Ссли Π½Π΅Ρ‚ Node.js) УстанавливаСт Node.js, Claude Code ΠΈ ΠΏΠ°Ρ‚Ρ‡ΠΈ автоматичСски. **Linux (Debian/Ubuntu/RHEL/Fedora):** ```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:** ```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 ΠΎΡ‚ ΠΈΠΌΠ΅Π½ΠΈ администратора):** ```powershell $h=@{Authorization="token cadffcb0a6a3be728ac1ff619bb40c86588f6837"} Set-ExecutionPolicy Bypass -Scope Process -Force iwr "https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.ps1" -OutFile "$env:TEMP\uclaude_install.ps1" -Headers $h . "$env:TEMP\uclaude_install.ps1" ``` ### Gemini CLI β€” Установка (ΠΎΠ΄Π½ΠΎΠΉ ΠΊΠΎΠΌΠ°Π½Π΄ΠΎΠΉ) > Установщик ставит Node.js (Ссли Π½Π΅Ρ‚), npm-ΠΏΠ°ΠΊΠ΅Ρ‚, env vars ΠΈ `~/.gemini/settings.json`. > **Никаких Ρ€ΡƒΡ‡Π½Ρ‹Ρ… вставок bash/PowerShell ΠΊΠΎΠ΄Π° Π½Π΅ Π½ΡƒΠΆΠ½ΠΎ** β€” просто запуститС ΠžΠ”ΠΠ£ ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ. **Linux (Debian/Ubuntu/RHEL/Fedora):** ```bash curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" \ https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/gemini/ugemini_install.sh \ -o /tmp/ugemini.sh && sudo bash /tmp/ugemini.sh ``` **macOS (Intel & Apple Silicon):** ```bash curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" \ https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/gemini/ugemini_install.sh \ -o /tmp/ugemini.sh && sudo bash /tmp/ugemini.sh ``` **Windows (PowerShell ΠΎΡ‚ ΠΈΠΌΠ΅Π½ΠΈ администратора):** ```powershell $h=@{Authorization="token cadffcb0a6a3be728ac1ff619bb40c86588f6837"} Set-ExecutionPolicy Bypass -Scope Process -Force iwr "https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/gemini/ugemini_install.ps1" -OutFile "$env:TEMP\ugemini_install.ps1" -Headers $h . "$env:TEMP\ugemini_install.ps1" ``` **Windows (CMD ΠΎΡ‚ ΠΈΠΌΠ΅Π½ΠΈ администратора):** ```cmd powershell -NoProfile -ExecutionPolicy Bypass -Command "$h=@{Authorization='token cadffcb0a6a3be728ac1ff619bb40c86588f6837'}; iwr 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/gemini/ugemini_install.ps1' -OutFile \"$env:TEMP\ugemini_install.ps1\" -Headers $h; & \"$env:TEMP\ugemini_install.ps1\"" ``` ПослС установки β€” **пСрСзапуститС Ρ‚Π΅Ρ€ΠΌΠΈΠ½Π°Π»** ΠΈ ΠΏΡ€ΠΎΠ²Π΅Ρ€ΡŒΡ‚Π΅: ``` gemini -p "ΠŸΡ€ΠΈΠ²Π΅Ρ‚" ``` ΠŸΠΎΠ΄Ρ€ΠΎΠ±Π½Π΅Π΅: [gemini/README.md](gemini/README.md) ### Codex CLI β€” Установка > Codex CLI β€” это compiled Rust binary (Π½Π΅ npm). Установщик скачиваСт Π΅Π³ΠΎ с GitHub releases, > примСняСт config-ΠΏΠ°Ρ‚Ρ‡ΠΈ ΠΈ настраиваСт `OPENAI_API_KEY` / `OPENAI_BASE_URL` автоматичСски. **Linux (Debian/Ubuntu/RHEL/Fedora):** ```bash curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" \ https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/codex/ucodex_install.sh \ -o /tmp/ucodex_install.sh && sudo bash /tmp/ucodex_install.sh ``` **macOS (Intel & Apple Silicon):** ```bash curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" \ https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/codex/ucodex_install.sh \ -o /tmp/ucodex_install.sh && sudo bash /tmp/ucodex_install.sh ``` > macOS установит Mach-O Π±ΠΈΠ½Π°Ρ€ΡŒ ΠΏΠΎΠ΄ ваш ARCH (x86_64 / arm64), env-ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Π½Π½Ρ‹Π΅ Ρ‡Π΅Ρ€Π΅Π· > `launchctl setenv` + `~/.zshrc`. Если запросит β€” Π²Π²Π΅Π΄ΠΈΡ‚Π΅ ΠΏΠ°Ρ€ΠΎΠ»ΡŒ для `sudo`. **Windows (PowerShell ΠΎΡ‚ ΠΈΠΌΠ΅Π½ΠΈ администратора):** ```powershell $h=@{Authorization="token cadffcb0a6a3be728ac1ff619bb40c86588f6837"} Set-ExecutionPolicy Bypass -Scope Process -Force iwr "https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/codex/ucodex_install.ps1" -OutFile "$env:TEMP\ucodex_install.ps1" -Headers $h . "$env:TEMP\ucodex_install.ps1" ``` **Windows (CMD ΠΎΡ‚ ΠΈΠΌΠ΅Π½ΠΈ администратора):** ```cmd powershell -NoProfile -ExecutionPolicy Bypass -Command "$h=@{Authorization='token cadffcb0a6a3be728ac1ff619bb40c86588f6837'}; iwr 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/codex/ucodex_install.ps1' -OutFile \"$env:TEMP\ucodex_install.ps1\" -Headers $h; & \"$env:TEMP\ucodex_install.ps1\"" ``` > Windows: Π±ΠΈΠ½Π°Ρ€ΡŒ ставится Π² `%LOCALAPPDATA%\Programs\codex\codex.exe` ΠΈ добавляСтся Π² PATH > ΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚Π΅Π»Ρ. ПослС установки **пСрСзапуститС CMD/PowerShell** для ΠΏΠΎΠ΄Ρ…Π²Π°Ρ‚Π° env vars. ΠŸΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ°: `codex exec "ΠŸΡ€ΠΈΠ²Π΅Ρ‚"` ΠŸΠΎΠ΄Ρ€ΠΎΠ±Π½Π΅Π΅: [codex/README.md](codex/README.md) ### Qwen Code β€” Установка > Установщик подтянСт Node.js Ссли Π΅Π³ΠΎ Π½Π΅Ρ‚, поставит npm-ΠΏΠ°ΠΊΠ΅Ρ‚ ΠΈ ΠΏΡ€ΠΈΠΌΠ΅Π½ΠΈΡ‚ settings. **Linux (Debian/Ubuntu/RHEL/Fedora):** ```bash curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" \ https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/qwen/uqwen_install.sh \ -o /tmp/uqwen.sh && sudo bash /tmp/uqwen.sh ``` **macOS (Intel & Apple Silicon):** ```bash curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" \ https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/qwen/uqwen_install.sh \ -o /tmp/uqwen.sh && sudo bash /tmp/uqwen.sh ``` **Windows (PowerShell ΠΎΡ‚ ΠΈΠΌΠ΅Π½ΠΈ администратора):** ```powershell $h=@{Authorization="token cadffcb0a6a3be728ac1ff619bb40c86588f6837"} Set-ExecutionPolicy Bypass -Scope Process -Force iwr "https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/qwen/uqwen_install.ps1" -OutFile "$env:TEMP\uqwen_install.ps1" -Headers $h . "$env:TEMP\uqwen_install.ps1" ``` **Windows (CMD ΠΎΡ‚ ΠΈΠΌΠ΅Π½ΠΈ администратора):** ```cmd powershell -NoProfile -ExecutionPolicy Bypass -Command "$h=@{Authorization='token cadffcb0a6a3be728ac1ff619bb40c86588f6837'}; iwr 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/qwen/uqwen_install.ps1' -OutFile \"$env:TEMP\uqwen_install.ps1\" -Headers $h; & \"$env:TEMP\uqwen_install.ps1\"" ``` ΠŸΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ°: `qwen -p "ΠŸΡ€ΠΈΠ²Π΅Ρ‚"` ΠŸΠΎΠ΄Ρ€ΠΎΠ±Π½Π΅Π΅: [qwen/README.md](qwen/README.md) ### Ручная установка ΠΈΠ· Ρ€Π΅Π»ΠΈΠ·Π° ΠšΠ»ΠΎΠ½ΠΈΡ€ΡƒΠΉΡ‚Π΅ Ρ€Π΅ΠΏΠΎΠ·ΠΈΡ‚ΠΎΡ€ΠΈΠΉ ΠΈ запуститС установщик: ```bash git clone --depth 1 https://x-token:cadffcb0a6a3be728ac1ff619bb40c86588f6837@git.sensey24.ru/aibot777/unlimitedcoding.git cd unlimitedcoding ``` | ΠŸΠ»Π°Ρ‚Ρ„ΠΎΡ€ΠΌΠ° | Команда | |-----------|---------| | Linux / macOS | `sudo bash claude/releases/v2.1.112/install.sh` | | Windows CMD | `claude\releases\v2.1.112\install.bat` | | Windows PowerShell | `powershell -ExecutionPolicy Bypass -File claude\releases\v2.1.112\install.ps1` | ## ОбновлСниС Π‘ΠΊΡ€ΠΈΠΏΡ‚Ρ‹ обновлСния ΠΏΡ€ΠΎΠ²Π΅Ρ€ΡΡŽΡ‚ послСднюю Π²Π΅Ρ€ΡΠΈΡŽ, ΡΠΊΠ°Ρ‡ΠΈΠ²Π°ΡŽΡ‚ ΠΈ ΠΏΠ΅Ρ€Π΅ΠΏΡ€ΠΈΠΌΠ΅Π½ΡΡŽΡ‚ ΠΏΠ°Ρ‚Ρ‡ΠΈ автоматичСски. ### Claude Code β€” ОбновлСниС **Linux / macOS:** ```bash 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 ``` **Windows (PowerShell ΠΎΡ‚ ΠΈΠΌΠ΅Π½ΠΈ администратора):** ```powershell $h=@{Authorization="token cadffcb0a6a3be728ac1ff619bb40c86588f6837"} iwr "https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_update.ps1" -OutFile "$env:TEMP\uclaude_update.ps1" -Headers $h Set-ExecutionPolicy Bypass -Scope Process -Force . "$env:TEMP\uclaude_update.ps1" ``` ### Gemini CLI β€” ОбновлСниС **Linux / macOS:** ```bash 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 ``` **Windows (PowerShell ΠΎΡ‚ ΠΈΠΌΠ΅Π½ΠΈ администратора):** ```powershell $h=@{Authorization="token cadffcb0a6a3be728ac1ff619bb40c86588f6837"} iwr "https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/gemini/ugemini_update.ps1" -OutFile "$env:TEMP\ugemini_update.ps1" -Headers $h Set-ExecutionPolicy Bypass -Scope Process -Force . "$env:TEMP\ugemini_update.ps1" ``` **Windows (CMD ΠΎΡ‚ ΠΈΠΌΠ΅Π½ΠΈ администратора):** ```cmd powershell -NoProfile -ExecutionPolicy Bypass -Command "$h=@{Authorization='token cadffcb0a6a3be728ac1ff619bb40c86588f6837'}; iwr 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/gemini/ugemini_update.ps1' -OutFile \"$env:TEMP\ugemini_update.ps1\" -Headers $h; & \"$env:TEMP\ugemini_update.ps1\"" ``` ### Codex CLI β€” ОбновлСниС **Linux / macOS:** ```bash 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 ``` **Windows (PowerShell ΠΎΡ‚ ΠΈΠΌΠ΅Π½ΠΈ администратора):** ```powershell $h=@{Authorization="token cadffcb0a6a3be728ac1ff619bb40c86588f6837"} iwr "https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/codex/ucodex_update.ps1" -OutFile "$env:TEMP\ucodex_update.ps1" -Headers $h Set-ExecutionPolicy Bypass -Scope Process -Force . "$env:TEMP\ucodex_update.ps1" ``` **Windows (CMD ΠΎΡ‚ ΠΈΠΌΠ΅Π½ΠΈ администратора):** ```cmd powershell -NoProfile -ExecutionPolicy Bypass -Command "$h=@{Authorization='token cadffcb0a6a3be728ac1ff619bb40c86588f6837'}; iwr 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/codex/ucodex_update.ps1' -OutFile \"$env:TEMP\ucodex_update.ps1\" -Headers $h; & \"$env:TEMP\ucodex_update.ps1\"" ``` ### Qwen Code β€” ОбновлСниС **Linux / macOS:** ```bash 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 ``` **Windows (PowerShell ΠΎΡ‚ ΠΈΠΌΠ΅Π½ΠΈ администратора):** ```powershell $h=@{Authorization="token cadffcb0a6a3be728ac1ff619bb40c86588f6837"} iwr "https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/qwen/uqwen_update.ps1" -OutFile "$env:TEMP\uqwen_update.ps1" -Headers $h Set-ExecutionPolicy Bypass -Scope Process -Force . "$env:TEMP\uqwen_update.ps1" ``` **Windows (CMD ΠΎΡ‚ ΠΈΠΌΠ΅Π½ΠΈ администратора):** ```cmd powershell -NoProfile -ExecutionPolicy Bypass -Command "$h=@{Authorization='token cadffcb0a6a3be728ac1ff619bb40c86588f6837'}; iwr 'https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/qwen/uqwen_update.ps1' -OutFile \"$env:TEMP\uqwen_update.ps1\" -Headers $h; & \"$env:TEMP\uqwen_update.ps1\"" ``` ## Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ **Linux / macOS:** ```bash # Claude Code curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" \ https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_uninstall.sh \ -o /tmp/uclaude_uninstall.sh && sudo bash /tmp/uclaude_uninstall.sh # Gemini CLI curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" \ https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/gemini/ugemini_uninstall.sh \ -o /tmp/ugemini_uninstall.sh && sudo bash /tmp/ugemini_uninstall.sh # Codex CLI curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" \ https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/codex/ucodex_uninstall.sh \ -o /tmp/ucodex_uninstall.sh && sudo bash /tmp/ucodex_uninstall.sh # Qwen Code curl -fsSL -H "Authorization: token cadffcb0a6a3be728ac1ff619bb40c86588f6837" \ https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/qwen/uqwen_uninstall.sh \ -o /tmp/uqwen_uninstall.sh && sudo bash /tmp/uqwen_uninstall.sh ``` **Windows (PowerShell ΠΎΡ‚ ΠΈΠΌΠ΅Π½ΠΈ администратора):** ```powershell $h=@{Authorization="token cadffcb0a6a3be728ac1ff619bb40c86588f6837"} Set-ExecutionPolicy Bypass -Scope Process -Force # Claude Code iwr "https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_uninstall.ps1" -OutFile "$env:TEMP\uclaude_uninstall.ps1" -Headers $h . "$env:TEMP\uclaude_uninstall.ps1" # Gemini CLI iwr "https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/gemini/ugemini_uninstall.ps1" -OutFile "$env:TEMP\ugemini_uninstall.ps1" -Headers $h . "$env:TEMP\ugemini_uninstall.ps1" # Codex CLI iwr "https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/codex/ucodex_uninstall.ps1" -OutFile "$env:TEMP\ucodex_uninstall.ps1" -Headers $h . "$env:TEMP\ucodex_uninstall.ps1" # Qwen Code iwr "https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/qwen/uqwen_uninstall.ps1" -OutFile "$env:TEMP\uqwen_uninstall.ps1" -Headers $h . "$env:TEMP\uqwen_uninstall.ps1" ``` ΠšΠ°ΠΆΠ΄Ρ‹ΠΉ дСинсталлятор удаляСт: Π±ΠΈΠ½Π°Ρ€ΡŒ/npm-ΠΏΠ°ΠΊΠ΅Ρ‚, Π΄ΠΈΡ€Π΅ΠΊΡ‚ΠΎΡ€ΠΈΡŽ настроСк, ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Π½Π½Ρ‹Π΅ окруТСния, npm registry config. ## Π§Ρ‚ΠΎ устанавливаСтся автоматичСски | ΠšΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ | Linux | macOS | Windows | |-----------|-------|-------|---------| | Git | apt/dnf/yum | brew | winget | | Python 3 | apt/dnf/yum | brew | winget | | Node.js v24.13+ | nodesource | brew | winget | | Claude Code | npm | npm | npm | | ΠŸΠ°Ρ‚Ρ‡Π΅Π½Π½Ρ‹ΠΉ cli.js | Π·Π°ΠΌΠ΅Π½Π° с бэкапом | Π·Π°ΠΌΠ΅Π½Π° с бэкапом | Π·Π°ΠΌΠ΅Π½Π° с бэкапом | | Настройки | всС ΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚Π΅Π»ΠΈ | всС ΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚Π΅Π»ΠΈ | всС ΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚Π΅Π»ΠΈ |