diff --git a/package.json b/package.json index 22b077d5..0e541768 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@different-ai/openwork", "private": true, - "version": "0.1.17", + "version": "0.1.18", "type": "module", "scripts": { "dev": "tauri dev", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index bdada774..9f254184 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openwork" -version = "0.1.17" +version = "0.1.18" description = "OpenWork" authors = ["Different AI"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 2d6ebe73..3293b52c 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "OpenWork", - "version": "0.1.17", + "version": "0.1.18", "identifier": "com.differentai.openwork", "build": { "beforeDevCommand": "pnpm dev:web", diff --git a/src/views/SessionView.tsx b/src/views/SessionView.tsx index 94bb9f7f..9d0f0874 100644 --- a/src/views/SessionView.tsx +++ b/src/views/SessionView.tsx @@ -144,7 +144,7 @@ export default function SessionView(props: SessionViewProps) { const resolveArtifactPath = (artifact: ArtifactItem) => { const rawPath = artifact.path?.trim(); if (!rawPath) return null; - if (/^(?:[a-zA-Z]:[\\/]|~[\\/]|\//.test(rawPath)) { + if (/^(?:[a-zA-Z]:[\\/]|~[\\/]|\/)/.test(rawPath)) { return rawPath; }