diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e6cb69..beacac4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). --- +## [3.0.5] — 2026-04-23 + +### Added +- **Auto Updater** — Implemented a silent background auto-updater using Tauri plugins (`tauri-plugin-updater` and `tauri-plugin-process`). Updates are checked and downloaded in the background. Once an update is ready, a seamless "Liquid Glass" restart prompt appears in the bottom right corner without interrupting active translation. + ## [3.0.4] — 2026-04-23 ### Changed diff --git a/package.json b/package.json index fb3cf16..51837cb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "syncspeak", - "version": "3.0.4", + "version": "3.0.5", "productName": "Sync Speak", "description": "Real-time Hindi to English voice translator for meetings", "homepage": "https://github.com/Soumyadipgithub/SyncSpeak", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index c8403f6..a0ea2b0 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "syncspeak" -version = "3.0.4" +version = "3.0.5" description = "Real-time Hindi to English voice translator for meetings" authors = ["Soumyadip Giri"] license = "MIT"