fix: 修复朋友圈标题栏右上角操作区被裁掉并升级到 4.1.4

- 调整独立窗口标题栏在 macOS 下的列宽分配策略,优先保证右侧工具区完整显示
- 修复朋友圈独立窗口右上角筛选、刷新等按钮被标题栏收缩策略裁掉的问题
- 将版本号升级到 4.1.4,并同步更新 README 与 CHANGELOG 说明
This commit is contained in:
ILoveBingLu
2026-04-08 20:21:32 +08:00
parent 403cc66d6e
commit c82de2d788
6 changed files with 34 additions and 8 deletions
+8
View File
@@ -10,6 +10,14 @@
### 变更
- 暂无
## [4.1.4] - 2026-04-08
### 修复
- 修复朋友圈独立窗口标题栏收缩后右上角操作区被裁掉的问题,恢复筛选、刷新等按钮的完整显示
### 变更
- 调整独立窗口标题栏在 macOS 下的列宽分配策略,改为优先保证右侧工具区完整显示,标题区按需收缩
## [4.1.3] - 2026-04-08
### 修复
+1 -1
View File
@@ -7,7 +7,7 @@
**一款现代化的微信聊天记录查看与分析工具**
[![License](https://img.shields.io/badge/license-CC--BY--NC--SA--4.0-blue.svg)](LICENSE)
[![Version](https://img.shields.io/badge/version-4.1.3-green.svg)](package.json)
[![Version](https://img.shields.io/badge/version-4.1.4-green.svg)](package.json)
[![Platform](https://img.shields.io/badge/platform-Windows-0078D6.svg?logo=windows)]()
[![Electron](https://img.shields.io/badge/Electron-39-47848F.svg?logo=electron)]()
[![React](https://img.shields.io/badge/React-19-61DAFB.svg?logo=react)]()
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "ciphertalk",
"version": "4.1.3",
"version": "4.1.4",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "ciphertalk",
"version": "4.1.3",
"version": "4.1.4",
"hasInstallScript": true,
"license": "CC-BY-NC-SA-4.0",
"dependencies": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "ciphertalk",
"version": "4.1.3",
"version": "4.1.4",
"description": "密语 - 微信聊天记录查看工具",
"author": "ILoveBingLu",
"license": "CC-BY-NC-SA-4.0",
+20 -4
View File
@@ -32,7 +32,8 @@
&.variant-standalone.is-mac {
display: grid;
grid-template-columns: minmax(calc(var(--window-controls-left-safe) - 16px), 1fr) auto minmax(0, 1fr);
grid-template-columns: calc(var(--window-controls-left-safe) - 16px) minmax(0, 1fr) auto;
padding-left: 16px;
padding-right: var(--window-controls-right-safe);
}
}
@@ -129,8 +130,7 @@
.title-bar-right {
flex-shrink: 0;
max-width: min(56vw, 520px);
overflow: hidden;
overflow: visible;
}
.titles {
@@ -154,8 +154,24 @@
}
.title-bar.variant-standalone.is-mac {
.title-bar-left {
width: calc(var(--window-controls-left-safe) - 16px);
min-width: calc(var(--window-controls-left-safe) - 16px);
}
.title-bar-center {
justify-self: stretch;
overflow: hidden;
}
.title-bar-right {
overflow: visible;
flex-shrink: 0;
justify-self: end;
}
.title-bar-center .titles {
max-width: 320px;
max-width: min(100%, 320px);
}
}
+2
View File
@@ -1244,6 +1244,8 @@
gap: var(--window-toolbar-gap);
min-width: 0;
max-width: 100%;
width: max-content;
flex-shrink: 0;
.export-btn {
display: flex;