feat: Добавлены скрипты для установки Sing-box и Discord, а также для просмотра логов.

This commit is contained in:
2025-12-31 12:26:17 +03:00
parent e1f71f95ad
commit 479a7232b1
4 changed files with 193 additions and 6 deletions

View File

@@ -78,6 +78,7 @@ while ($true) {
Write-Host " [3] 🔄 Обновить статус" -ForegroundColor White
Write-Host " [L] 📜 Просмотр логов" -ForegroundColor White
Write-Host " [U] ❌ Удалить всё (Uninstall)" -ForegroundColor Red
Write-Host " [q] Выход" -ForegroundColor White
Write-Host ""
@@ -88,6 +89,7 @@ while ($true) {
"1" { & "$ScriptDir\scripts\setup-singbox.ps1" }
"2" { & "$ScriptDir\scripts\setup-discord.ps1" }
"3" { continue }
"l" { & "$ScriptDir\scripts\view-logs.ps1" }
"u" { & "$ScriptDir\scripts\uninstall-all.ps1" }
"q" { exit }
}