Skip to content

Commit 72ea973

Browse files
committed
V0.2.3
1 parent 9e95d7a commit 72ea973

File tree

9 files changed

+244
-208
lines changed

9 files changed

+244
-208
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
[中文](doc/CHANGELOG/CHANGELOG_zh_CN.md)
44

5+
## V0.2.3
6+
+ Fix a crash (commit 40b6394681)
7+
+ Fix a bug in AsyncCRC (commit de1933f5ee)
8+
+ Show serial port VID and PID in Hex and Dec (commit b00aebd7bd)
9+
+ Backward compatible to Qt 5.9
10+
+ Refactor serial port history logic
11+
+ More details when failed to open a serial port (commit b6dbd88b54)
12+
+ Update QCustomPlot version to 2.1.1
13+
+ Fix #22: Ignore close event of floating windows (commit c723e319fe)
14+
+ Sync DTR and RTS from UI to serial port (commit ce576e45ed)
15+
516
## V0.2.2
617
+ Add dark theme(from https://github.com/ColinDuquesnoy/QDarkStyleSheet)
718
+ Add single orientation pinch gesture on plotter

doc/CHANGELOG/CHANGELOG_zh_CN.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
[English](../../CHANGELOG.md)
44

5+
## V0.2.3
6+
+ 修复一处崩溃 (commit 40b6394681)
7+
+ 修复AsyncCRC中的一处BUG (commit de1933f5ee)
8+
+ 同时以十六进制,十进制显示串口VID,PID (commit b00aebd7bd)
9+
+ 向下兼容至Qt 5.9
10+
+ 重构串口历史记录逻辑
11+
+ 无法连接串口时显示更多错误提示 (commit b6dbd88b54)
12+
+ 升级QCustomPlot至2.1.1
13+
+ 修复 #22: 忽略浮动串口的关闭事件 (commit c723e319fe)
14+
+ 总是将UI上的DTR和RTS状态同步至串口 (commit ce576e45ed)
15+
516
## V0.2.2
617
+ 添加暗黑主题(源于https://github.com/ColinDuquesnoy/QDarkStyleSheet)
718
+ 绘图面板支持单向缩放
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
V0.2.3
2+
+ Fix a crash (commit 40b6394681)
3+
+ Fix notify state in AsyncCRC (commit de1933f5ee)
4+
+ Show serial port VID and PID in Hex and Dec (commit b00aebd7bd)
5+
+ Backward compatible to Qt 5.9
6+
+ Refactor serial port history logic
7+
+ More details when failed to open a serial port (commit b6dbd88b54)
8+
+ Update QCustomPlot version to 2.1.1
9+
+ Fix #22: Ignore close event of floating windows (commit c723e319fe)
10+
+ Sync DTR and RTS from UI to serial port (commit ce576e45ed)
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
V0.2.3
2+
+ 修复一处崩溃 (commit 40b6394681)
3+
+ 修复AsyncCRC中的一处BUG (commit de1933f5ee)
4+
+ 同时以十六进制,十进制显示串口VID,PID (commit b00aebd7bd)
5+
+ 向下兼容至Qt 5.9
6+
+ 重构串口历史记录逻辑
7+
+ 无法连接串口时显示更多错误提示 (commit b6dbd88b54)
8+
+ 升级QCustomPlot至2.1.1
9+
+ 修复 #22: 忽略浮动串口的关闭事件 (commit c723e319fe)
10+
+ 总是将UI上的DTR和RTS状态同步至串口 (commit ce576e45ed)

pack/aur/io.github.wh201906.serialtest.metainfo.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,21 @@
4343
</screenshots>
4444

4545
<releases>
46+
<release version="0.2.3" date="2023-05-09">
47+
<description>
48+
<ul>
49+
<li>Fix a crash (commit 40b6394681)</li>
50+
<li>Fix notify state in AsyncCRC (commit de1933f5ee)</li>
51+
<li>Show serial port VID and PID in Hex and Dec (commit b00aebd7bd)</li>
52+
<li>Backward compatible to Qt 5.9</li>
53+
<li>Refactor serial port history logic</li>
54+
<li>More details when failed to open a serial port (commit b6dbd88b54)</li>
55+
<li>Update QCustomPlot version to 2.1.1</li>
56+
<li>Fix #22: Ignore close event of floating windows (commit c723e319fe)</li>
57+
<li>Sync DTR and RTS from UI to serial port (commit ce576e45ed)</li>
58+
</ul>
59+
</description>
60+
</release>
4661
<release version="0.2.2" date="2022-10-28">
4762
<description>
4863
<p>Highlights:</p>

src/SerialTest.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ qnx {
8989
}
9090

9191
# Remember to change version in AndroidManifest.xml
92-
VERSION = 0.2.2
92+
VERSION = 0.2.3
9393
QMAKE_TARGET_PRODUCT = "SerialTest"
9494
QMAKE_TARGET_DESCRIPTION = "SerialTest"
9595
QMAKE_TARGET_COMPANY = "wh201906"

src/android/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<manifest package="priv.wh201906.serialtest" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="V0.2.2" android:versionCode="22" android:installLocation="auto">
2+
<manifest package="priv.wh201906.serialtest" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="V0.2.3" android:versionCode="23" android:installLocation="auto">
33
<!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
44
Remove the comment if you do not require these default permissions. -->
55
<!-- %%INSERT_PERMISSIONS -->

src/i18n/SerialTest_zh_CN.qm

-191 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)