File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.21)
22
33project (
44 FluentSerialAssistant
5- VERSION 0.1.2
5+ VERSION 0.1.3
66 DESCRIPTION "A Fluent Qt serial assistant prototype"
77 LANGUAGES CXX
88)
Original file line number Diff line number Diff line change 1+ # Fluent 串口助手 v0.1.3
2+
3+ 这是一个功能增强和 macOS 窗口显示修复版本。
4+
5+ ## 新增
6+
7+ - 终端支持关键字搜索和全部、接收、发送方向过滤。
8+ - 终端标题栏显示 RX/TX 总量、实时速率和连接时长。
9+ - 支持保存、载入、发送、删除和排序常用发送包。
10+ - 支持选择文件后按块发送,并配置块大小、块间隔和查看发送进度。
11+ - 支持恢复上次发送输入、常用包、文件发送参数,并可选启动后自动连接上次串口。
12+
13+ ## 修复
14+
15+ - 修复 macOS 无边框 Fluent 窗口底部圆角未裁剪导致内容露出的问题。
16+ - macOS 窗口圆角裁剪改为原生 AppKit layer 实现,避免 Qt mask 圆角锯齿。
17+
18+ ## 发布资产
19+
20+ - Windows x64:包含 ` windeployqt ` 部署后的运行文件。
21+ - macOS:包含 ` .app ` 应用包。
22+ - Linux x64:包含可执行文件和项目文档,系统运行库需由发行版提供。
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ int main(int argc, char *argv[])
2020 app.setStyle (QStyleFactory::create (QStringLiteral (" Fusion" )));
2121 QCoreApplication::setOrganizationName (QStringLiteral (" txp" ));
2222 QCoreApplication::setApplicationName (QStringLiteral (" FluentSerialAssistant" ));
23- QCoreApplication::setApplicationVersion (QStringLiteral (" 0.1.2 " ));
23+ QCoreApplication::setApplicationVersion (QStringLiteral (" 0.1.3 " ));
2424
2525 AppFontPreferences::loadCustomFonts ();
2626 FluentQt::FluentConfig::instance ()->load ();
You can’t perform that action at this time.
0 commit comments