Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). Version

---

## [0.13.1] — 2026-07-13

Patch release fixing a regression in the audio device pickers.

### Fixed

- **Microphone and output dropdowns now show each device's real name.** After the cpal 0.17 migration, Windows enumerated every input/output device under its generic driver-class label (so the list read "Microphone", "Microphone", "Microphone" with no way to tell them apart). Device enumeration now prefers the specific friendly name Windows exposes, falling back to the generic label only when no specific name is available.

---

## [0.13.0] — 2026-07-12

Reliability hardening release: a full audit of the dictation pipeline plus fixes for both known toggle/language bugs, the last-mile paste path, the audio device layer, settings persistence, and a set of latent concurrency/security issues found in a codebase assessment.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "verbatim-app",
"private": true,
"version": "0.13.0",
"version": "0.13.1",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "verbatim"
version = "0.13.0"
version = "0.13.1"
description = "Verbatim"
authors = ["GalaxyRuler"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Verbatim",
"version": "0.13.0",
"version": "0.13.1",
"identifier": "com.galaxyruler.verbatim",
"build": {
"beforeDevCommand": "bun run dev",
Expand Down
Loading