Skip to content

Releases: avalonreset/hyperyap

HyperYap v1.0.9

24 Apr 20:01

Choose a tag to compare

HyperYap v1.0.9

Download the package for your platform.

Windows

  • hyperyap_1.0.9_x64-setup.exe
  • Includes the optional workstation hotkey helper for CapsLock/Mouse Back recording, smart terminal paste, smart terminal copy, and basic paste undo.
  • The PowerShell installer installs the latest BenjaminTerm release from GitHub. For v1.0.9, that is BenjaminTerm v1.4.3.

Linux

  • HyperYap_amd64.AppImage
  • HyperYap_amd64.deb

macOS

  • HyperYap_aarch64_darwin.dmg for Apple Silicon
  • HyperYap_x86_64_darwin.dmg for Intel Macs

The NVIDIA Parakeet speech model runs locally. Installers download or bundle the model depending on platform build settings.

Quick install (PowerShell)

irm https://raw.githubusercontent.com/avalonreset/hyperyap/main/install.ps1 | iex

HyperYap v1.0.8

24 Apr 02:37

Choose a tag to compare

HyperYap v1.0.8

Download the package for your platform.

Windows

  • hyperyap_1.0.8_x64-setup.exe
  • Includes the Windows hotkey daemon for F13/CapsLock/Mouse Back recording, smart terminal paste, smart terminal copy, and basic paste undo.

Linux

  • HyperYap_amd64.AppImage
  • HyperYap_amd64.deb

macOS

  • HyperYap_aarch64_darwin.dmg for Apple Silicon
  • HyperYap_x86_64_darwin.dmg for Intel Macs

The NVIDIA Parakeet speech model runs locally. Installers download or bundle the model depending on platform build settings.

Quick install (PowerShell)

irm https://raw.githubusercontent.com/avalonreset/hyperyap/main/install.ps1 | iex

v1.0.7 - Smart Paste Hook Responsiveness

22 Apr 21:40

Choose a tag to compare

Smart Paste Hook Responsiveness

This patch hardens HyperYap's Windows smart screenshot paste path for fast terminal workflows. Smart paste clipboard waits and image conversion now run off the low-level keyboard hook owner thread, keeping Ctrl+V interception responsive while a screenshot paste is resolving.

Fixes

  • Prevents smart paste work from blocking the keyboard hook message pump.
  • Adds an in-flight guard so repeated Ctrl+V presses do not leak raw V characters during screenshot paste handling.
  • Skips only HyperYap's own recent synthetic key events, while still allowing user remappers and macro tools to trigger smart paste.
  • Keeps the native prepared screenshot path pipeline from v1.0.6 intact.

Install

Download hyperyap_1.0.7_x64-setup.exe below and run it. The installer updates HyperYap and the bundled hotkey daemon.

Validation

  • cargo fmt / cargo clippy -- -D warnings in hotkeys/
  • cargo clippy -- -D warnings in src-tauri/
  • pnpm tauri build
  • Windows installer SHA256: F810F9BDA3397F6E99B903F47B94E9F219C5FA7C36220066E80F70FFA1C46754

Ubuntu validation remains required before treating cross-platform behavior as fully verified.

v1.0.6 - Native Smart Paste Pipeline

21 Apr 23:31

Choose a tag to compare

Changes

  • Added a native prepared screenshot pipeline for Win+Shift+S and PrintScreen.
  • Saves screenshot PNG paths before terminal Ctrl+V, which removes the slow PowerShell path from the normal flow.
  • Keeps PowerShell image handling as a fallback only.
  • Makes speech-to-text paste terminal-aware on Windows so vanilla WezTerm and Codex receive Ctrl+Shift+V text paste.
  • Updated the HyperYap wiki with the new smart paste design and detached installer-run rule.

Validation

  • Windows local install verified from the new installer.
  • User stress-tested vanilla WezTerm screenshot paste and reported it was effectively instant.
  • pnpm build passed.
  • hotkeys cargo clippy --release -- -D warnings passed.
  • src-tauri cargo clippy --release -- -D warnings passed.

Installer

  • SHA256: 12DA46066F626A93FFCCC541804CE6EAC6F3FE35CD6CD5C09623C3897242CAD0

v1.0.5 - WezTerm Smart Paste Fix

21 Apr 23:00

Choose a tag to compare

