Skip to content

Commit 3a1314c

Browse files
committed
Hide a feature in V0.2.2
The official fix of the file permission bug has not been released yet. To use this function, a patch is necessary.
1 parent 3245202 commit 3a1314c

File tree

7 files changed

+4
-8
lines changed

7 files changed

+4
-8
lines changed

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
[中文](doc/CHANGELOG/CHANGELOG_zh_CN.md)
44

55
## V0.2.2
6-
+ Android: Supports share a file to SerialTest then send it(built with Qt 5.15.7 or higher version)
76
+ Add dark theme(from https://github.com/ColinDuquesnoy/QDarkStyleSheet)
87
+ Add single orientation pinch gesture on plotter
98
+ Add some useful snippets for control panel(in `demo/Control/`)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ Supports serial port, Bluetooth SPP client/server, Bluetooth LE client, TCP clie
170170
+ Small screen support: Show sended/received data only
171171
+ Small screen support: Full screen mode
172172
+ Drag/Scale gesture support on Plotter
173-
+ Share text/file to SerialTest then send it
173+
+ Share text to SerialTest then send it
174174

175175
</details>
176176

doc/CHANGELOG/CHANGELOG_zh_CN.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
[English](../../CHANGELOG.md)
44

55
## V0.2.2
6-
+ Android: 支持分享文件到SerialTest并发送(需使用Qt 5.15.7或更高版本编译)
76
+ 添加暗黑主题(源于https://github.com/ColinDuquesnoy/QDarkStyleSheet)
87
+ 绘图面板支持单向缩放
98
+ 添加常用控制命令(位于demo/Control/文件夹下)

doc/README/README_zh_CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
+ 小屏适配:数据收发面板可仅显示已发送/已接收数据
171171
+ 小屏适配:支持全屏模式
172172
+ 绘图界面支持缩放/拖动手势
173-
+ 支持分享文本或文件到SerialTest并发送
173+
+ 支持分享文本到SerialTest并发送
174174

175175
</details>
176176

fastlane/metadata/android/en-US/changelogs/22.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
V0.2.2
2-
+ Android: Supports share a file to SerialTest then send it(built with Qt 5.15.7 or higher version)
32
+ Add dark theme(from https://github.com/ColinDuquesnoy/QDarkStyleSheet)
43
+ Add single orientation pinch gesture on plotter
54
+ Add some useful snippets for control panel(in `demo/Control/`)

fastlane/metadata/android/zh-CN/changelogs/22.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
V0.2.2
2-
+ Android: 支持分享文件到SerialTest并发送(需使用Qt 5.15.7或更高版本编译)
32
+ 添加暗黑主题(源于https://github.com/ColinDuquesnoy/QDarkStyleSheet)
43
+ 绘图面板支持单向缩放
54
+ 添加常用控制命令(位于demo/Control/文件夹下)

src/filetab.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ void FileTab::onSharedFileReceived(JNIEnv *env, jobject thiz, jstring text)
190190
// The QtNative.getUriWithValidPermission() will only check the persisted permissions in Qt 5.15.2.
191191
// But when an app shared a file by Intent, the permissions are usually transient.
192192
// This bug is fixed in the commit ec497d5e6587ac247a326fb9a0a11c37bb197786 of qtbase,
193-
// which is released in Qt 5.15.7.
194-
// To make this work, you need to build it with Qt 5.15.7 or higher version
193+
// which has not been released yet.
194+
// To make this work, you need to make a patch from this commit or waiting for the associated release version
195195

196196
// set the file path
197197
Q_UNUSED(thiz)

0 commit comments

Comments
 (0)