Skip to content

Commit

Permalink
V0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
wh201906 committed Aug 20, 2022
1 parent 665a4f2 commit 2befe27
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

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

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

## V0.1.3 ~ V0.1.4
+ Fix some bugs

Expand Down
14 changes: 14 additions & 0 deletions doc/CHANGELOG/CHANGELOG_zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

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

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

## V0.1.3 ~ V0.1.4
+ 修复一些BUG

Expand Down
2 changes: 1 addition & 1 deletion src/SerialTest.pro
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target

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

0 comments on commit 2befe27

Please sign in to comment.