Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
81407b51ee | ||
|
|
a3a45cb308 |
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "voice-to-notes",
|
"name": "voice-to-notes",
|
||||||
"version": "0.2.45",
|
"version": "0.2.46",
|
||||||
"description": "Desktop app for transcribing audio/video with speaker identification",
|
"description": "Desktop app for transcribing audio/video with speaker identification",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "voice-to-notes"
|
name = "voice-to-notes"
|
||||||
version = "0.2.45"
|
version = "0.2.46"
|
||||||
description = "Voice to Notes — desktop transcription with speaker identification"
|
description = "Voice to Notes — desktop transcription with speaker identification"
|
||||||
authors = ["Voice to Notes Contributors"]
|
authors = ["Voice to Notes Contributors"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|||||||
@@ -339,6 +339,7 @@ impl SidecarManager {
|
|||||||
Err(e) if e.raw_os_error() == Some(13) => {
|
Err(e) if e.raw_os_error() == Some(13) => {
|
||||||
// Permission denied — fix permissions and retry once
|
// Permission denied — fix permissions and retry once
|
||||||
eprintln!("[sidecar-rs] Permission denied, fixing permissions and retrying...");
|
eprintln!("[sidecar-rs] Permission denied, fixing permissions and retrying...");
|
||||||
|
#[cfg(unix)]
|
||||||
if let Some(dir) = path.parent() {
|
if let Some(dir) = path.parent() {
|
||||||
Self::set_executable_permissions(dir);
|
Self::set_executable_permissions(dir);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://schema.tauri.app/config/2",
|
"$schema": "https://schema.tauri.app/config/2",
|
||||||
"productName": "Voice to Notes",
|
"productName": "Voice to Notes",
|
||||||
"version": "0.2.45",
|
"version": "0.2.46",
|
||||||
"identifier": "com.voicetonotes.app",
|
"identifier": "com.voicetonotes.app",
|
||||||
"build": {
|
"build": {
|
||||||
"beforeDevCommand": "npm run dev",
|
"beforeDevCommand": "npm run dev",
|
||||||
|
|||||||
Reference in New Issue
Block a user