noteconnection 1.6.5 → 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
 
@@ -326,7 +326,12 @@ For developers building from source, NoteConnection offers two build modes:
326
326
  - Users: `/diataxis/zh/tutorials/first-run/` or `/diataxis/en/tutorials/first-run/`
327
327
  - Developers: `/diataxis/en/reference/interfaces-and-runtime/` and `/diataxis/en/reference/release-and-governance/`
328
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`.
329
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)
330
335
 
331
336
  ## 🛠️ Hardware & Driver Requirements (AMDGPU)
332
337
 
@@ -341,6 +346,16 @@ For optimal performance with "GPU Optimised Rendering", especially on AMD RDNA c
341
346
 
342
347
  ## 📅 Changelog
343
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.
344
359
  ### v1.6.5 - Documentation Portal Update (2026-03-26)
345
360
 
346
361
  - Published MkDocs documentation to EdgeOne Pages project `noteconnection-docs`.
@@ -1217,7 +1232,12 @@ sync_language = true
1217
1232
  - 用户文档:`/diataxis/zh/tutorials/first-run/` 或 `/diataxis/en/tutorials/first-run/`
1218
1233
  - 开发文档:`/diataxis/en/reference/interfaces-and-runtime/` 与 `/diataxis/en/reference/release-and-governance/`
1219
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`。
1220
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)
1221
1241
 
1222
1242
  ---
1223
1243
 
@@ -1225,13 +1245,25 @@ sync_language = true
1225
1245
 
1226
1246
  ## 更新日志 (Changelog)
1227
1247
 
1228
- ### v1.6.5 - �ĵ��Ż����£�2026-03-26��
1229
-
1230
- - �ѽ� MkDocs �ĵ������� EdgeOne Pages ��Ŀ `noteconnection-docs`��
1231
- - ���� README ������Ӣ�IJ�ѯָ���������û��̳�����뿪���ο���ڣ���
1232
- - ά���߷�������ͳһΪ��
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
+ - 维护者发布命令统一为:
1233
1264
  - `npm run docs:site:build`
1234
1265
  - `edgeone pages deploy build/mkdocs-site -n noteconnection-docs -e production -a global`
1266
+
1235
1267
  ### v1.6.0 - 单窗口运行时、NoteMD 集成与发布加固 (2026-03-23)
1236
1268
 
1237
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
 
@@ -326,7 +326,12 @@ For developers building from source, NoteConnection offers two build modes:
326
326
  - Users: `/diataxis/zh/tutorials/first-run/` or `/diataxis/en/tutorials/first-run/`
327
327
  - Developers: `/diataxis/en/reference/interfaces-and-runtime/` and `/diataxis/en/reference/release-and-governance/`
328
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`.
329
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)
330
335
 
331
336
  ## 🛠️ Hardware & Driver Requirements (AMDGPU)
332
337
 
@@ -341,6 +346,16 @@ For optimal performance with "GPU Optimised Rendering", especially on AMD RDNA c
341
346
 
342
347
  ## 📅 Changelog
343
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.
344
359
  ### v1.6.5 - Documentation Portal Update (2026-03-26)
345
360
 
346
361
  - Published MkDocs documentation to EdgeOne Pages project `noteconnection-docs`.
@@ -1217,7 +1232,12 @@ sync_language = true
1217
1232
  - 用户文档:`/diataxis/zh/tutorials/first-run/` 或 `/diataxis/en/tutorials/first-run/`
1218
1233
  - 开发文档:`/diataxis/en/reference/interfaces-and-runtime/` 与 `/diataxis/en/reference/release-and-governance/`
1219
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`。
1220
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)
1221
1241
 
1222
1242
  ---
1223
1243
 
@@ -1225,13 +1245,25 @@ sync_language = true
1225
1245
 
1226
1246
  ## 更新日志 (Changelog)
1227
1247
 
1228
- ### v1.6.5 - �ĵ��Ż����£�2026-03-26��
1229
-
1230
- - �ѽ� MkDocs �ĵ������� EdgeOne Pages ��Ŀ `noteconnection-docs`��
1231
- - ���� README ������Ӣ�IJ�ѯָ���������û��̳�����뿪���ο���ڣ���
1232
- - ά���߷�������ͳһΪ��
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
+ - 维护者发布命令统一为:
1233
1264
  - `npm run docs:site:build`
1234
1265
  - `edgeone pages deploy build/mkdocs-site -n noteconnection-docs -e production -a global`
1266
+
1235
1267
  ### v1.6.0 - 单窗口运行时、NoteMD 集成与发布加固 (2026-03-23)
1236
1268
 
1237
1269
  - **Tag 对比快照(`v1.3.0..v1.6.0`)**: