Skip to content

Commit

Permalink
Update capabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
metaspartan committed Jan 2, 2025
1 parent 593ce54 commit 6164a3c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion client/src/components/SettingsDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export function SettingsDialog({ open, onOpenChange }: SettingsDialogProps) {

<div className="flex justify-center">
<img src={logo} alt="Curiso.ai" title="Curiso.ai" className="w-12 h-12" /></div>
<div className="flex justify-center"><p className="text-sm text-muted-foreground justify-center mb-2">Version v1.0.5 by Carsen Klock</p></div>
<div className="flex justify-center"><p className="text-sm text-muted-foreground justify-center mb-2">Version v1.0.6 by Carsen Klock</p></div>
<strong>Curiso.ai</strong> is an infinite canvas for your thoughts—a platform that seamlessly connects nodes and AI services so you can explore ideas in depth without repeating yourself. By guiding the direction of each conversation, Curiso.ai empowers advanced users to unlock richer, more accurate AI interactions.
</div>
<div className="space-y-2 mt-2">
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "curiso.ai",
"version": "1.0.5",
"version": "1.0.6",
"author": "Carsen Klock",
"type": "module",
"license": "MIT",
Expand All @@ -9,7 +9,7 @@
"build": "vite build",
"check": "tsc",
"desktop": "tauri dev",
"desktop:build": "tauri build --debug"
"desktop:build": "tauri build"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.33.1",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "curiso-ai"
version = "1.0.5"
version = "1.0.6"
description = "Curiso AI Desktop"
authors = ["Carsen Klock"]
license = "MIT"
Expand Down
6 changes: 4 additions & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
{
"identifier": "com.curiso.ai",
"productName": "Curiso AI",
"version": "1.0.5",
"version": "1.0.6",
"build": {
"beforeBuildCommand": "npm run build",
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:5173",
"frontendDist": "../dist"
},
"app": {
"withGlobalTauri": true,
"security": {
"csp": "default-src 'self' 'unsafe-inline' http://localhost:* https://*; img-src 'self' data: https:; style-src 'self' 'unsafe-inline'"
"csp": "default-src 'self' 'unsafe-inline' http://localhost:* https://*; img-src 'self' data: https:; style-src 'self' 'unsafe-inline'; connect-src 'self' http://127.0.0.1:* http://localhost:* https://*",
"capabilities": []
},
"windows": [
{
Expand Down

0 comments on commit 6164a3c

Please sign in to comment.