Skip to content

Commit

Permalink
release fix of windows mic issues and other things
Browse files Browse the repository at this point in the history
  • Loading branch information
louis030195 committed Sep 3, 2024
1 parent cc4e608 commit 75619e6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ resolver = "2"


[workspace.package]
version = "0.1.73"
version = "0.1.74"
authors = ["louis030195 <[email protected]>"]
description = ""
repository = "https://github.com/mediar-ai/screenpipe"
Expand Down
2 changes: 1 addition & 1 deletion examples/apps/screenpipe-app-tauri/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "screenpipe-app"
version = "0.1.81"
version = "0.1.82"
description = ""
authors = ["you"]
license = ""
Expand Down
4 changes: 2 additions & 2 deletions screenpipe-server/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ pub struct Cli {
pub fps: f64, // ! not crazy about this (unconsistent behaviour across platforms) see https://github.com/mediar-ai/screenpipe/issues/173

/// Audio chunk duration in seconds
#[arg(short = 'd', long, default_value_t = 30)]
#[arg(short = 'd', long, default_value_t = 120)]
pub audio_chunk_duration: u64,

/// Port to run the server on
Expand Down Expand Up @@ -148,7 +148,7 @@ pub struct Cli {
#[arg(long, default_value_t = false)]
pub use_pii_removal: bool,

/// Restart recording process every X minutes (0 means no periodic restart)
/// Restart recording process every X minutes (0 means no periodic restart) - NOT RECOMMENDED
#[arg(long, default_value_t = 0)]
pub restart_interval: u64,
}

0 comments on commit 75619e6

Please sign in to comment.