Skip to content

Commit

Permalink
V0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
wh201906 committed Nov 22, 2023
1 parent 8e4aeea commit 5799817
Show file tree
Hide file tree
Showing 9 changed files with 274 additions and 188 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

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

## V0.3.3
+ Add support for specifying service UUID in Bluetooth client mode (commit 1bd23bf4e0)
+ Add support for showing IPv6 addresses on Android (commit 03a0e7938c)
+ Add option for remembering the data to be sent in DataTab (commit 00eb0e2e36)
+ Add option for clearing both received data and graph at the same time (commit a4779028d2)
+ Improve the permission request process on Android
+ Add point-only mode for plotting (commit daf34607c9)
+ Fix the missing separator when appending hex data with timestamp (commit 00eb0e2e36)

## V0.3.2
+ Fix 2 bugs in the Control Panel
+ Fix a bug in the timestamp (commit c73e12c30ad)
Expand Down Expand Up @@ -76,4 +85,4 @@
+ Fix some bugs

## V0.1
The first released version
The first released version
11 changes: 10 additions & 1 deletion doc/CHANGELOG/CHANGELOG_zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

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

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

## V0.3.2
+ 修复控制面板中的2处BUG
+ 修复时间戳中的一处错误
Expand Down Expand Up @@ -76,4 +85,4 @@
+ 修复一些BUG

## V0.1
第一个公开版本
第一个公开版本
8 changes: 8 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/33.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
V0.3.3
+ Add support for specifying service UUID in Bluetooth client mode (commit 1bd23bf4e0)
+ Add support for showing IPv6 addresses on Android (commit 03a0e7938c)
+ Add option for remembering the data to be sent in DataTab (commit 00eb0e2e36)
+ Add option for clearing both received data and graph at the same time (commit a4779028d2)
+ Improve the permission request process on Android
+ Add point-only mode for plotting (commit daf34607c9)
+ Fix the missing separator when appending hex data with timestamp (commit 00eb0e2e36)
8 changes: 8 additions & 0 deletions fastlane/metadata/android/zh-CN/changelogs/33.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
V0.3.3
+ 支持在蓝牙客户端模式中指定目标服务UUID (commit 1bd23bf4e0)
+ 支持在Android端显示IPv6地址 (commit 03a0e7938c)
+ 支持记住数据界面中的待发送数据 (commit 00eb0e2e36)
+ 支持同时清除接收到的数据和图表 (commit a4779028d2)
+ 改进Android上的权限请求过程
+ 添加单独绘制点的功能 (commit daf34607c9)
+ 修复接收带时间戳的十六进制数据时缺少分隔符的问题 (commit 00eb0e2e36)
13 changes: 13 additions & 0 deletions pack/aur/io.github.wh201906.serialtest.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,19 @@
</screenshots>

<releases>
<release version="0.3.3" date="2023-11-22">
<description>
<ul>
<li>Add support for specifying service UUID in Bluetooth client mode (commit 1bd23bf4e0)</li>
<li>Add support for showing IPv6 addresses on Android (commit 03a0e7938c)</li>
<li>Add option for remembering the data to be sent in DataTab (commit 00eb0e2e36)</li>
<li>Add option for clearing both received data and graph at the same time (commit a4779028d2)</li>
<li>Improve the permission request process on Android</li>
<li>Add point-only mode for plotting (commit daf34607c9)</li>
<li>Fix the missing separator when appending hex data with timestamp (commit 00eb0e2e36)</li>
</ul>
</description>
</release>
<release version="0.3.2" date="2023-06-07">
<description>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion src/SerialTest.pro
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ qnx {
}

# Remember to change version in AndroidManifest.xml
VERSION = 0.3.2
VERSION = 0.3.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.3.2" android:versionCode="32" android:installLocation="auto">
<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">
<!-- 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 5799817

Please sign in to comment.