Skip to content

Commit 5799817

Browse files
committed
V0.3.3
1 parent 8e4aeea commit 5799817

File tree

9 files changed

+274
-188
lines changed

9 files changed

+274
-188
lines changed

Diff for: CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

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

5+
## V0.3.3
6+
+ Add support for specifying service UUID in Bluetooth client mode (commit 1bd23bf4e0)
7+
+ Add support for showing IPv6 addresses on Android (commit 03a0e7938c)
8+
+ Add option for remembering the data to be sent in DataTab (commit 00eb0e2e36)
9+
+ Add option for clearing both received data and graph at the same time (commit a4779028d2)
10+
+ Improve the permission request process on Android
11+
+ Add point-only mode for plotting (commit daf34607c9)
12+
+ Fix the missing separator when appending hex data with timestamp (commit 00eb0e2e36)
13+
514
## V0.3.2
615
+ Fix 2 bugs in the Control Panel
716
+ Fix a bug in the timestamp (commit c73e12c30ad)
@@ -76,4 +85,4 @@
7685
+ Fix some bugs
7786

7887
## V0.1
79-
The first released version
88+
The first released version

Diff for: doc/CHANGELOG/CHANGELOG_zh_CN.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

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

5+
## V0.3.3
6+
+ 支持在蓝牙客户端模式中指定目标服务UUID (commit 1bd23bf4e0)
7+
+ 支持在Android端显示IPv6地址 (commit 03a0e7938c)
8+
+ 支持记住数据界面中的待发送数据 (commit 00eb0e2e36)
9+
+ 支持同时清除接收到的数据和图表 (commit a4779028d2)
10+
+ 改进Android上的权限请求过程
11+
+ 添加单独绘制点的功能 (commit daf34607c9)
12+
+ 修复接收带时间戳的十六进制数据时缺少分隔符的问题 (commit 00eb0e2e36)
13+
514
## V0.3.2
615
+ 修复控制面板中的2处BUG
716
+ 修复时间戳中的一处错误
@@ -76,4 +85,4 @@
7685
+ 修复一些BUG
7786

7887
## V0.1
79-
第一个公开版本
88+
第一个公开版本

Diff for: fastlane/metadata/android/en-US/changelogs/33.txt

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
V0.3.3
2+
+ Add support for specifying service UUID in Bluetooth client mode (commit 1bd23bf4e0)
3+
+ Add support for showing IPv6 addresses on Android (commit 03a0e7938c)
4+
+ Add option for remembering the data to be sent in DataTab (commit 00eb0e2e36)
5+
+ Add option for clearing both received data and graph at the same time (commit a4779028d2)
6+
+ Improve the permission request process on Android
7+
+ Add point-only mode for plotting (commit daf34607c9)
8+
+ Fix the missing separator when appending hex data with timestamp (commit 00eb0e2e36)

Diff for: fastlane/metadata/android/zh-CN/changelogs/33.txt

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
V0.3.3
2+
+ 支持在蓝牙客户端模式中指定目标服务UUID (commit 1bd23bf4e0)
3+
+ 支持在Android端显示IPv6地址 (commit 03a0e7938c)
4+
+ 支持记住数据界面中的待发送数据 (commit 00eb0e2e36)
5+
+ 支持同时清除接收到的数据和图表 (commit a4779028d2)
6+
+ 改进Android上的权限请求过程
7+
+ 添加单独绘制点的功能 (commit daf34607c9)
8+
+ 修复接收带时间戳的十六进制数据时缺少分隔符的问题 (commit 00eb0e2e36)

Diff for: pack/aur/io.github.wh201906.serialtest.metainfo.xml

+13
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,19 @@
5555
</screenshots>
5656

5757
<releases>
58+
<release version="0.3.3" date="2023-11-22">
59+
<description>
60+
<ul>
61+
<li>Add support for specifying service UUID in Bluetooth client mode (commit 1bd23bf4e0)</li>
62+
<li>Add support for showing IPv6 addresses on Android (commit 03a0e7938c)</li>
63+
<li>Add option for remembering the data to be sent in DataTab (commit 00eb0e2e36)</li>
64+
<li>Add option for clearing both received data and graph at the same time (commit a4779028d2)</li>
65+
<li>Improve the permission request process on Android</li>
66+
<li>Add point-only mode for plotting (commit daf34607c9)</li>
67+
<li>Fix the missing separator when appending hex data with timestamp (commit 00eb0e2e36)</li>
68+
</ul>
69+
</description>
70+
</release>
5871
<release version="0.3.2" date="2023-06-07">
5972
<description>
6073
<ul>

Diff for: src/SerialTest.pro

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ qnx {
9494
}
9595

9696
# Remember to change version in AndroidManifest.xml
97-
VERSION = 0.3.2
97+
VERSION = 0.3.3
9898
QMAKE_TARGET_PRODUCT = "SerialTest"
9999
QMAKE_TARGET_DESCRIPTION = "SerialTest"
100100
QMAKE_TARGET_COMPANY = "wh201906"

Diff for: src/android/AndroidManifest.xml

+1-1
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.3.2" android:versionCode="32" android:installLocation="auto">
2+
<manifest package="priv.wh201906.serialtest" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="V0.3.3" android:versionCode="33" 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 -->

Diff for: src/i18n/SerialTest_zh_CN.qm

626 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)