Skip to content

Commit fd7f35f

Browse files
authored
Merge pull request #32 from odest/release-please--branches--master
chore: release master
2 parents c1594b9 + 0bf8b82 commit fd7f35f

File tree

13 files changed

+118
-12
lines changed

13 files changed

+118
-12
lines changed

.release-please-manifest.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
".": "0.1.8",
3-
"apps/native": "0.1.8",
4-
"apps/web": "0.1.7",
5-
"packages/ui": "0.1.8",
6-
"packages/i18n": "0.1.7",
2+
".": "0.1.9",
3+
"apps/native": "0.1.9",
4+
"apps/web": "0.1.8",
5+
"packages/ui": "0.1.9",
6+
"packages/i18n": "0.1.8",
77
"packages/eslint-config": "0.1.0",
88
"packages/typescript-config": "0.1.0"
99
}

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Changelog
22

3+
## [0.1.9](https://github.com/odest/katip/compare/v0.1.8...v0.1.9) (2025-12-16)
4+
5+
6+
### Features
7+
8+
* **ai:** add cloud LLM provider support with API key auth ([c8edd84](https://github.com/odest/katip/commit/c8edd841ac9d6caea10537180f061c667175f479))
9+
* **android:** enable Transformers.js transcription on Android ([c91653b](https://github.com/odest/katip/commit/c91653b6eafa19ecf770aa5a7c83229b2a777f09))
10+
* **db:** persist action item and segment edits to database ([ab04641](https://github.com/odest/katip/commit/ab046418653db8784e6c15c9ac5d7a8b68c439a2))
11+
* **landing:** add basic landing page with download options ([ced4f82](https://github.com/odest/katip/commit/ced4f82914e38be497b9552c6a4d9d37e899d6e7))
12+
* transcription improvements, unified routing, and UX enhancements ([c1594b9](https://github.com/odest/katip/commit/c1594b9a4e3909d71754dcb3f55fb856943716d8))
13+
* **ui:** add copy to clipboard functionality for summary and actions ([0386207](https://github.com/odest/katip/commit/0386207d3d36352722afb4000dda490ab7d5865f))
14+
15+
16+
### Bug Fixes
17+
18+
* **native:** sort migrations by filename for cross-platform consistency ([6e86723](https://github.com/odest/katip/commit/6e86723d4dff99695991a57ac5f9a091f3c2dcbb))
19+
* **transcription:** prevent restart after navigation and improve retry handling ([7e5ca82](https://github.com/odest/katip/commit/7e5ca82b57b3392aab98ad81fdb5ed134f5e8844))
20+
21+
22+
### Code Refactoring
23+
24+
* improve avatar delete handling and set home route ([4e2b0b4](https://github.com/odest/katip/commit/4e2b0b425b96af324766d06cefff0a37023bdfe2))
25+
* **native:** simplify model selection to single file picker ([a520d5a](https://github.com/odest/katip/commit/a520d5a6565bb03433749de65d270fb322aade2a))
26+
* **routing:** unify home route to /home for both web and native ([8ea750e](https://github.com/odest/katip/commit/8ea750e7d0b4430a108235d9c2cd205d7c292214))
27+
* **ui:** improve state management and fix multiple transcription bugs ([d565459](https://github.com/odest/katip/commit/d565459b1811d1eb9eba12680405851110ef073b))
28+
329
## [0.1.8](https://github.com/odest/katip/compare/v0.1.7...v0.1.8) (2025-12-12)
430

531

apps/native/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Changelog
22

3+
## [0.1.9](https://github.com/odest/katip/compare/v0.1.8...v0.1.9) (2025-12-16)
4+
5+
6+
### Features
7+
8+
* **ai:** add cloud LLM provider support with API key auth ([c8edd84](https://github.com/odest/katip/commit/c8edd841ac9d6caea10537180f061c667175f479))
9+
* **android:** enable Transformers.js transcription on Android ([c91653b](https://github.com/odest/katip/commit/c91653b6eafa19ecf770aa5a7c83229b2a777f09))
10+
* transcription improvements, unified routing, and UX enhancements ([c1594b9](https://github.com/odest/katip/commit/c1594b9a4e3909d71754dcb3f55fb856943716d8))
11+
12+
13+
### Bug Fixes
14+
15+
* **native:** sort migrations by filename for cross-platform consistency ([6e86723](https://github.com/odest/katip/commit/6e86723d4dff99695991a57ac5f9a091f3c2dcbb))
16+
17+
18+
### Code Refactoring
19+
20+
* **native:** simplify model selection to single file picker ([a520d5a](https://github.com/odest/katip/commit/a520d5a6565bb03433749de65d270fb322aade2a))
21+
* **routing:** unify home route to /home for both web and native ([8ea750e](https://github.com/odest/katip/commit/8ea750e7d0b4430a108235d9c2cd205d7c292214))
22+
323
## [0.1.8](https://github.com/odest/katip/compare/v0.1.7...v0.1.8) (2025-12-12)
424

525

apps/native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "native",
33
"private": true,
4-
"version": "0.1.8",
4+
"version": "0.1.9",
55
"type": "module",
66
"scripts": {
77
"dev": "next dev --turbopack",

apps/native/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 = "katip"
3-
version = "0.1.8"
3+
version = "0.1.9"
44
description = "A Tauri App"
55
authors = ["you"]
66
edition = "2021"

apps/native/src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "katip",
4-
"version": "0.1.8",
4+
"version": "0.1.9",
55
"identifier": "com.katip.app",
66
"build": {
77
"beforeDevCommand": "pnpm dev",

apps/web/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [0.1.8](https://github.com/odest/katip/compare/v0.1.7...v0.1.8) (2025-12-16)
4+
5+
6+
### Features
7+
8+
* improve audio processing and resolve RSC security vulnerabilities ([4795b77](https://github.com/odest/katip/commit/4795b778aba018ed7af96ffc1f77b8c9667a51e4))
9+
* **landing:** add basic landing page with download options ([ced4f82](https://github.com/odest/katip/commit/ced4f82914e38be497b9552c6a4d9d37e899d6e7))
10+
11+
12+
### Bug Fixes
13+
14+
* **deps:** upgrade next.js and react to resolve new RSC vulnerabilities ([bb3d376](https://github.com/odest/katip/commit/bb3d37699c0ffcfdf394daba2e0046c57674a6eb))
15+
316
## [0.1.7](https://github.com/odest/katip/compare/v0.1.6...v0.1.7) (2025-12-12)
417

518

apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web",
3-
"version": "0.1.7",
3+
"version": "0.1.8",
44
"type": "module",
55
"private": true,
66
"scripts": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "katip",
3-
"version": "0.1.8",
3+
"version": "0.1.9",
44
"private": true,
55
"scripts": {
66
"build": "turbo build",

packages/i18n/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## [0.1.8](https://github.com/odest/katip/compare/v0.1.7...v0.1.8) (2025-12-16)
4+
5+
6+
### Features
7+
8+
* **ai:** add cloud LLM provider support with API key auth ([c8edd84](https://github.com/odest/katip/commit/c8edd841ac9d6caea10537180f061c667175f479))
9+
* improve audio processing and resolve RSC security vulnerabilities ([4795b77](https://github.com/odest/katip/commit/4795b778aba018ed7af96ffc1f77b8c9667a51e4))
10+
* **native:** replace hound with symphonia to support multiple formats ([d85f9e4](https://github.com/odest/katip/commit/d85f9e47a2b1a3ffb81319d1df67921fed8ad54b))
11+
* transcription improvements, unified routing, and UX enhancements ([c1594b9](https://github.com/odest/katip/commit/c1594b9a4e3909d71754dcb3f55fb856943716d8))
12+
* **ui:** add copy to clipboard functionality for summary and actions ([0386207](https://github.com/odest/katip/commit/0386207d3d36352722afb4000dda490ab7d5865f))
13+
14+
15+
### Bug Fixes
16+
17+
* **deps:** upgrade next.js and react to resolve new RSC vulnerabilities ([bb3d376](https://github.com/odest/katip/commit/bb3d37699c0ffcfdf394daba2e0046c57674a6eb))
18+
* **transcription:** prevent restart after navigation and improve retry handling ([7e5ca82](https://github.com/odest/katip/commit/7e5ca82b57b3392aab98ad81fdb5ed134f5e8844))
19+
20+
21+
### Code Refactoring
22+
23+
* **native:** simplify model selection to single file picker ([a520d5a](https://github.com/odest/katip/commit/a520d5a6565bb03433749de65d270fb322aade2a))
24+
325
## [0.1.7](https://github.com/odest/katip/compare/v0.1.6...v0.1.7) (2025-12-12)
426

527

0 commit comments

Comments
 (0)