Skip to content

Commit

Permalink
V0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
wh201906 committed Apr 14, 2024
1 parent 42a5d36 commit 37bc8da
Show file tree
Hide file tree
Showing 11 changed files with 784 additions and 647 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

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

## V0.3.5
+ Improve BLE compatibility by adding support for WriteNoResponse operation (commit 0e5c82ea6c)
+ Improve serial port compatibility by allowing non-fatal errors when setting DTR/RTS in the connecting process (commit cae854bcdd)
+ Add Windows MSVC support for Bluetooth (commit 9760cccda8)
+ Add support for restoring dock widgets status (commit c88b47e1b0)
+ Add an option for enabling/disabling touch scrolling gesture (commit fda6389c31)
+ Replace "√"(U+221A) with "OK" in the status bar for the visual consistency across all platforms (commit 574360343e)
+ DataTab: Keep selection unchanged when appending received data (commit 86508ff76b)
+ Fix a few bugs

## V0.3.4
+ Android: Use adaptive launcher icon (commit da9f2caaf1)

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

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

## V0.3.5
+ 改进蓝牙BLE连接兼容性,支持WriteNoResponse操作 (commit 0e5c82ea6c)
+ 改进串口连接兼容性,在建立连接并尝试设置DTR/RTS信号时忽略设置失败的错误 (commit cae854bcdd)
+ 在MSVC编译器生成的程序中添加蓝牙支持 (commit 9760cccda8)
+ 支持自动保存窗口布局 (commit c88b47e1b0)
+ 支持配置触摸滚动手势 (commit fda6389c31)
+ 将状态栏中的"√"(U+221A)替换为"OK"以确保不同平台上的显示效果一致 (commit 574360343e)
+ 数据面板: 在新增已接收数据时保持已选中状态不被清除 (commit 86508ff76b)
+ 修复若干BUG

## V0.3.4
+ Android: 使用自适应启动器图标 (commit da9f2caaf1)

Expand Down
9 changes: 9 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/35.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
V0.3.5
+ Improve BLE compatibility by adding support for WriteNoResponse operation (commit 0e5c82ea6c)
+ Improve serial port compatibility by allowing non-fatal errors when setting DTR/RTS in the connecting process (commit cae854bcdd)
+ Add Windows MSVC support for Bluetooth (commit 9760cccda8)
+ Add support for restoring dock widgets status (commit c88b47e1b0)
+ Add an option for enabling/disabling touch scrolling gesture (commit fda6389c31)
+ Replace "√"(U+221A) with "OK" in the status bar for the visual consistency across all platforms (commit 574360343e)
+ DataTab: Keep selection unchanged when appending received data (commit 86508ff76b)
+ Fix a few bugs
9 changes: 9 additions & 0 deletions fastlane/metadata/android/zh-CN/changelogs/35.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
V0.3.5
+ 改进蓝牙BLE连接兼容性,支持WriteNoResponse操作 (commit 0e5c82ea6c)
+ 改进串口连接兼容性,在建立连接并尝试设置DTR/RTS信号时忽略设置失败的错误 (commit cae854bcdd)
+ 在MSVC编译器生成的程序中添加蓝牙支持 (commit 9760cccda8)
+ 支持自动保存窗口布局 (commit c88b47e1b0)
+ 支持配置触摸滚动手势 (commit fda6389c31)
+ 将状态栏中的"√"(U+221A)替换为"OK"以确保不同平台上的显示效果一致 (commit 574360343e)
+ 数据面板: 在新增已接收数据时保持已选中状态不被清除 (commit 86508ff76b)
+ 修复若干BUG
14 changes: 14 additions & 0 deletions pack/aur/io.github.wh201906.serialtest.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,20 @@
</screenshots>

<releases>
<release version="0.3.5" date="2024-04-14">
<description>
<ul>
<li>Improve BLE compatibility by adding support for WriteNoResponse operation (commit 0e5c82ea6c)</li>
<li>Improve serial port compatibility by allowing non-fatal errors when setting DTR/RTS in the connecting process (commit cae854bcdd)</li>
<li>Add Windows MSVC support for Bluetooth (commit 9760cccda8)</li>
<li>Add support for restoring dock widgets status (commit c88b47e1b0)</li>
<li>Add an option for enabling/disabling touch scrolling gesture (commit fda6389c31)</li>
<li>Replace "√"(U+221A) with "OK" in the status bar for the visual consistency across all platforms (commit 574360343e)</li>
<li>DataTab: Keep selection unchanged when appending received data (commit 86508ff76b)</li>
<li>Fix a few bugs</li>
</ul>
</description>
</release>
<release version="0.3.4" date="2024-03-09">
<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 @@ -103,7 +103,7 @@ qnx {
}

# Remember to change version in AndroidManifest.xml
VERSION = 0.3.4
VERSION = 0.3.5
QMAKE_TARGET_PRODUCT = "SerialTest"
QMAKE_TARGET_DESCRIPTION = "SerialTest"
QMAKE_TARGET_COMPANY = "wh201906"
Expand Down
4 changes: 2 additions & 2 deletions src/android/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<manifest
package="priv.wh201906.serialtest"
xmlns:android="http://schemas.android.com/apk/res/android"
android:versionName="V0.3.4"
android:versionCode="34"
android:versionName="V0.3.5"
android:versionCode="35"
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. -->
Expand Down

0 comments on commit 37bc8da

Please sign in to comment.