docs: 更新项目名称、作者信息及窗口标题

- 更新项目名称为 Tauri Shell 项目开发指南
- 更新作者信息为 imbytecat
- 将侧边栏窗口标题从“Tauri Application”更改为“Tauri App”
This commit is contained in:
2026-01-16 23:21:57 +08:00
parent b812c143f3
commit 319bb38177
3 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
# AGENTS.md - Tauri Demo 项目开发指南
# AGENTS.md - Tauri Shell 项目开发指南
本文档为 AI 编程助手和开发者提供项目规范、构建命令和代码风格指南。

View File

@@ -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

View File

@@ -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()