Skip to content

Commit a0ec1db

Browse files
committed
🔧 chore: Update README and version.md for v1.7.6 release - Incremented version number to 1.7.6, detailed new features and improvements including fullscreen reminder enhancements, storage key additions, and time input UX upgrades. Updated release notes to reflect changes and fixes in the latest version.
1 parent 7437faa commit a0ec1db

2 files changed

Lines changed: 34 additions & 15 deletions

File tree

README.md

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[中文文档](#中文文档) | [English Documentation](#english-documentation) | [下载地址](https://github.com/Slocean/PulseCoreLite/releases)
22

3-
# PulseCore Lite v1.7.5 <img src="src/static/img/ice_logo.webp" alt="Logo" height="28" />
3+
# PulseCore Lite v1.7.6 <img src="src/static/img/ice_logo.webp" alt="Logo" height="28" />
44

55
PulseCoreLite 是一个基于 Tauri 2 + Vue 3 的桌面性能监控应用,提供悬浮窗监控与任务栏监控两种形态,实时展示 CPU、GPU、内存、磁盘与网络等指标,并支持多语言、透明度与刷新率配置、自动启动与托盘行为等系统级能力。
66

@@ -12,14 +12,14 @@ PulseCoreLite 是一个基于 Tauri 2 + Vue 3 的桌面性能监控应用,提
1212
- 目的:在最小占用前提下,持续提供硬件与网络实时指标
1313
- 平台:Windows(自动启动、任务栏位置、卸载能力基于 Windows API)
1414

15-
### 更新内容 v1.7.5
15+
### 更新内容 v1.7.6
1616

17-
- 前端架构重构:抽离窗口管理、存储仓储与页面职责,提升可维护性与模块边界清晰度
18-
- 悬浮窗配置重构:新增系统/主题对话框组件,统一对话流程并增强类型约束
19-
- 工具箱能力增强:新增任务提醒与提醒全屏页,周提醒支持多选日期,时间/日期输入体验升级
20-
- UI 组件体系升级:统一按钮/选择器/时间输入/Toast/Dialog 等基础组件,提升一致性与复用性
21-
- 本地化与展示优化:补齐任务栏指标文案、优化雷达图与面板样式,改进中英文更新文本过滤策略
22-
- 质量保障完善:引入 ESLint、Vitest、组件契约检查与前端质量工作流,补充关键 composable/store 单测
17+
- 优化全屏提醒窗口创建逻辑:优先当前显示器并延迟关闭旧窗口,避免闪烁与重复关闭
18+
- 全屏提醒窗口展示升级:改为不透明+全屏模式,背景统一深色并修复“屏幕站不满”问题
19+
- 提醒屏消息存储与关闭信号完善:新增 reminder-screen/reminder-close 存储键并在关闭时清理
20+
- 提醒定位调试增强:记录显示器与窗口位置到本地日志便于排查多屏问题
21+
- 时间选择器体验改进:新增“现在”快捷按钮并优化浮层高度,完善中英文文案
22+
- 发布流程修复:release workflow 获取 version.md 路径修正,版本升级至 1.7.6
2323

2424
### 页面截图(中文)
2525

@@ -143,6 +143,8 @@ npm run pack:release
143143
- pulsecorelite.taskbar_prefs:任务栏显示偏好
144144
- pulsecorelite.overlay_pos / pulsecorelite.taskbar_pos:窗口位置
145145
- pulsecorelite.refresh_rate:刷新频率
146+
- pulsecorelite.reminder-screen.<token>:提醒屏内容存储
147+
- pulsecorelite.reminder-close.<token>:提醒屏关闭信号
146148

147149
### 源码用法(关键入口)
148150

@@ -169,14 +171,14 @@ npm run pack:release
169171
- Goal: continuous, low-overhead telemetry for core hardware and network stats
170172
- Platform: Windows (autostart, taskbar position, uninstall are Windows API based)
171173

172-
### Release Notes v1.7.5
174+
### Release Notes v1.7.6
173175

174-
- Frontend architecture refactor: extract window manager, storage repository, and page responsibilities for clearer boundaries
175-
- Overlay config refactor: introduce system/theme dialog components and strengthen type constraints in dialog flows
176-
- Toolkit enhancements: add task reminders and fullscreen reminder screen, support multi-day weekly reminders, and improve date/time input UX
177-
- UI foundation upgrade: unify button/select/time-input/toast/dialog components for stronger consistency and reuse
178-
- Localization and presentation polish: add taskbar metric i18n labels, refine radar/panel styles, and improve CN/EN notes filtering
179-
- Quality pipeline improvements: add ESLint, Vitest, component contract checks, frontend quality workflow, and key composable/store tests
176+
- Improve fullscreen reminder window creation: prioritize current monitor and delay closing existing windows to reduce flicker
177+
- Fullscreen reminder display upgrades: switch to opaque fullscreen windows, unify dark background, and fix screen coverage issues
178+
- Reminder payload storage & close signaling: add reminder-screen/reminder-close keys and clean up on close
179+
- Add reminder positioning debug logs to local storage for multi-monitor diagnostics
180+
- Time input UX: add a "Now" shortcut, adjust panel height, and update CN/EN copy
181+
- Release pipeline fix: correct the version.md path in workflow and bump to 1.7.6
180182

181183
### Screenshots (English)
182184

@@ -300,6 +302,8 @@ npm run pack:release
300302
- pulsecorelite.taskbar_prefs
301303
- pulsecorelite.overlay_pos / pulsecorelite.taskbar_pos
302304
- pulsecorelite.refresh_rate
305+
- pulsecorelite.reminder-screen.<token>
306+
- pulsecorelite.reminder-close.<token>
303307

304308
### Source Guide
305309

docs/version.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## v1.7.6
2+
3+
- 优化全屏提醒窗口创建逻辑:优先当前显示器并延迟关闭旧窗口,避免闪烁与重复关闭
4+
- 全屏提醒窗口展示升级:改为不透明+全屏模式,背景统一深色并修复“屏幕站不满”问题
5+
- 提醒屏消息存储与关闭信号完善:新增 reminder-screen/reminder-close 存储键并在关闭时清理
6+
- 提醒定位调试增强:记录显示器与窗口位置到本地日志便于排查多屏问题
7+
- 时间选择器体验改进:新增“现在”快捷按钮并优化浮层高度,完善中英文文案
8+
- 发布流程修复:release workflow 获取 version.md 路径修正,版本升级至 1.7.6
9+
- Improve fullscreen reminder window creation: prioritize current monitor and delay closing existing windows to reduce flicker
10+
- Fullscreen reminder display upgrades: switch to opaque fullscreen windows, unify dark background, and fix screen coverage issues
11+
- Reminder payload storage & close signaling: add reminder-screen/reminder-close keys and clean up on close
12+
- Add reminder positioning debug logs to local storage for multi-monitor diagnostics
13+
- Time input UX: add a "Now" shortcut, adjust panel height, and update CN/EN copy
14+
- Release pipeline fix: correct the version.md path in workflow and bump to 1.7.6
15+
116
## v1.7.5
217

318
- 前端架构重构:抽离窗口管理、存储仓储与页面职责,提升可维护性与模块边界清晰度

0 commit comments

Comments
 (0)