diff --git a/screenpipe-app-tauri/components/screenpipe-status.tsx b/screenpipe-app-tauri/components/screenpipe-status.tsx index a2a81ac7..2a9d304e 100644 --- a/screenpipe-app-tauri/components/screenpipe-status.tsx +++ b/screenpipe-app-tauri/components/screenpipe-status.tsx @@ -26,7 +26,9 @@ import { Separator } from "./ui/separator"; import { Card, CardContent, CardFooter } from "./ui/card"; import { useHealthCheck } from "@/lib/hooks/use-health-check"; import { DevSettings } from "./dev-dialog"; -import { Lock } from "lucide-react"; +import { Lock, Folder } from "lucide-react"; +import { open } from "@tauri-apps/plugin-shell"; +import { homeDir } from "@tauri-apps/api/path"; const getDebuggingCommands = (os: string | null) => { let cliInstructions = ""; @@ -50,7 +52,7 @@ ${cliInstructions} # 3. Run: screenpipe -h # 4. Choose your preferred setup and start Screenpipe: # (Replace [YOUR_ARGS] with your chosen arguments) -# Example: screenpipe --data-dir `; +# Example: screenpipe --fps 1 `; const dataDir = os === "windows" ? "%USERPROFILE%\\.screenpipe" : "$HOME/.screenpipe"; @@ -208,8 +210,8 @@ const DevModeSettings = () => {

on = use CLI for more control
- in dev mode, backend won't
auto start when starting the - app + in dev mode, backend won't
+ auto start when starting the app

@@ -357,6 +359,26 @@ const HealthStatus = ({ className }: { className?: string }) => { } }; + const handleOpenDataDir = async () => { + try { + const homeDirPath = await homeDir(); + + const dataDir = + platform() === "macos" || platform() === "linux" + ? `${homeDirPath}/.screenpipe` + : `${homeDirPath}\\.screenpipe`; + await open(dataDir as string); + } catch (error) { + console.error("failed to open data directory:", error); + toast({ + title: "error", + description: "failed to open data directory.", + variant: "destructive", + duration: 3000, + }); + } + }; + const getStatusColor = (status: string) => { switch (status) { case "Healthy": @@ -397,11 +419,21 @@ const HealthStatus = ({ className }: { className?: string }) => { - + {health.status.toLowerCase()} status + +

diff --git a/screenpipe-app-tauri/components/search-chat.tsx b/screenpipe-app-tauri/components/search-chat.tsx index 4c2536f8..a7e7dfa3 100644 --- a/screenpipe-app-tauri/components/search-chat.tsx +++ b/screenpipe-app-tauri/components/search-chat.tsx @@ -360,22 +360,34 @@ export function SearchChat() {

{includeFrames && item.content.frame && ( - - - Frame - - - Frame - - +
+ + + Frame + + + Frame + + + + + + + + +

this is the frame where the text appeared

+
+
+
+
)} )} @@ -626,8 +638,9 @@ export function SearchChat() {

- include frames in the search results. this will only show - frames for ocr. this slows down the search. + include frames in the search results. this shows the frame + where the text appeared. only works for ocr. this may slow + down the search.

diff --git a/screenpipe-app-tauri/lib/screenpipe.ts b/screenpipe-app-tauri/lib/screenpipe.ts index cce2a19b..2525d7dc 100644 --- a/screenpipe-app-tauri/lib/screenpipe.ts +++ b/screenpipe-app-tauri/lib/screenpipe.ts @@ -153,6 +153,7 @@ export async function queryScreenpipe( content_type: params.content_type, app_name: params.app_name, window_name: params.window_name, // Add window_name to query parameters + include_frames: params.include_frames.toString(), min_length: params.min_length.toString(), max_length: params.max_length.toString(), }).filter(([_, v]) => v != null) as [string, string][]