[PR #14] [CLOSED] release: 0.5.8 #692

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

📋 Pull Request Information

Original PR: https://github.com/codexu/note-gen/pull/14
Author: @codexu
Created: 12/11/2024
Status: Closed

Base: releaseHead: dev


📝 Commits (10+)

  • 9a90fde fix: 文件名过长时导致图标被挤压
  • 84fd2b5 feat: AI 描述生成选项
  • a29fe7c fix: 错误的 API KEY 将提示报错
  • 45917e6 docs: 📝快速上手
  • 75fd841 fix: 文本记录特殊字符导致报错
  • ead2315 release: 0.5.7
  • 3d38897 feat: 文章同步
  • d33abc0 fix: md-editor-code 过长导致页面变形
  • 5ca7c02 feat: 使用 jsdelivr 加速图床
  • 2cffe57 fix: 文章文件名存在空格时,同步 Github 命名错误

📊 Changes

25 files changed (+542 additions, -296 deletions)

View changed files

📝 README.md (+15 -13)
📝 src-tauri/Cargo.lock (+1 -1)
📝 src-tauri/Cargo.toml (+1 -1)
📝 src-tauri/tauri.conf.json (+1 -1)
src/app/core/article/custom-toolbar/ai.tsx (+31 -0)
src/app/core/article/custom-toolbar/history.tsx (+75 -0)
src/app/core/article/custom-toolbar/index.tsx (+22 -0)
src/app/core/article/custom-toolbar/optimize.tsx (+25 -0)
src/app/core/article/custom-toolbar/sync.tsx (+63 -0)
src/app/core/article/custom-toolbar/translation.tsx (+43 -0)
📝 src/app/core/article/file/file-item.tsx (+1 -1)
📝 src/app/core/article/md-editor.tsx (+24 -17)
src/app/core/article/md-toolbar.tsx (+0 -224)
📝 src/app/core/note/mark/clipboard-image.tsx (+15 -5)
📝 src/app/core/note/mark/control-image.tsx (+14 -3)
📝 src/app/core/note/mark/control-scan.tsx (+9 -2)
📝 src/app/core/note/mark/control-text.tsx (+2 -1)
📝 src/app/core/note/note/index.tsx (+1 -1)
📝 src/app/core/note/note/note-footer.tsx (+22 -11)
📝 src/app/core/setting/config.tsx (+3 -3)

...and 5 more files

📄 Description

Feature

  • 增加文章同步,需要使用配置 Github 同步
  • 增加文章读取历史记录,基于 Github Commit 记录,同时 AI 会辅助生成提交记录
  • 使用 jsdelivr 加速图床,通知 jsdelivr 缓存接口
  • 重构 markdown 工具栏,自定义工具栏与编辑器工具栏分离

Bug Fix

  • md-editor-code 过长导致页面变形
  • 文章文件名存在空格时,同步 Github 命名错误

🔄 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/14 **Author:** [@codexu](https://github.com/codexu) **Created:** 12/11/2024 **Status:** ❌ Closed **Base:** `release` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`9a90fde`](https://github.com/codexu/note-gen/commit/9a90fde2d59bff72ba58783ce87956fb8cfdd484) fix: 文件名过长时导致图标被挤压 - [`84fd2b5`](https://github.com/codexu/note-gen/commit/84fd2b57c8b7a10376242cecda7564eb06b80a3c) feat: AI 描述生成选项 - [`a29fe7c`](https://github.com/codexu/note-gen/commit/a29fe7cd318ead671fc31e94aa22ad8d6a595abe) fix: 错误的 API KEY 将提示报错 - [`45917e6`](https://github.com/codexu/note-gen/commit/45917e690956d3767e29938b9f5109f29c3fb4fc) docs: 📝快速上手 - [`75fd841`](https://github.com/codexu/note-gen/commit/75fd84138796e26cf3c34a66daeb9674876a05ca) fix: 文本记录特殊字符导致报错 - [`ead2315`](https://github.com/codexu/note-gen/commit/ead231567a14e842765c7317dffb8b18c90ea261) release: 0.5.7 - [`3d38897`](https://github.com/codexu/note-gen/commit/3d38897f28e552b569e2cf441c1ccdb7764a5cd7) feat: 文章同步 - [`d33abc0`](https://github.com/codexu/note-gen/commit/d33abc0b9bc5667f3721349cbf20e2316dc6edbd) fix: md-editor-code 过长导致页面变形 - [`5ca7c02`](https://github.com/codexu/note-gen/commit/5ca7c0297be73f254dc45dd16584fe7bb37baeed) feat: 使用 jsdelivr 加速图床 - [`2cffe57`](https://github.com/codexu/note-gen/commit/2cffe57447a17e511c12da5be2a54ee7a7940501) fix: 文章文件名存在空格时,同步 Github 命名错误 ### 📊 Changes **25 files changed** (+542 additions, -296 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+15 -13) 📝 `src-tauri/Cargo.lock` (+1 -1) 📝 `src-tauri/Cargo.toml` (+1 -1) 📝 `src-tauri/tauri.conf.json` (+1 -1) ➕ `src/app/core/article/custom-toolbar/ai.tsx` (+31 -0) ➕ `src/app/core/article/custom-toolbar/history.tsx` (+75 -0) ➕ `src/app/core/article/custom-toolbar/index.tsx` (+22 -0) ➕ `src/app/core/article/custom-toolbar/optimize.tsx` (+25 -0) ➕ `src/app/core/article/custom-toolbar/sync.tsx` (+63 -0) ➕ `src/app/core/article/custom-toolbar/translation.tsx` (+43 -0) 📝 `src/app/core/article/file/file-item.tsx` (+1 -1) 📝 `src/app/core/article/md-editor.tsx` (+24 -17) ➖ `src/app/core/article/md-toolbar.tsx` (+0 -224) 📝 `src/app/core/note/mark/clipboard-image.tsx` (+15 -5) 📝 `src/app/core/note/mark/control-image.tsx` (+14 -3) 📝 `src/app/core/note/mark/control-scan.tsx` (+9 -2) 📝 `src/app/core/note/mark/control-text.tsx` (+2 -1) 📝 `src/app/core/note/note/index.tsx` (+1 -1) 📝 `src/app/core/note/note/note-footer.tsx` (+22 -11) 📝 `src/app/core/setting/config.tsx` (+3 -3) _...and 5 more files_ </details> ### 📄 Description Feature - 增加文章同步,需要使用配置 Github 同步 - 增加文章读取历史记录,基于 Github Commit 记录,同时 AI 会辅助生成提交记录 - 使用 jsdelivr 加速图床,通知 jsdelivr 缓存接口 - 重构 markdown 工具栏,自定义工具栏与编辑器工具栏分离 Bug Fix - md-editor-code 过长导致页面变形 - 文章文件名存在空格时,同步 Github 命名错误 --- <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:20 +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#692
No description provided.