Skip to content

Commit aa5f5cd

Browse files
PurpleDoubleDclaude
andcommitted
docs: update README, CHANGELOG, and release workflow for v1.3.0
- Add Tauri v2 to tech stack, standalone desktop app to features - Document persistent Whisper server, ComfyUI deep-scan fixes - Update release workflow default tag to v1.3.0 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d660b9d commit aa5f5cd

3 files changed

Lines changed: 15 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
tag:
99
description: 'Release tag (e.g. v1.2.1)'
1010
required: true
11-
default: 'v1.2.1'
11+
default: 'v1.3.0'
1212

1313
permissions:
1414
contents: write

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,14 @@ All notable changes to Locally Uncensored are documented here.
1111
- Ollama context window warning when model has insufficient context
1212
- Automatic embedding model download (nomic-embed-text)
1313
- Per-conversation RAG toggle and source citations
14+
- **Standalone Desktop App**: Full Tauri v2 Rust backend — .exe runs without Node.js or dev server
15+
- 15 Rust commands replacing Vite middleware (process management, downloads, search, agents, voice)
16+
- Frontend auto-detects Tauri vs browser and routes accordingly
17+
- Ollama, ComfyUI, and Whisper auto-start on app launch
18+
- Clean process shutdown on app exit
1419
- **Voice Integration**: Talk to your AI and hear responses
15-
- Push-to-talk microphone button with Web Speech API
20+
- Persistent Whisper server loads model once (~2.5 min), then transcribes in ~2s
21+
- Push-to-talk microphone button with local faster-whisper (100% offline, no cloud)
1622
- Text-to-speech on any assistant message with sentence-level streaming
1723
- Voice settings (voice selection, rate, pitch)
1824
- Auto-send transcribed text option
@@ -26,6 +32,9 @@ All notable changes to Locally Uncensored are documented here.
2632
### Fixed
2733
- Cross-platform Python detection for code execution (Windows Store alias handling)
2834
- Web search now falls back to Brave Search when DuckDuckGo returns CAPTCHA
35+
- ComfyUI auto-discovery now scans up to 4 levels deep (finds nested installs with spaces in path)
36+
- Ollama/ComfyUI spawn no longer opens extra console windows on Windows
37+
- Whisper transcription no longer times out (was re-loading 145MB model on every request)
2938

3039

3140
## [1.0.2] - 2026-03-25

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,15 @@ Tired of switching between Ollama for chat, ComfyUI for images, and another tool
7373
- **Document Chat (RAG)** — Upload PDFs, DOCX, or TXT files and chat with your documents. Hybrid search with confidence scores.
7474
- **Voice Chat** — Talk to your AI with push-to-talk and hear responses with text-to-speech. Sentence-level streaming.
7575
- **AI Agents** — Give your AI a goal and watch it plan, search the web, read/write files, and execute Python code autonomously.
76+
- **Standalone Desktop App** — Full Tauri v2 Rust backend. Download the .exe, run it — no terminal, no dev server, no Node.js.
7677

7778
## Tech Stack
7879

80+
- **Desktop**: Tauri v2 (Rust backend, standalone .exe — no Node.js required)
7981
- **Frontend**: React 19, TypeScript, Tailwind CSS 4, Framer Motion
8082
- **State**: Zustand with localStorage persistence
81-
- **AI Backend**: Ollama (text), ComfyUI (images/video)
82-
- **Build**: Vite 8
83+
- **AI Backend**: Ollama (text), ComfyUI (images/video), faster-whisper (voice)
84+
- **Build**: Vite 8 (dev), Tauri CLI (production)
8385

8486
---
8587

0 commit comments

Comments
 (0)