Skip to content

Commit

Permalink
release-app fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
louis030195 committed Feb 23, 2025
1 parent cb4a0cd commit 2e27e84
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/release-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,12 @@ jobs:
libonig-dev \
libayatana-appindicator3-dev \
libsamplerate-dev \
libwebrtc-audio-processing-dev
libwebrtc-audio-processing-dev \
# Add these GTK dependencies
libgtk-3-dev \
libwebkit2gtk-4.0-dev \
librsvg2-dev \
patchelf
curl -fsSL https://bun.sh/install | bash
- name: Install frontend dependencies
Expand Down
2 changes: 1 addition & 1 deletion 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.36.8"
version = "0.36.9"
description = ""
authors = ["you"]
license = ""
Expand Down
5 changes: 0 additions & 5 deletions screenpipe-app-tauri/src-tauri/src/updates.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ impl UpdatesManager {
if rx.await? {
#[cfg(target_os = "windows")]
{
use crate::llm_sidecar::stop_ollama_sidecar;

self.update_menu_item.set_enabled(false)?;
self.update_menu_item
Expand All @@ -121,10 +120,6 @@ impl UpdatesManager {
{
error!("Failed to kill sidecar: {}", err);
}
// llm sidecar only need to kill in windows
if let Err(err) = stop_ollama_sidecar(self.app.clone()).await {
error!("Failed to stop ollama: {}", err);
}

update.download_and_install(|_, _| {}, || {}).await?;
*self.update_installed.lock().await = true;
Expand Down
2 changes: 1 addition & 1 deletion screenpipe-app-tauri/src-tauri/src/window_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ pub async fn show_specific_window(
.always_on_top(payload.always_on_top.unwrap_or(true))
.visible_on_all_workspaces(payload.visible_on_all_workspaces.unwrap_or(true));

#[cfg(not(target_os = "linux"))]
#[cfg(target_os = "macos")]
{
builder = builder.hidden_title(payload.hidden_title.unwrap_or(true));
}
Expand Down

0 comments on commit 2e27e84

Please sign in to comment.