Skip to content

Commit

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

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

## V0.2.1
+ Add command line option to set config file path
+ Fix some bugs in file transceiver
+ Add touch screen gesture support for some scrollable widgets

## 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
Expand Down
5 changes: 5 additions & 0 deletions doc/CHANGELOG/CHANGELOG_zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

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

## V0.2.1
+ 支持通过命令行参数指定配置文件路径
+ 修复文件收发功能的一些小BUG
+ 对一些可以滚动的组件添加触摸屏手势支持

## V0.2
+ 支持TCP客户端/服务器,UDP,蓝牙SPP客户端/服务器和蓝牙BLE
+ TCP服务器和蓝牙SPP服务器支持一对多连接,可以任意指定收发对象,断开指定连接
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.2.0
VERSION = 0.2.1
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.2" android:versionCode="20" android:installLocation="auto">
<manifest package="priv.wh201906.serialtest" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="V0.2.1" android:versionCode="21" 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 eb6ac98

Please sign in to comment.