@arcforgelabs/dictate 2026.6.4 → 2026.6.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -257,7 +257,7 @@ function Register-InstalledApp {
257
257
  $keyPath = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\Dictate"
258
258
  New-Item -Force -Path $keyPath | Out-Null
259
259
  New-ItemProperty -Force -Path $keyPath -Name "DisplayName" -Value "Dictate" -PropertyType String | Out-Null
260
- New-ItemProperty -Force -Path $keyPath -Name "DisplayVersion" -Value "2026.6.4" -PropertyType String | Out-Null
260
+ New-ItemProperty -Force -Path $keyPath -Name "DisplayVersion" -Value "2026.6.6" -PropertyType String | Out-Null
261
261
  New-ItemProperty -Force -Path $keyPath -Name "Publisher" -Value "Arc Forge Labs" -PropertyType String | Out-Null
262
262
  New-ItemProperty -Force -Path $keyPath -Name "InstallLocation" -Value $InstallLocation -PropertyType String | Out-Null
263
263
  if (Test-Path $DisplayIcon) {
package/install.ps1 CHANGED
@@ -10,7 +10,7 @@ param(
10
10
  )
11
11
 
12
12
  $ErrorActionPreference = "Stop"
13
- $DictateVersion = "2026.6.4"
13
+ $DictateVersion = "2026.6.6"
14
14
 
15
15
  if (-not $ArchiveUrl) {
16
16
  $ArchiveUrl = "https://github.com/arcforgelabs/dictate/archive/refs/tags/v$DictateVersion.zip"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcforgelabs/dictate",
3
- "version": "2026.6.4",
3
+ "version": "2026.6.6",
4
4
  "description": "Installer shim for Dictate desktop dictation.",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/update.ps1 CHANGED
@@ -10,7 +10,7 @@ param(
10
10
  )
11
11
 
12
12
  $ErrorActionPreference = "Stop"
13
- $DictateVersion = "2026.6.4"
13
+ $DictateVersion = "2026.6.6"
14
14
 
15
15
  if (-not $ArchiveUrl) {
16
16
  $ArchiveUrl = "https://github.com/arcforgelabs/dictate/archive/refs/tags/v$DictateVersion.zip"