noteconnection 1.6.4 → 1.6.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # 2026-03-24 v1.6.0
1
+ # 2026-03-24 v1.6.0
2
2
 
3
3
  # NoteConnection Knowledge Graph
4
4
 
@@ -319,7 +319,19 @@ For developers building from source, NoteConnection offers two build modes:
319
319
  - Run mapping validation: `npm run docs:diataxis:check`.
320
320
  - Run local docs site preview: `npm run docs:site:serve`.
321
321
  - Build static docs site: `npm run docs:site:build`.
322
+ - EdgeOne Docs Portal (MkDocs deploy): `https://noteconnection-docs.edgeone.run`
323
+ - If you see `401 Authorization Required`, open the latest signed URL printed by deployment as `EDGEONE_DEPLOY_URL`, or disable preset-domain protection in EdgeOne Pages settings.
324
+ - Public mirror (fallback): `https://jacobinwwey.github.io/NoteConnection/`.
325
+ - Recommended lookup entry points:
326
+ - Users: `/diataxis/zh/tutorials/first-run/` or `/diataxis/en/tutorials/first-run/`
327
+ - Developers: `/diataxis/en/reference/interfaces-and-runtime/` and `/diataxis/en/reference/release-and-governance/`
328
+ - EdgeOne publish command (MkDocs site): `edgeone pages deploy build/mkdocs-site -n noteconnection-docs -e production -a global`.
329
+ - One-click docs publish command: `npm run docs:edgeone:publish`.
330
+ - CI auto publish workflow (EdgeOne): `.github/workflows/docs-edgeone-publish.yml`.
322
331
  - CI policy gate for docs mapping and site build: `.github/workflows/docs-diataxis-site.yml`.
332
+ - Sharelife community UI docs release + rollback guide:
333
+ - English: [`docs/en/sharelife_community_release_and_rollback.md`](docs/en/sharelife_community_release_and_rollback.md)
334
+ - 中文: [`docs/zh/sharelife_community_release_and_rollback.md`](docs/zh/sharelife_community_release_and_rollback.md)
323
335
 
324
336
  ## 🛠️ Hardware & Driver Requirements (AMDGPU)
325
337
 
@@ -334,6 +346,23 @@ For optimal performance with "GPU Optimised Rendering", especially on AMD RDNA c
334
346
 
335
347
  ## 📅 Changelog
336
348
 
349
+ ### v1.6.6 - Unified Provider Runtime & TOML Settings Consolidation (2026-03-26)
350
+ - Upgraded NoteMD API calling flow to a definition-driven provider architecture inspired by recent obsidian-NotEMD and cline patterns.
351
+ - Added transport-based dispatch (openai-compatible, anthropic, google, azure-openai, ollama) and provider metadata (apiKeyMode, apiTestMode, category).
352
+ - Expanded built-in provider presets: Qwen, Doubao, Moonshot, GLM, MiniMax, Groq, Together, Fireworks, Requesty, OpenAI Compatible.
353
+ - Unified runtime settings persistence in app_config.toml across Tauri + Godot + NoteMD:
354
+ - full NoteMD settings in [notemd] + [[notemd.providers]] (with legacy [notemd.api] compatibility mirror)
355
+ - Godot Path Mode settings in [path_mode] with runtime API endpoint /api/path-mode/settings
356
+ - Godot settings panel migrated to runtime TOML sync path.
357
+ - Hardened Rust-side TOML writes to preserve unknown sections, preventing accidental loss of [notemd] / [path_mode] when Tauri updates KB path or language.
358
+ - Updated bilingual documentation and templates for v1.6.6 schema and operations.
359
+ ### v1.6.5 - Documentation Portal Update (2026-03-26)
360
+
361
+ - Published MkDocs documentation to EdgeOne Pages project `noteconnection-docs`.
362
+ - Added bilingual README guidance for docs lookup paths (user/tutorial and developer/reference entry points).
363
+ - Standardized docs publish command for maintainers:
364
+ - `npm run docs:site:build`
365
+ - `edgeone pages deploy build/mkdocs-site -n noteconnection-docs -e production -a global`
337
366
  ### v1.6.0 - Unified Runtime, NoteMD Integration & Release Hardening (2026-03-23)
338
367
 
