[PR #368] [CLOSED] v0.19.3 #728

Closed
opened 2026-03-02 03:41:29 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/codexu/note-gen/pull/368
Author: @codexu
Created: 7/9/2025
Status: Closed

Base: releaseHead: dev


📝 Commits (10+)

  • d92d2bf feat: add title extraction to searchable articles (#256)
  • ba3f40a Merge branch 'dev' of github.com:codexu/note-gen into dev
  • 8d4620b refactor: 移除 md-editor-rt 改为 markdown-it
  • a0122a0 fix(#265): windows 由于滚动条自定义样式导致表格无法正常滑动
  • 77a7509 fix(#262, #278): 写入数据库时使用 encode 导致特殊字符报错
  • 53bd180 fix(#275): 回收站图标替换为 Trash2
  • 01da79f fix(#274): 开启 RAG 前进行嵌入模型检测
  • 7e82f2e fix(#263): 未同步时由于仓库为空提示错误,并且修复首次打开时多次获取历史记录,导致历史记录展示错误。
  • 1b6f849 docs: update contributing guidelines with PR template and code style requirements
  • 3ba8e1e fix(#261): 深层级的目录文件未正确递归获取,导致计算向量数据库未正确计算

📊 Changes

143 files changed (+5025 additions, -3272 deletions)

View changed files

📝 .github/CONTRIBUTING.md (+2 -2)
📝 .github/README.ja.md (+60 -29)
📝 .github/README.zh.md (+79 -34)
📝 README.md (+30 -23)
📝 messages/en.json (+97 -17)
📝 messages/ja.json (+97 -12)
📝 messages/zh.json (+107 -14)
📝 package.json (+4 -3)
📝 pnpm-lock.yaml (+24 -706)
📝 src-tauri/Cargo.lock (+224 -2)
📝 src-tauri/Cargo.toml (+3 -0)
📝 src-tauri/capabilities/default.json (+3 -0)
src-tauri/src/fuzzy_search.rs (+148 -0)
src-tauri/src/keywords.rs (+56 -0)
📝 src-tauri/src/main.rs (+8 -1)
📝 src-tauri/src/webdav.rs (+19 -0)
📝 src-tauri/tauri.conf.json (+1 -1)
📝 src/app/core/article/custom-footer/history.tsx (+5 -10)
📝 src/app/core/article/custom-footer/primary-sync.tsx (+2 -1)
📝 src/app/core/article/custom-footer/sync.tsx (+2 -2)

...and 80 more files

📄 Description

  • 增加提取关键词进行模糊查询和向量查询,提高知识库识别的准确率。
  • 使用 rust 重写模糊搜索功能,提高准确度和性能。
  • Markdown 编辑器设置增加默认启用大纲和大纲位置设置。#357
  • API Key 和 Access Token 输入框默认以 password 展示。#361
  • 修复未输入 APIKey 导致无法选择默认模型。

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/codexu/note-gen/pull/368 **Author:** [@codexu](https://github.com/codexu) **Created:** 7/9/2025 **Status:** ❌ Closed **Base:** `release` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`d92d2bf`](https://github.com/codexu/note-gen/commit/d92d2bf23ab7fba90c98495573106ec74470ba12) feat: add title extraction to searchable articles (#256) - [`ba3f40a`](https://github.com/codexu/note-gen/commit/ba3f40a7b0135207eaacfa1a695a6661b30bda46) Merge branch 'dev' of github.com:codexu/note-gen into dev - [`8d4620b`](https://github.com/codexu/note-gen/commit/8d4620b8c46e172238d933a0b8e53b6bd622fe12) refactor: 移除 md-editor-rt 改为 markdown-it - [`a0122a0`](https://github.com/codexu/note-gen/commit/a0122a03f7d74947f2aae81a8f849112fa1336ef) fix(#265): windows 由于滚动条自定义样式导致表格无法正常滑动 - [`77a7509`](https://github.com/codexu/note-gen/commit/77a75097ae5c04ef4e05ef6fefe4aa062fb3c29d) fix(#262, #278): 写入数据库时使用 encode 导致特殊字符报错 - [`53bd180`](https://github.com/codexu/note-gen/commit/53bd1802bcef51f46c6eaf11ca360390f3469385) fix(#275): 回收站图标替换为 Trash2 - [`01da79f`](https://github.com/codexu/note-gen/commit/01da79f619dd4793dec9c268e5ef92193d91de35) fix(#274): 开启 RAG 前进行嵌入模型检测 - [`7e82f2e`](https://github.com/codexu/note-gen/commit/7e82f2e63134cb7a7c01c970363ced0d75192053) fix(#263): 未同步时由于仓库为空提示错误,并且修复首次打开时多次获取历史记录,导致历史记录展示错误。 - [`1b6f849`](https://github.com/codexu/note-gen/commit/1b6f8490222bc8ca79347b6dea5647b8ccf776d8) docs: update contributing guidelines with PR template and code style requirements - [`3ba8e1e`](https://github.com/codexu/note-gen/commit/3ba8e1ee834d07689f2bf5c3e4b3a763e20cca0f) fix(#261): 深层级的目录文件未正确递归获取,导致计算向量数据库未正确计算 ### 📊 Changes **143 files changed** (+5025 additions, -3272 deletions) <details> <summary>View changed files</summary> 📝 `.github/CONTRIBUTING.md` (+2 -2) 📝 `.github/README.ja.md` (+60 -29) 📝 `.github/README.zh.md` (+79 -34) 📝 `README.md` (+30 -23) 📝 `messages/en.json` (+97 -17) 📝 `messages/ja.json` (+97 -12) 📝 `messages/zh.json` (+107 -14) 📝 `package.json` (+4 -3) 📝 `pnpm-lock.yaml` (+24 -706) 📝 `src-tauri/Cargo.lock` (+224 -2) 📝 `src-tauri/Cargo.toml` (+3 -0) 📝 `src-tauri/capabilities/default.json` (+3 -0) ➕ `src-tauri/src/fuzzy_search.rs` (+148 -0) ➕ `src-tauri/src/keywords.rs` (+56 -0) 📝 `src-tauri/src/main.rs` (+8 -1) 📝 `src-tauri/src/webdav.rs` (+19 -0) 📝 `src-tauri/tauri.conf.json` (+1 -1) 📝 `src/app/core/article/custom-footer/history.tsx` (+5 -10) 📝 `src/app/core/article/custom-footer/primary-sync.tsx` (+2 -1) 📝 `src/app/core/article/custom-footer/sync.tsx` (+2 -2) _...and 80 more files_ </details> ### 📄 Description - 增加提取关键词进行模糊查询和向量查询,提高知识库识别的准确率。 - 使用 rust 重写模糊搜索功能,提高准确度和性能。 - Markdown 编辑器设置增加默认启用大纲和大纲位置设置。#357 - API Key 和 Access Token 输入框默认以 password 展示。#361 - 修复未输入 APIKey 导致无法选择默认模型。 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-02 03:41:29 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/note-gen#728
No description provided.