[PR #7] [MERGED] v0.5.2 #685

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

📋 Pull Request Information

Original PR: https://github.com/codexu/note-gen/pull/7
Author: @codexu
Created: 12/2/2024
Status: Merged
Merged: 12/2/2024
Merged by: @codexu

Base: releaseHead: dev


📝 Commits (10+)

  • 4558c76 fix: 系统设置未正确加载
  • 5353261 feat: 删除文件
  • 91afcbf feat:文件重命名
  • 166678a feat: 右键选中文件
  • 5bf2cee feat: 查看原文件(在 Finder 或 Explorer 打开)
  • f318bf5 fix: 重命名未设置焦点
  • 04782c1 feat: 文件夹操作
  • 0e00a06 feat: 文件拖拽转移
  • f8a4a10 feat: 文件拖拽至根目录
  • 7eb1117 feat: 刷新文件树

📊 Changes

17 files changed (+415 additions, -62 deletions)

View changed files

📝 src-tauri/Cargo.lock (+1 -1)
📝 src-tauri/Cargo.toml (+1 -1)
📝 src-tauri/capabilities/default.json (+2 -1)
📝 src-tauri/src/main.rs (+3 -1)
src-tauri/src/showfile.rs (+52 -0)
📝 src-tauri/tauri.conf.json (+3 -2)
src/app/core/article/file/file-item.tsx (+113 -0)
📝 src/app/core/article/file/file-manager.tsx (+56 -36)
📝 src/app/core/article/file/file-toolbar.tsx (+4 -7)
src/app/core/article/file/folder-item.tsx (+129 -0)
📝 src/app/core/layout.tsx (+2 -0)
📝 src/app/core/note/mark/mark-item.tsx (+10 -2)
📝 src/app/core/note/note/note-history.tsx (+0 -1)
📝 src/app/core/setting/page.tsx (+4 -2)
📝 src/app/globals.css (+11 -1)
📝 src/components/ui/sidebar.tsx (+1 -1)
📝 src/stores/article.ts (+23 -6)

📄 Description

文章文件管理器:

  • 新建文件、文件夹。
  • 刷新文件树。
  • 删除文件、文件夹。
  • 重命名。
  • 拖拽转移文件。

🔄 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/7 **Author:** [@codexu](https://github.com/codexu) **Created:** 12/2/2024 **Status:** ✅ Merged **Merged:** 12/2/2024 **Merged by:** [@codexu](https://github.com/codexu) **Base:** `release` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`4558c76`](https://github.com/codexu/note-gen/commit/4558c76908c6f52cc19d56ffb32eaed288c9c2ae) fix: 系统设置未正确加载 - [`5353261`](https://github.com/codexu/note-gen/commit/535326196ab93e2fbf031c78278e8861cc9323df) feat: 删除文件 - [`91afcbf`](https://github.com/codexu/note-gen/commit/91afcbf89586b1f39d61a4116e5f87710e85ddcf) feat:文件重命名 - [`166678a`](https://github.com/codexu/note-gen/commit/166678a0d76c6b992e1a966b85c4fccc7f9e166d) feat: 右键选中文件 - [`5bf2cee`](https://github.com/codexu/note-gen/commit/5bf2cee1dfa702661ee12da3b1f9c34357b35e15) feat: 查看原文件(在 Finder 或 Explorer 打开) - [`f318bf5`](https://github.com/codexu/note-gen/commit/f318bf55a3d7d7ac03512bb92712f03db6c7b4fe) fix: 重命名未设置焦点 - [`04782c1`](https://github.com/codexu/note-gen/commit/04782c15a1c13f16420b42e75aa2e113906f6c0d) feat: 文件夹操作 - [`0e00a06`](https://github.com/codexu/note-gen/commit/0e00a06e920253fa0597ba255e6db33060826d12) feat: 文件拖拽转移 - [`f8a4a10`](https://github.com/codexu/note-gen/commit/f8a4a101e7f2b20c9c795fc2c83e542f461754f1) feat: 文件拖拽至根目录 - [`7eb1117`](https://github.com/codexu/note-gen/commit/7eb1117e5900f0e8cf63ce6f1ca9ea22d8ffed02) feat: 刷新文件树 ### 📊 Changes **17 files changed** (+415 additions, -62 deletions) <details> <summary>View changed files</summary> 📝 `src-tauri/Cargo.lock` (+1 -1) 📝 `src-tauri/Cargo.toml` (+1 -1) 📝 `src-tauri/capabilities/default.json` (+2 -1) 📝 `src-tauri/src/main.rs` (+3 -1) ➕ `src-tauri/src/showfile.rs` (+52 -0) 📝 `src-tauri/tauri.conf.json` (+3 -2) ➕ `src/app/core/article/file/file-item.tsx` (+113 -0) 📝 `src/app/core/article/file/file-manager.tsx` (+56 -36) 📝 `src/app/core/article/file/file-toolbar.tsx` (+4 -7) ➕ `src/app/core/article/file/folder-item.tsx` (+129 -0) 📝 `src/app/core/layout.tsx` (+2 -0) 📝 `src/app/core/note/mark/mark-item.tsx` (+10 -2) 📝 `src/app/core/note/note/note-history.tsx` (+0 -1) 📝 `src/app/core/setting/page.tsx` (+4 -2) 📝 `src/app/globals.css` (+11 -1) 📝 `src/components/ui/sidebar.tsx` (+1 -1) 📝 `src/stores/article.ts` (+23 -6) </details> ### 📄 Description 文章文件管理器: - 新建文件、文件夹。 - 刷新文件树。 - 删除文件、文件夹。 - 重命名。 - 拖拽转移文件。 --- <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:19 +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#685
No description provided.