339
368
  - **Tag Compare Snapshot (`v1.3.0..v1.6.0`)**:
@@ -1196,7 +1225,19 @@ sync_language = true
1196
1225
  - 映射一致性校验:`npm run docs:diataxis:check`。
1197
1226
  - 本地预览文档站点:`npm run docs:site:serve`。
1198
1227
  - 构建静态文档站点:`npm run docs:site:build`。
1228
+ - EdgeOne 文档入口(MkDocs 发布):`https://noteconnection-docs.edgeone.run`
1229
+ - 若出现 `401 Authorization Required`,请使用最近一次部署输出中的 `EDGEONE_DEPLOY_URL` 签名链接,或在 EdgeOne Pages 项目中关闭预设域名访问保护。
1230
+ - 公共镜像(兜底):`https://jacobinwwey.github.io/NoteConnection/`。
1231
+ - 推荐查询入口:
1232
+ - 用户文档:`/diataxis/zh/tutorials/first-run/` 或 `/diataxis/en/tutorials/first-run/`
1233
+ - 开发文档:`/diataxis/en/reference/interfaces-and-runtime/` 与 `/diataxis/en/reference/release-and-governance/`
1234
+ - EdgeOne 发布命令(MkDocs 产物):`edgeone pages deploy build/mkdocs-site -n noteconnection-docs -e production -a global`。
1235
+ - 一键文档发布命令:`npm run docs:edgeone:publish`。
1236
+ - CI 自动发布工作流(EdgeOne):`.github/workflows/docs-edgeone-publish.yml`。
1199
1237
  - CI 文档治理工作流:`.github/workflows/docs-diataxis-site.yml`。
1238
+ - Sharelife 社区界面文档发布与回滚指南:
1239
+ - English:[`docs/en/sharelife_community_release_and_rollback.md`](docs/en/sharelife_community_release_and_rollback.md)
1240
+ - 中文:[`docs/zh/sharelife_community_release_and_rollback.md`](docs/zh/sharelife_community_release_and_rollback.md)
1200
1241
 
1201
1242
  ---
1202
1243
 
@@ -1204,6 +1245,25 @@ sync_language = true
1204
1245
 
1205
1246
  ## 更新日志 (Changelog)
1206
1247
 
1248
+ ### v1.6.6 - Provider 运行时流程与 TOML 配置统一 (2026-03-26)
1249
+ - 参考 obsidian-NotEMD 与 cline 的 Provider 策略,重构 NoteMD API 调用流为定义驱动。
1250
+ - 新增 transport 分发(openai-compatible / anthropic / google / azure-openai / ollama)与 provider 元数据(apiKeyMode、apiTestMode、category)。
1251
+ - 扩展内置 Provider 预设:Qwen、Doubao、Moonshot、GLM、MiniMax、Groq、Together、Fireworks、Requesty、OpenAI Compatible。
1252
+ - 完成 Tauri + Godot + NoteMD 的 app_config.toml 统一配置:
1253
+ - NoteMD 全量配置持久化到 [notemd] + [[notemd.providers]](保留 [notemd.api] 兼容镜像)
1254
+ - Path Mode 配置持久化到 [path_mode],并提供 /api/path-mode/settings 读写接口
1255
+ - Godot 设置面板升级为运行时 TOML 同步链路。
1256
+ - 加固 Rust 端 TOML 回写:保留未知 section,避免 Tauri 更新 KB/语言时覆盖 [notemd] / [path_mode]。
1257
+ - 同步更新 v1.6.6 双语模板与 Diataxis 文档。
1258
+
1259
+ ### v1.6.5 - 文档门户更新 (2026-03-26)
1260
+
1261
+ - 已将 MkDocs 文档发布到 EdgeOne Pages 项目 `noteconnection-docs`。
1262
+ - 在 README 中补充了面向用户与开发者的中英文文档检索入口。
1263
+ - 维护者发布命令统一为:
1264
+ - `npm run docs:site:build`
1265
+ - `edgeone pages deploy build/mkdocs-site -n noteconnection-docs -e production -a global`
1266
+
1207
1267
  ### v1.6.0 - 单窗口运行时、NoteMD 集成与发布加固 (2026-03-23)
1208
1268
 
1209
1269
  - **Tag 对比快照(`v1.3.0..v1.6.0`)**:
