Skip to content

v0.1.5

Choose a tag to compare

@github-actions github-actions released this 14 Aug 08:44
b61e850

Changes

  • feat(windows): publish agav-windows-x64.exe and document uninstall (#37) (b61e850)
  • fix(install): keep install.ps1 pure ASCII so PowerShell 5.1 can parse it (#35) (2aa00b1)
  • fix: Improve terminal handling, user guidance, and add unit tests (#34) (b261230)

Installation

macOS

# Apple Silicon (M1/M2/M3/M4)
curl -fsSL https://github.com/prapaa-ai/agav/releases/download/v0.1.5/agav-darwin-arm64 -o agav
chmod +x agav && sudo mv agav /usr/local/bin/

# Intel
curl -fsSL https://github.com/prapaa-ai/agav/releases/download/v0.1.5/agav-darwin-x64 -o agav
chmod +x agav && sudo mv agav /usr/local/bin/

Linux

# x64
curl -fsSL https://github.com/prapaa-ai/agav/releases/download/v0.1.5/agav-linux-x64 -o agav
chmod +x agav && sudo mv agav /usr/local/bin/

# ARM64
curl -fsSL https://github.com/prapaa-ai/agav/releases/download/v0.1.5/agav-linux-arm64 -o agav
chmod +x agav && sudo mv agav /usr/local/bin/

Windows

# Download and install (x64; ARM64 runs this under emulation)
New-Item -ItemType Directory -Force -Path "$env:LOCALAPPDATA\agav" | Out-Null
Invoke-WebRequest -Uri "https://github.com/prapaa-ai/agav/releases/download/v0.1.5/agav-windows-x64.exe" -OutFile "$env:LOCALAPPDATA\agav\agav.exe"

# Add to PATH (run once)
$dir = "$env:LOCALAPPDATA\agav"
$path = [Environment]::GetEnvironmentVariable("Path", "User")
if ($path -notlike "*$dir*") {
  [Environment]::SetEnvironmentVariable("Path", "$dir;$path", "User")
}

What's Changed

Full Changelog: v0.1.4...v0.1.5