Skip to content

Commit

Permalink
V0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
wh201906 committed May 9, 2023
1 parent 9e95d7a commit 72ea973
Show file tree
Hide file tree
Showing 9 changed files with 244 additions and 208 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

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

## V0.2.3
+ Fix a crash (commit 40b6394681)
+ Fix a bug in AsyncCRC (commit de1933f5ee)
+ Show serial port VID and PID in Hex and Dec (commit b00aebd7bd)
+ Backward compatible to Qt 5.9
+ Refactor serial port history logic
+ More details when failed to open a serial port (commit b6dbd88b54)
+ Update QCustomPlot version to 2.1.1
+ Fix #22: Ignore close event of floating windows (commit c723e319fe)
+ Sync DTR and RTS from UI to serial port (commit ce576e45ed)

## V0.2.2
+ Add dark theme(from https://github.com/ColinDuquesnoy/QDarkStyleSheet)
+ Add single orientation pinch gesture on plotter
Expand Down
11 changes: 11 additions & 0 deletions doc/CHANGELOG/CHANGELOG_zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

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

## V0.2.3
+ 修复一处崩溃 (commit 40b6394681)
+ 修复AsyncCRC中的一处BUG (commit de1933f5ee)
+ 同时以十六进制,十进制显示串口VID,PID (commit b00aebd7bd)
+ 向下兼容至Qt 5.9
+ 重构串口历史记录逻辑
+ 无法连接串口时显示更多错误提示 (commit b6dbd88b54)
+ 升级QCustomPlot至2.1.1
+ 修复 #22: 忽略浮动串口的关闭事件 (commit c723e319fe)
+ 总是将UI上的DTR和RTS状态同步至串口 (commit ce576e45ed)

## V0.2.2
+ 添加暗黑主题(源于https://github.com/ColinDuquesnoy/QDarkStyleSheet)
+ 绘图面板支持单向缩放
Expand Down
10 changes: 10 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/23.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
V0.2.3
+ Fix a crash (commit 40b6394681)
+ Fix notify state in AsyncCRC (commit de1933f5ee)
+ Show serial port VID and PID in Hex and Dec (commit b00aebd7bd)
+ Backward compatible to Qt 5.9
+ Refactor serial port history logic
+ More details when failed to open a serial port (commit b6dbd88b54)
+ Update QCustomPlot version to 2.1.1
+ Fix #22: Ignore close event of floating windows (commit c723e319fe)
+ Sync DTR and RTS from UI to serial port (commit ce576e45ed)
10 changes: 10 additions & 0 deletions fastlane/metadata/android/zh-CN/changelogs/23.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
V0.2.3
+ 修复一处崩溃 (commit 40b6394681)
+ 修复AsyncCRC中的一处BUG (commit de1933f5ee)
+ 同时以十六进制,十进制显示串口VID,PID (commit b00aebd7bd)
+ 向下兼容至Qt 5.9
+ 重构串口历史记录逻辑
+ 无法连接串口时显示更多错误提示 (commit b6dbd88b54)
+ 升级QCustomPlot至2.1.1
+ 修复 #22: 忽略浮动串口的关闭事件 (commit c723e319fe)
+ 总是将UI上的DTR和RTS状态同步至串口 (commit ce576e45ed)
15 changes: 15 additions & 0 deletions pack/aur/io.github.wh201906.serialtest.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,21 @@
</screenshots>

<releases>
<release version="0.2.3" date="2023-05-09">
<description>
<ul>
<li>Fix a crash (commit 40b6394681)</li>
<li>Fix notify state in AsyncCRC (commit de1933f5ee)</li>
<li>Show serial port VID and PID in Hex and Dec (commit b00aebd7bd)</li>
<li>Backward compatible to Qt 5.9</li>
<li>Refactor serial port history logic</li>
<li>More details when failed to open a serial port (commit b6dbd88b54)</li>
<li>Update QCustomPlot version to 2.1.1</li>
<li>Fix #22: Ignore close event of floating windows (commit c723e319fe)</li>
<li>Sync DTR and RTS from UI to serial port (commit ce576e45ed)</li>
</ul>
</description>
</release>
<release version="0.2.2" date="2022-10-28">
<description>
<p>Highlights:</p>
Expand Down
2 changes: 1 addition & 1 deletion src/SerialTest.pro
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ qnx {
}

# Remember to change version in AndroidManifest.xml
VERSION = 0.2.2
VERSION = 0.2.3
QMAKE_TARGET_PRODUCT = "SerialTest"
QMAKE_TARGET_DESCRIPTION = "SerialTest"
QMAKE_TARGET_COMPANY = "wh201906"
Expand Down
2 changes: 1 addition & 1 deletion src/android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<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">
<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">
<!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
Remove the comment if you do not require these default permissions. -->
<!-- %%INSERT_PERMISSIONS -->
Expand Down
Binary file modified src/i18n/SerialTest_zh_CN.qm
Binary file not shown.
Loading

0 comments on commit 72ea973

Please sign in to comment.