Skip to content

Commit 178877a

Browse files
chore(main): release 0.8.1 (#146)
* chore(main): release 0.8.1 * chore: sync Cargo.lock to version bump --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent b4190e1 commit 178877a

6 files changed

Lines changed: 18 additions & 7 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.8.0"
2+
".": "0.8.1"
33
}

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818
- **BREAKING**: Renamed the `[model]` section in `config.toml` to `[inference]`. The section still contains a single field, `ollama_url`, but the name now reflects what it actually configures (the inference daemon endpoint, not a model). There is no backward-compatibility shim: if you had a custom `[model]` section, rename it to `[inference]` after upgrading.
1919
- Active model selection is now strictly Option-typed end to end. Ollama's `/api/tags` is the single source of truth: when nothing is installed and nothing is persisted, Thuki refuses to dispatch requests and surfaces a "Pick a model" prompt instead of falling back to a hardcoded slug. The previous `DEFAULT_MODEL_NAME` constant has been removed.
2020

21+
## [0.8.1](https://github.com/quiet-node/thuki/compare/v0.8.0...v0.8.1) (2026-05-07)
22+
23+
24+
### Bug Fixes
25+
26+
* **settings:** redesign About Updates as hero card with check animation ([#145](https://github.com/quiet-node/thuki/issues/145)) ([b4190e1](https://github.com/quiet-node/thuki/commit/b4190e1958b72dd83334aa6f48430dcee644547a))
27+
2128
## [0.8.0](https://github.com/quiet-node/thuki/compare/v0.7.1...v0.8.0) (2026-05-07)
2229

2330

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thuki",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"description": "A floating AI secretary for macOS, powered by local Ollama models",
55
"license": "Apache-2.0",
66
"repository": {

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thuki"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
description = "Thuki: The context-aware floating secretary"
55
authors = ["Logan Nguyen"]
66
license = "Apache-2.0"

src-tauri/tauri.conf.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "Thuki",
4-
"version": "0.8.0",
4+
"version": "0.8.1",
55
"identifier": "com.quietnode.thuki",
66
"build": {
77
"beforeDevCommand": "bun run frontend:dev",
@@ -48,9 +48,13 @@
4848
"csp": "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' blob: asset: https://asset.localhost;",
4949
"assetProtocol": {
5050
"enable": true,
51-
"scope": ["$APPDATA/images/**"]
51+
"scope": [
52+
"$APPDATA/images/**"
53+
]
5254
},
53-
"capabilities": ["default"]
55+
"capabilities": [
56+
"default"
57+
]
5458
},
5559
"macOSPrivateApi": true
5660
},

0 commit comments

Comments
 (0)