diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 180f599..86cb569 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -1403,23 +1403,6 @@ dependencies = [ "syn 2.0.118", ] -[[package]] -name = "happa-mission-plan" -version = "0.1.0" -dependencies = [ - "byteorder", - "chrono", - "serde", - "serde_json", - "tauri", - "tauri-build", - "tauri-plugin-dialog", - "tauri-plugin-fs", - "tauri-plugin-opener", - "thiserror 1.0.69", - "uuid", -] - [[package]] name = "hashbrown" version = "0.12.3" @@ -3195,6 +3178,23 @@ dependencies = [ "system-deps", ] +[[package]] +name = "spectral-insight-mission-plan" +version = "0.0.1" +dependencies = [ + "byteorder", + "chrono", + "serde", + "serde_json", + "tauri", + "tauri-build", + "tauri-plugin-dialog", + "tauri-plugin-fs", + "tauri-plugin-opener", + "thiserror 1.0.69", + "uuid", +] + [[package]] name = "stable_deref_trait" version = "1.2.1" diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index ae1afc9..d12e41a 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,7 +1,7 @@ [package] -name = "happa-mission-plan" -version = "0.1.0" -description = "A Tauri App" +name = "spectral-insight-mission-plan" +version = "0.0.1" +description = "Spectral Insight Mission Plan" authors = ["you"] edition = "2021" diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index 1fef646..31c2e81 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -12,7 +12,7 @@ pub fn run() { tauri::Builder::default() .setup(move |app| { if let Some(w) = app.get_webview_window("main") { - w.set_title(&format!("Happa Mission Plan v{}", version)).ok(); + w.set_title(&format!("Spectral Insight Mission Plan v{}", version)).ok(); } Ok(()) }) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index ca4363f..92c6f5c 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,8 +1,8 @@ { "$schema": "https://schema.tauri.app/config/2", - "productName": "happa-mission-plan", + "productName": "Spectral Insight Mission Plan", "version": "0.0.1", - "identifier": "com.xin.happa-mission-plan", + "identifier": "com.spectral-insight.mission-plan", "build": { "beforeDevCommand": "npm run dev", "devUrl": "http://localhost:1420", @@ -12,7 +12,7 @@ "app": { "windows": [ { - "title": "Happa Mission Plan", + "title": "Spectral Insight Mission Plan", "width": 1400, "height": 900, "minWidth": 1024, @@ -37,6 +37,9 @@ "icons/icon.icns", "icons/icon.ico" ], + "resources": [ + "../update.md" + ], "windows": { "nsis": { "installMode": "perMachine", diff --git a/update.md b/update.md new file mode 100644 index 0000000..dadece1 --- /dev/null +++ b/update.md @@ -0,0 +1,14 @@ +# Spectral Insight Mission Plan - 更新日志 + +## v0.0.1 + +- 初始版本 +- 任务规划管理(增删改、复制) +- 子任务管理(按设备类型:Pika L / Pika NIR / 单反 / 深度相机) +- 扫描区域配置(多矩形框 + 背景图参考) +- 路径规划与航线生成(Zigzag / OneWay 两种模式) +- 设备默认 FOV(Pika L 17.6° / Pika NIR 21.7° / 单反 74° / 深度 90°) +- .RecordLine3 二进制路径文件读写 +- 时序计算(卤素灯预热、DSLR 唤醒延迟 135s) +- 约束校验(顺序、必填字段、高光谱必选等 7 条规则) +- 默认值持久化(scan_defaults.json / planner_defaults.json)