@@ -1,4 +1,4 @@
1
- # 2026-03-24 v1.6.0
1
+ # 2026-03-24 v1.6.0
2
2
 
3
3
  # NoteConnection Knowledge Graph
4
4
 
@@ -319,7 +319,19 @@ For developers building from source, NoteConnection offers two build modes:
319
319
  - Run mapping validation: `npm run docs:diataxis:check`.
320
320
  - Run local docs site preview: `npm run docs:site:serve`.
321
321
  - Build static docs site: `npm run docs:site:build`.
322
+ - EdgeOne Docs Portal (MkDocs deploy): `https://noteconnection-docs.edgeone.run`
323
+ - If you see `401 Authorization Required`, open the latest signed URL printed by deployment as `EDGEONE_DEPLOY_URL`, or disable preset-domain protection in EdgeOne Pages settings.
324
+ - Public mirror (fallback): `https://jacobinwwey.github.io/NoteConnection/`.
325
+ - Recommended lookup entry points:
326
+ - Users: `/diataxis/zh/tutorials/first-run/` or `/diataxis/en/tutorials/first-run/`
327
+ - Developers: `/diataxis/en/reference/interfaces-and-runtime/` and `/diataxis/en/reference/release-and-governance/`
328
+ - EdgeOne publish command (MkDocs site): `edgeone pages deploy build/mkdocs-site -n noteconnection-docs -e production -a global`.
329
+ - One-click docs publish command: `npm run docs:edgeone:publish`.
330
+ - CI auto publish workflow (EdgeOne): `.github/workflows/docs-edgeone-publish.yml`.
322
331
  - CI policy gate for docs mapping and site build: `.github/workflows/docs-diataxis-site.yml`.
332
+ - Sharelife community UI docs release + rollback guide:
333
+ - English: [`docs/en/sharelife_community_release_and_rollback.md`](docs/en/sharelife_community_release_and_rollback.md)
334
+ - 中文: [`docs/zh/sharelife_community_release_and_rollback.md`](docs/zh/sharelife_community_release_and_rollback.md)
323
335
 
324
336
  ## 🛠️ Hardware & Driver Requirements (AMDGPU)
325
337
 
@@ -334,6 +346,23 @@ For optimal performance with "GPU Optimised Rendering", especially on AMD RDNA c
334
346
 
335
347
  ## 📅 Changelog
336
348
 
349
+ ### v1.6.6 - Unified Provider Runtime & TOML Settings Consolidation (2026-03-26)
350
+ - Upgraded NoteMD API calling flow to a definition-driven provider architecture inspired by recent obsidian-NotEMD and cline patterns.
351
+ - Added transport-based dispatch (openai-compatible, anthropic, google, azure-openai, ollama) and provider metadata (apiKeyMode, apiTestMode, category).
352
+ - Expanded built-in provider presets: Qwen, Doubao, Moonshot, GLM, MiniMax, Groq, Together, Fireworks, Requesty, OpenAI Compatible.
353
+ - Unified runtime settings persistence in app_config.toml across Tauri + Godot + NoteMD:
354
+ - full NoteMD settings in [notemd] + [[notemd.providers]] (with legacy [notemd.api] compatibility mirror)
355
+ - Godot Path Mode settings in [path_mode] with runtime API endpoint /api/path-mode/settings
356
+ - Godot settings panel migrated to runtime TOML sync path.
357
+ - Hardened Rust-side TOML writes to preserve unknown sections, preventing accidental loss of [notemd] / [path_mode] when Tauri updates KB path or language.
358
+ - Updated bilingual documentation and templates for v1.6.6 schema and operations.
359
+ ### v1.6.5 - Documentation Portal Update (2026-03-26)
360
+
361
+ - Published MkDocs documentation to EdgeOne Pages project `noteconnection-docs`.
362
+ - Added bilingual README guidance for docs lookup paths (user/tutorial and developer/reference entry points).
363
+ - Standardized docs publish command for maintainers:
364
+ - `npm run docs:site:build`
365
+ - `edgeone pages deploy build/mkdocs-site -n noteconnection-docs -e production -a global`
337
366
  ### v1.6.0 - Unified Runtime, NoteMD Integration & Release Hardening (2026-03-23)
338
367
 
