@arcforgelabs/dictate 2026.6.6 → 2026.6.20

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.6" -PropertyType String | Out-Null
260
+ New-ItemProperty -Force -Path $keyPath -Name "DisplayVersion" -Value "2026.6.20" -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.6"
13
+ $DictateVersion = "2026.6.20"
14
14
 
15
15
  if (-not $ArchiveUrl) {
16
16
  $ArchiveUrl = "https://github.com/arcforgelabs/dictate/archive/refs/tags/v$DictateVersion.zip"
package/install.sh CHANGED
@@ -11,6 +11,7 @@ DESKTOP_DIR="${XDG_DATA_HOME:-$HOME/.local/share}/applications"
11
11
  AUTOSTART_DIR="${XDG_CONFIG_HOME:-$HOME/.config}/autostart"
12
12
  ICON_DIR="$INSTALL_DIR/share/icons"
13
13
  ICON_PATH="$ICON_DIR/dictate-simple.png"
14
+ DESKTOP_PATH="$DESKTOP_DIR/Dictate.desktop"
14
15
  CONFIG_DIR="${XDG_CONFIG_HOME:-$HOME/.config}/dictate"
15
16
  CONFIG_PATH="$CONFIG_DIR/config.yaml"
16
17
  DEFAULT_CONFIG_SOURCE="$SCRIPT_DIR/config/default-config.yaml"
@@ -143,8 +144,8 @@ install -m 644 "$SCRIPT_DIR/assets/dictate.png" "$ICON_PATH"
143
144
 
144
145
  echo "Installing desktop entry ..."
145
146
  mkdir -p "$DESKTOP_DIR"
146
- rm -f "$DESKTOP_DIR/dictate-settings.desktop"
147
- cat > "$DESKTOP_DIR/dictate.desktop" <<EOF
147
+ rm -f "$DESKTOP_DIR/dictate-settings.desktop" "$DESKTOP_DIR/dictate.desktop"
148
+ cat > "$DESKTOP_PATH" <<EOF
148
149
  [Desktop Entry]
149
150
  Name=Dictate
150
151
  Comment=Dictate into the focused app
@@ -189,10 +190,6 @@ install_desktop_ui() {
189
190
  local shell_src="$SCRIPT_DIR/ui-shell"
190
191
  local target="$BIN_DIR/dictate-ui-shell"
191
192
 
192
- if command -v dictate-ui-shell >/dev/null 2>&1; then
193
- echo "Desktop UI shell already installed: $(command -v dictate-ui-shell)"
194
- return 0
195
- fi
196
193
  if [ ! -d "$shell_src" ]; then
197
194
  echo "Desktop UI shell sources not present; skipping the optional UI."
198
195
  print_ui_hint
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcforgelabs/dictate",
3
- "version": "2026.6.6",
3
+ "version": "2026.6.20",
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.6"
13
+ $DictateVersion = "2026.6.20"
14
14
 
15
15
  if (-not $ArchiveUrl) {
16
16
  $ArchiveUrl = "https://github.com/arcforgelabs/dictate/archive/refs/tags/v$DictateVersion.zip"