2 Commits

Author SHA1 Message Date
Gitea Actions
81407b51ee chore: bump version to 0.2.46 [skip ci] 2026-03-24 02:04:26 +00:00
Claude
a3a45cb308 Gate set_executable_permissions call with #[cfg(unix)]
All checks were successful
Release / Bump version and tag (push) Successful in 3s
Release / Build App (macOS) (push) Successful in 1m18s
Release / Build App (Windows) (push) Successful in 3m11s
Release / Build App (Linux) (push) Successful in 3m31s
The method is cfg(unix) but the call site wasn't gated, causing a
compile error on Windows.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 19:04:19 -07:00
4 changed files with 4 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "voice-to-notes",
"version": "0.2.45",
"version": "0.2.46",
"description": "Desktop app for transcribing audio/video with speaker identification",
"type": "module",
"scripts": {

View File

@@ -1,6 +1,6 @@
[package]
name = "voice-to-notes"
version = "0.2.45"
version = "0.2.46"
description = "Voice to Notes — desktop transcription with speaker identification"
authors = ["Voice to Notes Contributors"]
license = "MIT"

View File

@@ -339,6 +339,7 @@ impl SidecarManager {
Err(e) if e.raw_os_error() == Some(13) => {
// Permission denied — fix permissions and retry once
eprintln!("[sidecar-rs] Permission denied, fixing permissions and retrying...");
#[cfg(unix)]
if let Some(dir) = path.parent() {
Self::set_executable_permissions(dir);
}

View File

@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Voice to Notes",
"version": "0.2.45",
"version": "0.2.46",
"identifier": "com.voicetonotes.app",
"build": {
"beforeDevCommand": "npm run dev",