rust-switcher 1.0.11

Windows keyboard layout switcher and text conversion utility
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
param(
  [Parameter(Mandatory = $false)]
  [string]$Version = ''
)

$ErrorActionPreference = 'Stop'

$script = Join-Path $PSScriptRoot 'release\release.ps1'

if (-not (Test-Path $script)) {
  throw "Expected release entrypoint not found: $script"
}

& pwsh -ExecutionPolicy Bypass -NoLogo -NoProfile -File $script $Version