339
368
  - **Tag Compare Snapshot (`v1.3.0..v1.6.0`)**:
@@ -1196,7 +1225,19 @@ sync_language = true
1196
1225
  - 映射一致性校验:`npm run docs:diataxis:check`。
1197
1226
  - 本地预览文档站点:`npm run docs:site:serve`。
1198
1227
  - 构建静态文档站点:`npm run docs:site:build`。
1228
+ - EdgeOne 文档入口(MkDocs 发布):`https://noteconnection-docs.edgeone.run`
1229
+ - 若出现 `401 Authorization Required`,请使用最近一次部署输出中的 `EDGEONE_DEPLOY_URL` 签名链接,或在 EdgeOne Pages 项目中关闭预设域名访问保护。
1230
+ - 公共镜像(兜底):`https://jacobinwwey.github.io/NoteConnection/`。
1231
+ - 推荐查询入口:
1232
+ - 用户文档:`/diataxis/zh/tutorials/first-run/` 或 `/diataxis/en/tutorials/first-run/`
1233
+ - 开发文档:`/diataxis/en/reference/interfaces-and-runtime/` 与 `/diataxis/en/reference/release-and-governance/`
1234
+ - EdgeOne 发布命令(MkDocs 产物):`edgeone pages deploy build/mkdocs-site -n noteconnection-docs -e production -a global`。
1235
+ - 一键文档发布命令:`npm run docs:edgeone:publish`。
1236
+ - CI 自动发布工作流(EdgeOne):`.github/workflows/docs-edgeone-publish.yml`。
1199
1237
  - CI 文档治理工作流:`.github/workflows/docs-diataxis-site.yml`。
1238
+ - Sharelife 社区界面文档发布与回滚指南:
1239
+ - English:[`docs/en/sharelife_community_release_and_rollback.md`](docs/en/sharelife_community_release_and_rollback.md)
1240
+ - 中文:[`docs/zh/sharelife_community_release_and_rollback.md`](docs/zh/sharelife_community_release_and_rollback.md)
1200
1241
 
1201
1242
  ---
1202
1243
 
@@ -1204,6 +1245,25 @@ sync_language = true
1204
1245
 
1205
1246
  ## 更新日志 (Changelog)
1206
1247
 
1248
+ ### v1.6.6 - Provider 运行时流程与 TOML 配置统一 (2026-03-26)
1249
+ - 参考 obsidian-NotEMD 与 cline 的 Provider 策略,重构 NoteMD API 调用流为定义驱动。
1250
+ - 新增 transport 分发(openai-compatible / anthropic / google / azure-openai / ollama)与 provider 元数据(apiKeyMode、apiTestMode、category)。
1251
+ - 扩展内置 Provider 预设:Qwen、Doubao、Moonshot、GLM、MiniMax、Groq、Together、Fireworks、Requesty、OpenAI Compatible。
1252
+ - 完成 Tauri + Godot + NoteMD 的 app_config.toml 统一配置:
1253
+ - NoteMD 全量配置持久化到 [notemd] + [[notemd.providers]](保留 [notemd.api] 兼容镜像)
1254
+ - Path Mode 配置持久化到 [path_mode],并提供 /api/path-mode/settings 读写接口
1255
+ - Godot 设置面板升级为运行时 TOML 同步链路。
1256
+ - 加固 Rust 端 TOML 回写:保留未知 section,避免 Tauri 更新 KB/语言时覆盖 [notemd] / [path_mode]。
1257
+ - 同步更新 v1.6.6 双语模板与 Diataxis 文档。
1258
+
1259
+ ### v1.6.5 - 文档门户更新 (2026-03-26)
1260
+
1261
+ - 已将 MkDocs 文档发布到 EdgeOne Pages 项目 `noteconnection-docs`。
1262
+ - 在 README 中补充了面向用户与开发者的中英文文档检索入口。
1263
+ - 维护者发布命令统一为:
1264
+ - `npm run docs:site:build`
1265
+ - `edgeone pages deploy build/mkdocs-site -n noteconnection-docs -e production -a global`
1266
+
1207
1267
  ### v1.6.0 - 单窗口运行时、NoteMD 集成与发布加固 (2026-03-23)
1208
1268
 
1209
1269
  - **Tag 对比快照(`v1.3.0..v1.6.0`)**: