[PR #12] [CLOSED] v0.5.6 #691

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/12
Author: @codexu
Created: 12/10/2024
Status: Closed

Base: releaseHead: dev


📝 Commits (8)

  • f8c6556 fix: 解决 windows 不兼容窗口焦点获取剪贴板的 bug
  • bed7a42 fix: 未开启同步和配置时,图床页面无法进入
  • d8dac4a fix: 设置页面导航未高亮
  • 5d5719a fix: 版本号查询错误
  • c5b1c35 feat: 记录窗口状态,在下次打开时恢复之前的状态
  • 127b1ce feat: 全局搜索,可以模糊匹配到记录和文章内容,支持跳转
  • 92bc2b0 release: v0.5.5
  • 165e827 fix: useSearchParams() should be wrapped in a suspense boundary

📊 Changes

24 files changed (+1317 additions, -946 deletions)

View changed files

📝 package.json (+3 -1)
📝 pnpm-lock.yaml (+948 -895)
📝 src-tauri/Cargo.lock (+17 -1)
📝 src-tauri/Cargo.toml (+2 -1)
📝 src-tauri/capabilities/desktop.json (+2 -1)
📝 src-tauri/src/main.rs (+1 -0)
📝 src-tauri/tauri.conf.json (+1 -1)
src/app/core/image/no-data.tsx (+25 -0)
📝 src/app/core/image/page.tsx (+32 -11)
📝 src/app/core/note/mark/clipboard-image.tsx (+4 -3)
📝 src/app/core/note/mark/control-text.tsx (+1 -1)
📝 src/app/core/note/tag/index.tsx (+1 -1)
src/app/core/search/page.tsx (+81 -0)
src/app/core/search/search-item.tsx (+144 -0)
src/app/core/search/types.ts (+6 -0)
📝 src/app/core/setting/page.tsx (+4 -2)
📝 src/app/core/setting/setting-tab.tsx (+8 -1)
📝 src/app/globals.scss (+4 -0)
📝 src/app/layout.tsx (+2 -0)
📝 src/app/page.tsx (+0 -1)

...and 4 more files

📄 Description

Feature

  • 全局搜索,可以模糊匹配到记录和文章内容,支持跳转

Bug Fix

  • 解决 windows 不兼容窗口焦点获取剪贴板的 bug
  • 未开启同步和配置时,图床页面无法进入
  • 设置页面导航未高亮
  • 版本号查询错误

🔄 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/12 **Author:** [@codexu](https://github.com/codexu) **Created:** 12/10/2024 **Status:** ❌ Closed **Base:** `release` ← **Head:** `dev` --- ### 📝 Commits (8) - [`f8c6556`](https://github.com/codexu/note-gen/commit/f8c65567f60a0b578ec5d6b42a8a486691181ac2) fix: 解决 windows 不兼容窗口焦点获取剪贴板的 bug - [`bed7a42`](https://github.com/codexu/note-gen/commit/bed7a42ebf2e32d2fd11a988f6b9e209c956e4a5) fix: 未开启同步和配置时,图床页面无法进入 - [`d8dac4a`](https://github.com/codexu/note-gen/commit/d8dac4aaf05dea8e29a7bf2a10de3a1f2f22648d) fix: 设置页面导航未高亮 - [`5d5719a`](https://github.com/codexu/note-gen/commit/5d5719aaa88284f434c46b956f5545118ab52447) fix: 版本号查询错误 - [`c5b1c35`](https://github.com/codexu/note-gen/commit/c5b1c3564bc9bb7c4017f86db8ee853b04853654) feat: 记录窗口状态,在下次打开时恢复之前的状态 - [`127b1ce`](https://github.com/codexu/note-gen/commit/127b1ce1b219f310cbdf1379a9ba45196157e9fd) feat: 全局搜索,可以模糊匹配到记录和文章内容,支持跳转 - [`92bc2b0`](https://github.com/codexu/note-gen/commit/92bc2b0471eed795c125b29a7515a48ad46cdd8d) release: v0.5.5 - [`165e827`](https://github.com/codexu/note-gen/commit/165e827e77016e39d2f7b80a68f5f248402bdd59) fix: useSearchParams() should be wrapped in a suspense boundary ### 📊 Changes **24 files changed** (+1317 additions, -946 deletions) <details> <summary>View changed files</summary> 📝 `package.json` (+3 -1) 📝 `pnpm-lock.yaml` (+948 -895) 📝 `src-tauri/Cargo.lock` (+17 -1) 📝 `src-tauri/Cargo.toml` (+2 -1) 📝 `src-tauri/capabilities/desktop.json` (+2 -1) 📝 `src-tauri/src/main.rs` (+1 -0) 📝 `src-tauri/tauri.conf.json` (+1 -1) ➕ `src/app/core/image/no-data.tsx` (+25 -0) 📝 `src/app/core/image/page.tsx` (+32 -11) 📝 `src/app/core/note/mark/clipboard-image.tsx` (+4 -3) 📝 `src/app/core/note/mark/control-text.tsx` (+1 -1) 📝 `src/app/core/note/tag/index.tsx` (+1 -1) ➕ `src/app/core/search/page.tsx` (+81 -0) ➕ `src/app/core/search/search-item.tsx` (+144 -0) ➕ `src/app/core/search/types.ts` (+6 -0) 📝 `src/app/core/setting/page.tsx` (+4 -2) 📝 `src/app/core/setting/setting-tab.tsx` (+8 -1) 📝 `src/app/globals.scss` (+4 -0) 📝 `src/app/layout.tsx` (+2 -0) 📝 `src/app/page.tsx` (+0 -1) _...and 4 more files_ </details> ### 📄 Description Feature - 全局搜索,可以模糊匹配到记录和文章内容,支持跳转 Bug Fix - 解决 windows 不兼容窗口焦点获取剪贴板的 bug - 未开启同步和配置时,图床页面无法进入 - 设置页面导航未高亮 - 版本号查询错误 --- <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#691
No description provided.