diff --git a/uni_modules/uni-usercapturescreen/changelog.md b/uni_modules/uni-usercapturescreen/changelog.md index 22c87fea95bd77cc5e1aed88dfcbf3fef3235860..51378b5439f11ee89a42797b701ea08a1d596313 100644 --- a/uni_modules/uni-usercapturescreen/changelog.md +++ b/uni_modules/uni-usercapturescreen/changelog.md @@ -1,3 +1,9 @@ +## 1.0.4(2023-03-24) +新增开启/关闭防截屏功能 +## 1.0.3(2023-03-17) +修复android平台 部分场景下js可能报错的问题 +## 1.0.2(2023-03-16) +修复Android平台在小米设备无法监听的问题 修复Android平台调用uni.onUserCaptureScreen必然会触发回调的问题 ## 1.0.1(2022-10-27) 修改插件描述 ## 1.0.0(2022-10-26) diff --git a/uni_modules/uni-usercapturescreen/package.json b/uni_modules/uni-usercapturescreen/package.json index 461dc0ab060716de2cb2f361264769995cbf8c5a..884c4ef49705916467370cb2b4f230307afa4948 100644 --- a/uni_modules/uni-usercapturescreen/package.json +++ b/uni_modules/uni-usercapturescreen/package.json @@ -1,14 +1,14 @@ { "id": "uni-usercapturescreen", "displayName": "uni-usercapturescreen", - "version": "1.0.1", + "version": "1.0.4", "description": "用户主动截屏事件监听", "keywords": [ "截屏" ], "repository": "", "engines": { - "HBuilderX": "^3.6.0" + "HBuilderX": "^3.6.8" }, "dcloudext": { "type": "uts", diff --git a/uni_modules/uni-usercapturescreen/readme.md b/uni_modules/uni-usercapturescreen/readme.md index e5702ca80744a2a0ee0512a3882e4003165a7cd3..eda987aad5eba105c5096bebbb0c702ab3e9b110 100644 --- a/uni_modules/uni-usercapturescreen/readme.md +++ b/uni_modules/uni-usercapturescreen/readme.md @@ -13,3 +13,9 @@ 用户主动截屏事件。取消事件监听。 > 使用文档:[https://uniapp.dcloud.net.cn/api/system/capture-screen.html#offusercapturescreen](https://uniapp.dcloud.net.cn/api/system/capture-screen.html#offusercapturescreen) + +### uni.setUserCaptureScreen + +开启/关闭防截屏。 + +> 使用文档:[https://uniapp.dcloud.net.cn/api/system/capture-screen.html#setusercapturescreen](https://uniapp.dcloud.net.cn/api/system/capture-screen.html#setusercapturescreen) diff --git a/uni_modules/uni-usercapturescreen/utssdk/interface.uts b/uni_modules/uni-usercapturescreen/utssdk/interface.uts index 789d19186c5805c7463b6fa31dc39a452541d571..9cf97edf7fd57fc18578c149e227388907f9c709 100644 --- a/uni_modules/uni-usercapturescreen/utssdk/interface.uts +++ b/uni_modules/uni-usercapturescreen/utssdk/interface.uts @@ -47,7 +47,6 @@ export type SetUserCaptureScreenSuccess = { export type SetUserCaptureScreenFail = { /** * 错误码 - * 0:成功 * 12001:system not support * 12010:system internal error */ @@ -109,7 +108,7 @@ export type SetUserCaptureScreenOptions = { * @param {SetUserCaptureScreenOptions} options * @tutorial https://uniapp.dcloud.net.cn/api/system/capture-screen.html#setusercapturescreen * @platforms APP-IOS = ^9.0,APP-ANDROID = ^4.4 - * @since 3.7.3 + * @since 3.7.7 */ export type SetUserCaptureScreen = (options : SetUserCaptureScreenOptions) => void