Skip to content

Commit

Permalink
v1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
metaspartan committed Jan 12, 2025
1 parent a88ce06 commit 5431440
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion client/src/components/SettingsDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,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.1.4 by <a
<div className="flex justify-center"><p className="text-sm text-muted-foreground justify-center mb-2">Version v1.1.5 by <a
href="https://github.com/metaspartan/curiso"
onClick={(e) => {
e.preventDefault();
Expand Down
4 changes: 2 additions & 2 deletions client/src/pages/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { useStore } from "@/lib/store";
import 'reactflow/dist/style.css';
import { useEffect, useState } from 'react';
import { Button } from '@/components/ui/button';
import { Plus, Settings } from 'lucide-react';
import { Plus, Settings, MessageCirclePlus } from 'lucide-react';
import { ChatNode } from '@/components/ChatNode';
import { SettingsDialog } from '@/components/SettingsDialog';
import { nanoid } from 'nanoid';
Expand Down Expand Up @@ -179,7 +179,7 @@ function Flow({ settingsOpen, setSettingsOpen }: { settingsOpen: boolean; setSet
</Panel>
<Panel position="top-right" className="space-x-2">
<Button onClick={addNode} size="icon">
<Plus className="h-4 w-4" />
<MessageCirclePlus className="h-4 w-4" />
</Button>
<Button onClick={() => setSettingsOpen(true)} size="icon" variant="outline">
<Settings className="h-4 w-4" />
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "curiso.ai",
"version": "1.1.4",
"version": "1.1.5",
"author": "Carsen Klock",
"type": "module",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.1.4"
version = "1.1.5"
description = "Curiso AI Desktop"
authors = ["Carsen Klock"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"identifier": "com.curiso.ai",
"productName": "Curiso AI",
"version": "1.1.4",
"version": "1.1.5",
"build": {
"beforeBuildCommand": "bun run build",
"beforeDevCommand": "bun run dev",
Expand Down

0 comments on commit 5431440

Please sign in to comment.