Fixes

  • Makes smart screenshot paste work in vanilla WezTerm by converting images to saved PNG paths, then pasting with the terminal paste shortcut.
  • Tracks recent Win+Shift+S and PrintScreen screenshot intent so fast Ctrl+V waits for Windows clipboard image data instead of falling back to stale text.
  • Keeps the Ctrl state guard from v1.0.4 and updates the bundled AutoHotkey fallback script.

Installer

  • Asset: hyperyap_1.0.5_x64-setup.exe
  • SHA256: CB3EC9E68C7CE419BF557A5884C4394581827F2E4C5E216B323A25A89F1877AF

v1.0.4 - Smart Paste Ctrl State Guard

21 Apr 22:12

Choose a tag to compare

Fixes

  • Adds a 750ms safety window to the tracked Ctrl state used by smart paste.
  • Keeps the fast Ctrl+V race fix while preventing stale Ctrl state from affecting later plain v keystrokes.
  • Reduces side-effect risk from missed keyup events in the low-level keyboard hook.

Installer

  • Windows NSIS installer: hyperyap_1.0.4_x64-setup.exe
  • SHA256: DD02BEDA1BC1AAFC813054E32524592C279F46CE746AFDB661FCBACBF76A31FD

Verification

  • pnpm lint
  • cargo clippy -- -D warnings in src-tauri
  • cargo clippy -- -D warnings in hotkeys
  • pnpm tauri build

v1.0.3 - Fast Ctrl V Interception Race

21 Apr 22:05

Choose a tag to compare

Fixes

  • Fixes a fast Ctrl+V interception race where Windows could report Ctrl as not held and let a raw v reach BenjaminTerm before smart paste handled the screenshot.
  • Tracks physical Ctrl state inside the low-level keyboard hook instead of relying only on an instantaneous async key-state check.
  • Suppresses the matching V keyup even if Ctrl is released while smart paste is handling the clipboard.

Installer

  • Windows NSIS installer: hyperyap_1.0.3_x64-setup.exe
  • SHA256: F9BB5B118B2BC49DC5C867FA4CFDB6CE18278EBA65F60679052B3E7418C6A0AC

Verification

  • pnpm lint
  • cargo clippy -- -D warnings in src-tauri
  • cargo clippy -- -D warnings in hotkeys
  • pnpm tauri build

v1.0.2 - Pending Screenshot Paste Guard

21 Apr 21:57

Choose a tag to compare

Fixes

  • Prevents terminal smart paste from typing a stray v when Windows has not finished publishing a screenshot to the clipboard.
  • Keeps normal terminal text paste fast by only waiting long when the clipboard has neither text nor image.
  • Waits up to 5 seconds for pending screenshot clipboard state before suppressing the paste.
  • Extends the clipboard image read retry window to 5 seconds in both the Rust daemon and legacy AutoHotkey script path.

Installer

  • Windows NSIS installer: hyperyap_1.0.2_x64-setup.exe
  • SHA256: E6189A49842153E7CB7B93C3E92CB0A858023DE5A0D670F9A458BF4195DCE869

Verification

  • pnpm lint
  • cargo clippy -- -D warnings in src-tauri
  • cargo clippy -- -D warnings in hotkeys
  • pnpm tauri build

v1.0.1 - Smart Screenshot Paste Reliability

21 Apr 21:19

Choose a tag to compare

Fixes

  • Hardened smart screenshot paste for terminals by waiting for Windows clipboard image formats before falling back to normal paste.
  • Added STA PowerShell retry handling for Snipping Tool clipboard timing.
  • Restores the exact screenshot image that was pasted instead of guessing from the latest file.
  • Updated the legacy AutoHotkey smart paste scripts with the same retry behavior.

Installer

  • Windows NSIS installer: hyperyap_1.0.1_x64-setup.exe
  • SHA256: 1C2D7910439933694376909F1D26452EDA509AE44C14D306CC55194775E6ED1A

Verification

  • pnpm lint
  • cargo clippy -- -D warnings in src-tauri
  • cargo clippy -- -D warnings in hotkeys
  • pnpm tauri build

HyperYap v1.0.0

07 Apr 18:45

Choose a tag to compare

HyperYap v1.0.0

Download and run the installer. It handles everything:

  • HyperYap voice engine
  • Hotkey daemon (F13/CapsLock/Mouse Back for recording)
  • NVIDIA Parakeet speech model (~440MB, downloaded on install)

Quick install (PowerShell)

irm https://raw.githubusercontent.com/avalonreset/hyperyap/main/install.ps1 | iex