[PR #277] [MERGED] feat: 移动端支持 #716

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

📋 Pull Request Information

Original PR: https://github.com/codexu/note-gen/pull/277
Author: @codexu
Created: 6/13/2025
Status: Merged
Merged: 6/13/2025
Merged by: @codexu

Base: devHead: m


📝 Commits (10+)

  • 965e01a feat: 移动端权限和依赖调整
  • 77198f1 feat: 移动端入口
  • 04000cb feat: 布局
  • 6e82b32 feat: 对话
  • fd2e84c feat: 记录
  • f43a625 feat: 写作
  • 9e08994 feat: 文件管理器
  • e01bf03 feat: improve mobile layout with fixed footer and add MarkList component
  • 0e99def feat: 设置
  • cb1a6f0 fix: improve mobile responsiveness in chat UI with layout and text size adjustments

📊 Changes

61 files changed (+787 additions, -242 deletions)

View changed files

📝 .github/README.ja.md (+1 -3)
📝 .github/README.zh.md (+1 -3)
📝 .gitignore (+1 -0)
📝 README.md (+2 -20)
📝 messages/en.json (+3 -1)
📝 messages/ja.json (+3 -1)
📝 messages/zh.json (+3 -1)
📝 src-tauri/Cargo.lock (+47 -24)
📝 src-tauri/Cargo.toml (+9 -5)
📝 src-tauri/capabilities/default.json (+3 -13)
📝 src-tauri/capabilities/desktop.json (+11 -4)
src-tauri/icons/64x64.png (+0 -0)
📝 src-tauri/src/lib.rs (+6 -0)
📝 src/app/core/article/custom-footer/copy-html.tsx (+1 -1)
📝 src/app/core/article/custom-footer/copy-json.tsx (+1 -1)
📝 src/app/core/article/custom-footer/copy-markdown.tsx (+1 -1)
📝 src/app/core/article/md-editor.tsx (+9 -8)
📝 src/app/core/record/chat/chat-content.tsx (+11 -9)
📝 src/app/core/record/chat/chat-header.tsx (+4 -14)
📝 src/app/core/record/chat/chat-input.tsx (+2 -2)

...and 41 more files

📄 Description

No description provided


🔄 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/277 **Author:** [@codexu](https://github.com/codexu) **Created:** 6/13/2025 **Status:** ✅ Merged **Merged:** 6/13/2025 **Merged by:** [@codexu](https://github.com/codexu) **Base:** `dev` ← **Head:** `m` --- ### 📝 Commits (10+) - [`965e01a`](https://github.com/codexu/note-gen/commit/965e01ae2f9a5f43a1609e72410df7012eed85d0) feat: 移动端权限和依赖调整 - [`77198f1`](https://github.com/codexu/note-gen/commit/77198f139f5b5aaa816f645c6e74b7bc54c0f473) feat: 移动端入口 - [`04000cb`](https://github.com/codexu/note-gen/commit/04000cba1fd1f01883dfa5a17513526f433378d9) feat: 布局 - [`6e82b32`](https://github.com/codexu/note-gen/commit/6e82b328d45cbf2ab3f434ae0e72f2bc4a2af81d) feat: 对话 - [`fd2e84c`](https://github.com/codexu/note-gen/commit/fd2e84cf0239999e43a987251d563961405acdca) feat: 记录 - [`f43a625`](https://github.com/codexu/note-gen/commit/f43a625f07cfd45020a0868040056e28de3c0f11) feat: 写作 - [`9e08994`](https://github.com/codexu/note-gen/commit/9e089946b270d943dc62dce8e309fbea8e22b5bb) feat: 文件管理器 - [`e01bf03`](https://github.com/codexu/note-gen/commit/e01bf03333accc45677aff581711484e664ca632) feat: improve mobile layout with fixed footer and add MarkList component - [`0e99def`](https://github.com/codexu/note-gen/commit/0e99def97391789afe6508e6750cc7ef55f349c7) feat: 设置 - [`cb1a6f0`](https://github.com/codexu/note-gen/commit/cb1a6f0a41eecb71292838caef2b0662ef03b9a4) fix: improve mobile responsiveness in chat UI with layout and text size adjustments ### 📊 Changes **61 files changed** (+787 additions, -242 deletions) <details> <summary>View changed files</summary> 📝 `.github/README.ja.md` (+1 -3) 📝 `.github/README.zh.md` (+1 -3) 📝 `.gitignore` (+1 -0) 📝 `README.md` (+2 -20) 📝 `messages/en.json` (+3 -1) 📝 `messages/ja.json` (+3 -1) 📝 `messages/zh.json` (+3 -1) 📝 `src-tauri/Cargo.lock` (+47 -24) 📝 `src-tauri/Cargo.toml` (+9 -5) 📝 `src-tauri/capabilities/default.json` (+3 -13) 📝 `src-tauri/capabilities/desktop.json` (+11 -4) ➕ `src-tauri/icons/64x64.png` (+0 -0) 📝 `src-tauri/src/lib.rs` (+6 -0) 📝 `src/app/core/article/custom-footer/copy-html.tsx` (+1 -1) 📝 `src/app/core/article/custom-footer/copy-json.tsx` (+1 -1) 📝 `src/app/core/article/custom-footer/copy-markdown.tsx` (+1 -1) 📝 `src/app/core/article/md-editor.tsx` (+9 -8) 📝 `src/app/core/record/chat/chat-content.tsx` (+11 -9) 📝 `src/app/core/record/chat/chat-header.tsx` (+4 -14) 📝 `src/app/core/record/chat/chat-input.tsx` (+2 -2) _...and 41 more files_ </details> ### 📄 Description _No description provided_ --- <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:26 +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#716
No description provided.