Skip to content

Commit c85533d

Browse files
authored
Merge pull request #96 from open-webui/main
0.0.8
2 parents 228cf1a + 4db0faf commit c85533d

15 files changed

Lines changed: 865 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.0.8] - 2026-04-11
9+
10+
### Added
11+
12+
- **Voice Input.** System-wide push-to-talk voice transcription. Press the shortcut from any app to record audio, which is automatically transcribed and sent to your active chat.
13+
- **Voice Input Settings.** Configurable global hotkey and enable/disable toggle in Settings, with a default of Shift+Cmd+Space (macOS) or Shift+Ctrl+Space (Windows/Linux).
14+
- **Audio Feedback.** Bundled start and stop chime sounds play when recording begins and ends.
15+
16+
### Fixed
17+
18+
- **Shortcut Recorder on macOS.** Shortcut inputs now use physical key codes instead of character values, fixing Alt key combinations producing unicode characters like √ instead of V.
19+
820
## [0.0.7] - 2026-04-11
921

1022
### Fixed

electron.vite.config.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ export default defineConfig({
1515
input: {
1616
index: resolve(__dirname, 'src/preload/index.ts'),
1717
'content-preload': resolve(__dirname, 'src/preload/content-preload.ts'),
18-
'spotlight-preload': resolve(__dirname, 'src/preload/spotlight-preload.ts')
18+
'spotlight-preload': resolve(__dirname, 'src/preload/spotlight-preload.ts'),
19+
'voice-input-preload': resolve(__dirname, 'src/preload/voice-input-preload.ts')
1920
}
2021
}
2122
}
@@ -25,7 +26,8 @@ export default defineConfig({
2526
rollupOptions: {
2627
input: {
2728
index: resolve(__dirname, 'src/renderer/index.html'),
28-
spotlight: resolve(__dirname, 'src/renderer/spotlight.html')
29+
spotlight: resolve(__dirname, 'src/renderer/spotlight.html'),
30+
'voice-input': resolve(__dirname, 'src/renderer/voice-input.html')
2931
}
3032
}
3133
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "open-webui",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"license": "AGPL-3.0",
55
"description": "Open WebUI Desktop",
66
"main": "./out/main/index.js",

resources/sounds/chime-start.wav

16 KB
Binary file not shown.

resources/sounds/chime-stop.wav

16 KB
Binary file not shown.

0 commit comments

Comments
 (0)