From 319bb3817706927c47ef4ab778cc70eed331f222 Mon Sep 17 00:00:00 2001 From: imbytecat Date: Fri, 16 Jan 2026 23:21:57 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E5=90=8D=E7=A7=B0=E3=80=81=E4=BD=9C=E8=80=85=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E5=8F=8A=E7=AA=97=E5=8F=A3=E6=A0=87=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 更新项目名称为 Tauri Shell 项目开发指南 - 更新作者信息为 imbytecat - 将侧边栏窗口标题从“Tauri Application”更改为“Tauri App” --- AGENTS.md | 2 +- Cargo.toml | 2 +- src/sidecar.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 5ec6045..a6dba66 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,4 +1,4 @@ -# AGENTS.md - Tauri Demo 项目开发指南 +# AGENTS.md - Tauri Shell 项目开发指南 本文档为 AI 编程助手和开发者提供项目规范、构建命令和代码风格指南。 diff --git a/Cargo.toml b/Cargo.toml index 7c97527..b894acb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "tauri-shell" version = "0.1.0" description = "A Tauri App" -authors = ["you"] +authors = ["imbytecat"] edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/src/sidecar.rs b/src/sidecar.rs index ef88459..3ed6843 100644 --- a/src/sidecar.rs +++ b/src/sidecar.rs @@ -68,7 +68,7 @@ pub fn spawn_sidecar(app_handle: tauri::AppHandle) { "main", tauri::WebviewUrl::External(url.parse().unwrap()), ) - .title("Tauri Application") + .title("Tauri App") .inner_size(1200.0, 800.0) .center() .build()