Skip to content
Merged

Rust #10

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,356 changes: 144 additions & 1,212 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@
"dependencies": {
"@tauri-apps/api": "^2.0.0",
"@vitejs/plugin-react": "^6.0.1",
"material-icon-theme": "^5.35.0",
"material-icon-theme": "5.34.0",
"pixi-live2d-display": "^0.4.0",
"pixi.js": "^6.5.10",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"typescript": "^6.0.3",
"vite": "^8.0.10"
"vite": "^8.0.16"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"windows": [
{
"label": "main",
"title": "Agent Mint",
"title": "Mint Agent",
"width": 1440,
"height": 900,
"minWidth": 960,
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/index-web.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Agent Mint (Web)</title>
<title>Mint Agent (Web)</title>
<link rel="icon" type="image/png" href="./assets/icon.png">
<!-- Load font families used in settings -->
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Mali:wght@400;500;600&family=Prompt:wght@400;500&family=Sarabun:wght@400;500&display=swap" rel="stylesheet">
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Agent Mint</title>
<title>Mint Agent</title>
<link rel="icon" type="image/png" href="./assets/icon.png">
<!-- Load font families used in settings -->
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Mali:wght@400;500;600&family=Prompt:wght@400;500&family=Sarabun:wght@400;500&display=swap" rel="stylesheet">
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src-web/components/ChatPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1319,7 +1319,7 @@ export default function ChatPanel({
</button>
<div className="chat-header-title">
<img src="./assets/icon.png" alt="Logo" className="chat-header-logo" />
<span>Agent Mint</span>
<span>Mint Agent</span>
</div>
</div>

Expand Down
4 changes: 2 additions & 2 deletions src/renderer/src-web/components/DashboardSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ export default function DashboardSidebar({
if (event.key === 'Enter' || event.key === ' ') onToggleSidebar()
}}
>
<img src="./assets/icon.png" alt="Agent Mint Logo" className="sidebar-logo" />
<span className="sidebar-brand-name">Agent Mint</span>
<img src="./assets/icon.png" alt="Mint Agent Logo" className="sidebar-logo" />
<span className="sidebar-brand-name">Mint Agent</span>
</div>

<button className="sidebar-new-chat" onClick={() => onClearHistory('New chat')}>
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src-web/components/MintDashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ export default function MintDashboard() {
<div className={`startup-loading ${startupReady ? 'is-hidden' : ''}`} aria-live="polite" aria-busy={!startupReady}>
<div className="startup-loading-content">
<div className="startup-loading-dots" aria-hidden="true"><span /><span /><span /></div>
<div className="startup-loading-text">Loading Agent Mint</div>
<div className="startup-loading-text">Loading Mint Agent</div>
</div>
</div>
{error && (
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/src/components/DashboardSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ export default function DashboardSidebar({
if (event.key === 'Enter' || event.key === ' ') onToggleSidebar()
}}
>
<img src="./assets/icon.png" alt="Agent Mint Logo" className="sidebar-logo" />
<span className="sidebar-brand-name">Agent Mint</span>
<img src="./assets/icon.png" alt="Mint Agent Logo" className="sidebar-logo" />
<span className="sidebar-brand-name">Mint Agent</span>
</div>

<button className="sidebar-new-chat" onClick={() => onClearHistory('New chat')}>
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/components/MintDashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ export default function MintDashboard() {
<div className={`startup-loading ${startupReady ? 'is-hidden' : ''}`} aria-live="polite" aria-busy={!startupReady}>
<div className="startup-loading-content">
<div className="startup-loading-dots" aria-hidden="true"><span /><span /><span /></div>
<div className="startup-loading-text">Loading Agent Mint</div>
<div className="startup-loading-text">Loading Mint Agent</div>
</div>
</div>
{error && (
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
"@shared/*": ["./src/*"]
}
},
"include": ["src/renderer/src", "src/renderer/src/env.d.ts"]
"include": ["src/renderer/src", "src/renderer/src-web", "src/renderer/src/env.d.ts"]
}
Loading