Skip to content

Commit 2befe27

Browse files
committed
V0.2
1 parent 665a4f2 commit 2befe27

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-2
lines changed

CHANGELOG.md

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

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

5+
## V0.2
6+
+ Supports TCP client/server, UDP, Bluetooth SPP client/server and Bluetooth BLE
7+
+ All servers support 1:N connections. Sent to/Receive from/Disconnect any client as you want
8+
+ Multiple NIC support. Specify local IP and port for TCP server, TCP client and UDP
9+
+ Supports recording connection history with user specified alias. Click history item to reuse the arguments
10+
+ File transceiver with fast CRC32 calculator and throttling
11+
+ Import/Export configuration files, search configuration files in multiple directories
12+
+ Support escape characters (\uHHHH, \nnn, \r, \n, \t, ...)
13+
+ Change serial port arguments on the fly
14+
+ Better UI, supports window translucency, selecting language, changing font
15+
+ Better performance
16+
+ Better gesture detection in PlotTab on Android
17+
+ Share a piece of text to SerialTest then send it on Android
18+
519
## V0.1.3 ~ V0.1.4
620
+ Fix some bugs
721

doc/CHANGELOG/CHANGELOG_zh_CN.md

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

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

5+
## V0.2
6+
+ 支持TCP客户端/服务器,UDP,蓝牙SPP客户端/服务器和蓝牙BLE
7+
+ TCP服务器和蓝牙SPP服务器支持一对多连接,可以任意指定收发对象,断开指定连接
8+
+ TCP服务器,TCP客户端和UDP支持指定本机IP和端口,也可在所有网卡上进行监听
9+
+ 支持记录连接历史并指定别名,单击即可快速设置参数
10+
+ 支持文件收发,带快速CRC32校验,在发送途中可自动延时等待
11+
+ 可导入导出配置文件,多目录搜索配置文件
12+
+ 支持转义字符(\uHHHH, \nnn, \r, \n, \t, ...)
13+
+ 实时修改串口参数
14+
+ 美化UI,支持窗口半透明,选择语言,改变字体
15+
+ 提升性能
16+
+ 优化安卓端绘图界面手势
17+
+ 安卓端添加Toast支持,可分享文本至SerialTest并发送
18+
519
## V0.1.3 ~ V0.1.4
620
+ 修复一些BUG
721

src/SerialTest.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ else: unix:!android: target.path = /opt/$${TARGET}/bin
8181
!isEmpty(target.path): INSTALLS += target
8282

8383
# Remember to change version in AndroidManifest.xml
84-
VERSION = 0.1.6
84+
VERSION = 0.2.0
8585
QMAKE_TARGET_PRODUCT = "SerialTest"
8686
QMAKE_TARGET_DESCRIPTION = "SerialTest"
8787
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.1.6" android:versionCode="16" android:installLocation="auto">
2+
<manifest package="priv.wh201906.serialtest" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="V0.2" android:versionCode="20" 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 -->

0 commit comments

Comments
 (0)