Skip to content

VoiceFlow 0.3.1: reliable delivery and quiet product finish - #18

Merged
qinxujunai merged 2 commits into
masterfrom
codex/voiceflow-v031-release
Aug 12, 2026
Merged

VoiceFlow 0.3.1: reliable delivery and quiet product finish#18
qinxujunai merged 2 commits into
masterfrom
codex/voiceflow-v031-release

Conversation

@qinxujunai

Copy link
Copy Markdown
Owner

What changed

  • prevents stale rapid hotkey taps from replaying as a later recording restart
  • keeps verified paste success silent while preserving explicit clipboard and recovery fallbacks
  • redesigns settings around Status, Dictionary, History, and Settings without model download controls
  • makes bundled and user ASCII vocabulary normalize spelling at safe token boundaries
  • updates the real bilingual capsule demo, public copy, version metadata, and v0.3.1 compliance assets

Why

This release closes the chat-editor delivery regression, removes redundant success UI, and keeps every public surface aligned with the behavior in the installer.

Verification

  • scripts\\verify.py --release: 360 tests plus UI, motion, one-hour recovery, 10,000 state-machine, 5,000 delivery-fault, 50,000 safe-text, and performance gates
  • packaged runtime smoke: passed
  • clean installer lifecycle smoke with both bundled models: passed
  • local in-place upgrade to D:\\Apps\\VoiceFlow: version 0.3.1+260812.1, user-data hash differences 0
  • installer SHA-256: 5c0a79010ba68a99fa497413c59d21b83012a201ab72a8db30b0954af7d70ce0

Known limitation

The Windows installer is not Authenticode signed; README, website, and Release notes disclose this and publish the exact SHA-256.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 733a79523a

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread src/overlay_webview.py
self.sidebar = QListWidget()
self.sidebar.setObjectName("sidebar")
for label in ("状态", "听写", "词典", "历史"):
for label in ("状态", "词典", "历史", "设置"):

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Route View all to the History row

The reordered sidebar puts History at row 2 and Settings at row 3, but the home page's 查看全部 handler still calls self.sidebar.setCurrentRow(3). Clicking it now opens Settings instead of the full dictation history; update that handler alongside the new row mapping.

Useful? React with 👍 / 👎.

Comment thread src/text_cleaner.py
re.IGNORECASE,
)
terms.append((term, pattern))
return sorted(terms, key=lambda item: len(item[0]), reverse=True)

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Deduplicate case-insensitive normalization terms

When a user adds an ASCII term that differs only by case from a bundled or existing term—for example OPENAI alongside OpenAI—both entries produce the same re.IGNORECASE pattern. Because Vocabulary.terms is a set and this sort breaks ties only by length, whichever spelling runs first varies with Python's hash seed, so identical dictation can normalize differently across launches. Deduplicate by a case-insensitive key with an explicit precedence before compiling these patterns.

AGENTS.md reference: AGENTS.md:L44-L44

Useful? React with 👍 / 👎.

@qinxujunai
qinxujunai merged commit bc7e994 into master Aug 12, 2026
5 checks passed
@qinxujunai
qinxujunai deleted the codex/voiceflow-v031-release branch August 12, 2026 17:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant