Skip to content

Commit 37bc8da

Browse files
committed
V0.3.5
1 parent 42a5d36 commit 37bc8da

File tree

11 files changed

+784
-647
lines changed

11 files changed

+784
-647
lines changed

CHANGELOG.md

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

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

5+
## V0.3.5
6+
+ Improve BLE compatibility by adding support for WriteNoResponse operation (commit 0e5c82ea6c)
7+
+ Improve serial port compatibility by allowing non-fatal errors when setting DTR/RTS in the connecting process (commit cae854bcdd)
8+
+ Add Windows MSVC support for Bluetooth (commit 9760cccda8)
9+
+ Add support for restoring dock widgets status (commit c88b47e1b0)
10+
+ Add an option for enabling/disabling touch scrolling gesture (commit fda6389c31)
11+
+ Replace "√"(U+221A) with "OK" in the status bar for the visual consistency across all platforms (commit 574360343e)
12+
+ DataTab: Keep selection unchanged when appending received data (commit 86508ff76b)
13+
+ Fix a few bugs
14+
515
## V0.3.4
616
+ Android: Use adaptive launcher icon (commit da9f2caaf1)
717

doc/CHANGELOG/CHANGELOG_zh_CN.md

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

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

5+
## V0.3.5
6+
+ 改进蓝牙BLE连接兼容性,支持WriteNoResponse操作 (commit 0e5c82ea6c)
7+
+ 改进串口连接兼容性,在建立连接并尝试设置DTR/RTS信号时忽略设置失败的错误 (commit cae854bcdd)
8+
+ 在MSVC编译器生成的程序中添加蓝牙支持 (commit 9760cccda8)
9+
+ 支持自动保存窗口布局 (commit c88b47e1b0)
10+
+ 支持配置触摸滚动手势 (commit fda6389c31)
11+
+ 将状态栏中的"√"(U+221A)替换为"OK"以确保不同平台上的显示效果一致 (commit 574360343e)
12+
+ 数据面板: 在新增已接收数据时保持已选中状态不被清除 (commit 86508ff76b)
13+
+ 修复若干BUG
14+
515
## V0.3.4
616
+ Android: 使用自适应启动器图标 (commit da9f2caaf1)
717

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
V0.3.5
2+
+ Improve BLE compatibility by adding support for WriteNoResponse operation (commit 0e5c82ea6c)
3+
+ Improve serial port compatibility by allowing non-fatal errors when setting DTR/RTS in the connecting process (commit cae854bcdd)
4+
+ Add Windows MSVC support for Bluetooth (commit 9760cccda8)
5+
+ Add support for restoring dock widgets status (commit c88b47e1b0)
6+
+ Add an option for enabling/disabling touch scrolling gesture (commit fda6389c31)
7+
+ Replace "√"(U+221A) with "OK" in the status bar for the visual consistency across all platforms (commit 574360343e)
8+
+ DataTab: Keep selection unchanged when appending received data (commit 86508ff76b)
9+
+ Fix a few bugs
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
V0.3.5
2+
+ 改进蓝牙BLE连接兼容性,支持WriteNoResponse操作 (commit 0e5c82ea6c)
3+
+ 改进串口连接兼容性,在建立连接并尝试设置DTR/RTS信号时忽略设置失败的错误 (commit cae854bcdd)
4+
+ 在MSVC编译器生成的程序中添加蓝牙支持 (commit 9760cccda8)
5+
+ 支持自动保存窗口布局 (commit c88b47e1b0)
6+
+ 支持配置触摸滚动手势 (commit fda6389c31)
7+
+ 将状态栏中的"√"(U+221A)替换为"OK"以确保不同平台上的显示效果一致 (commit 574360343e)
8+
+ 数据面板: 在新增已接收数据时保持已选中状态不被清除 (commit 86508ff76b)
9+
+ 修复若干BUG

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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,20 @@
5858
</screenshots>
5959

6060
<releases>
61+
<release version="0.3.5" date="2024-04-14">
62+
<description>
63+
<ul>
64+
<li>Improve BLE compatibility by adding support for WriteNoResponse operation (commit 0e5c82ea6c)</li>
65+
<li>Improve serial port compatibility by allowing non-fatal errors when setting DTR/RTS in the connecting process (commit cae854bcdd)</li>
66+
<li>Add Windows MSVC support for Bluetooth (commit 9760cccda8)</li>
67+
<li>Add support for restoring dock widgets status (commit c88b47e1b0)</li>
68+
<li>Add an option for enabling/disabling touch scrolling gesture (commit fda6389c31)</li>
69+
<li>Replace "√"(U+221A) with "OK" in the status bar for the visual consistency across all platforms (commit 574360343e)</li>
70+
<li>DataTab: Keep selection unchanged when appending received data (commit 86508ff76b)</li>
71+
<li>Fix a few bugs</li>
72+
</ul>
73+
</description>
74+
</release>
6175
<release version="0.3.4" date="2024-03-09">
6276
<description>
6377
<ul>

src/SerialTest.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ qnx {
103103
}
104104

105105
# Remember to change version in AndroidManifest.xml
106-
VERSION = 0.3.4
106+
VERSION = 0.3.5
107107
QMAKE_TARGET_PRODUCT = "SerialTest"
108108
QMAKE_TARGET_DESCRIPTION = "SerialTest"
109109
QMAKE_TARGET_COMPANY = "wh201906"

src/android/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<manifest
33
package="priv.wh201906.serialtest"
44
xmlns:android="http://schemas.android.com/apk/res/android"
5-
android:versionName="V0.3.4"
6-
android:versionCode="34"
5+
android:versionName="V0.3.5"
6+
android:versionCode="35"
77
android:installLocation="auto">
88
<!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
99
Remove the comment if you do not require these default permissions. -->

0 commit comments

Comments
 (0)