From eaf2bf2e7cfd2ffd371a14bda39bc44ef794b325 Mon Sep 17 00:00:00 2001 From: ZXLee Date: Thu, 29 Feb 2024 22:57:57 +0800 Subject: [PATCH] v2.7.6-released --- demo/z-paging-demo/uni_modules/z-paging/changelog.md | 9 +++++++++ .../components/z-paging/components/z-paging-refresh.vue | 4 ++-- .../z-paging/components/z-paging/js/z-paging-constant.js | 2 +- .../z-paging/components/z-paging/z-paging.vue | 2 +- demo/z-paging-demo/uni_modules/z-paging/package.json | 2 +- demo/z-paging-demo/uni_modules/z-paging/readme.md | 4 ++-- .../z-paging-vue3-demo/uni_modules/z-paging/changelog.md | 9 +++++++++ .../components/z-paging/components/z-paging-refresh.vue | 4 ++-- .../z-paging/components/z-paging/js/z-paging-constant.js | 2 +- .../z-paging/components/z-paging/z-paging.vue | 2 +- .../z-paging-vue3-demo/uni_modules/z-paging/package.json | 2 +- demo/z-paging-vue3-demo/uni_modules/z-paging/readme.md | 4 ++-- z-paging/README.md | 6 +++--- z-paging/changelog.md | 9 +++++++++ .../components/z-paging/components/z-paging-refresh.vue | 4 ++-- z-paging/components/z-paging/js/z-paging-constant.js | 2 +- z-paging/components/z-paging/z-paging.vue | 2 +- z-paging/package.json | 2 +- 18 files changed, 49 insertions(+), 22 deletions(-) diff --git a/demo/z-paging-demo/uni_modules/z-paging/changelog.md b/demo/z-paging-demo/uni_modules/z-paging/changelog.md index 60ddd9b6..3059fc9a 100644 --- a/demo/z-paging-demo/uni_modules/z-paging/changelog.md +++ b/demo/z-paging-demo/uni_modules/z-paging/changelog.md @@ -1,3 +1,12 @@ +## 2.7.6(2024-02-29) +1.`新增` `max-width`,支持设置`z-paging`的最大宽度,默认`z-paging`宽度铺满窗口。 +2.`新增` `chat-adjust-position-offset`,支持设置使用聊天记录模式中键盘弹出时占位高度偏移距离。 +3.`修复` 由于renderjs中聊天记录模式判断不准确导致的可能出现的从聊天记录页面跳转到其他页面后返回页面无法滚动的问题。 +4.`修复` 聊天记录模式首次加载失败后,发送消息顶部会显示加载失败文字的问题。 +5.`修复` 聊天记录模式nvue可能出现的键盘弹出无法滚动到底部的问题。 +6.`修复` 聊天记录模式+nvue滚动条无法展示的问题&底部会显示加载中的问题。 +7.`修复` 聊天记录模式监听键盘弹出可能出现的无法正常销毁的问题。 +8.`修复` 直接修改dataList的值组件内部的值未更新的问题。 ## 2.7.5(2024-01-23) 1.`新增` props:`chat-loading-more-default-as-loading`,支持设置在聊天记录模式中滑动到顶部状态为默认状态时,以加载中的状态展示。 2.`新增` slots:`chatNoMore`,支持自定义聊天记录模式没有更多数据view。 diff --git a/demo/z-paging-demo/uni_modules/z-paging/components/z-paging/components/z-paging-refresh.vue b/demo/z-paging-demo/uni_modules/z-paging/components/z-paging/components/z-paging-refresh.vue index 2877de8a..9d5a3d8a 100644 --- a/demo/z-paging-demo/uni_modules/z-paging/components/z-paging/components/z-paging-refresh.vue +++ b/demo/z-paging-demo/uni_modules/z-paging/components/z-paging/components/z-paging-refresh.vue @@ -197,10 +197,10 @@ .zp-r-right-time-text-rpx { margin-top: 10rpx; - font-size: 24rpx; + font-size: 26rpx; } .zp-r-right-time-text-px { margin-top: 5px; - font-size: 12px; + font-size: 13px; } diff --git a/demo/z-paging-demo/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js b/demo/z-paging-demo/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js index 91d87f1e..a0c1b279 100644 --- a/demo/z-paging-demo/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js +++ b/demo/z-paging-demo/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js @@ -2,7 +2,7 @@ export default { // 当前版本号 - version: '2.7.5', + version: '2.7.6', // 延迟操作的通用时间 delayTime: 100, // 请求失败时候全局emit使用的key diff --git a/demo/z-paging-demo/uni_modules/z-paging/components/z-paging/z-paging.vue b/demo/z-paging-demo/uni_modules/z-paging/components/z-paging/z-paging.vue index 4d523a95..2df85e1e 100644 --- a/demo/z-paging-demo/uni_modules/z-paging/components/z-paging/z-paging.vue +++ b/demo/z-paging-demo/uni_modules/z-paging/components/z-paging/z-paging.vue @@ -4,7 +4,7 @@ / /_____| |_) | (_| | (_| | | | | | (_| | /___| | .__/ \__,_|\__, |_|_| |_|\__, | |_| |___/ |___/ -v2.7.5 (2024-01-23) +v2.7.6 (2024-02-29) by ZXLee --> diff --git a/demo/z-paging-demo/uni_modules/z-paging/package.json b/demo/z-paging-demo/uni_modules/z-paging/package.json index 9dbe1374..b5df4647 100644 --- a/demo/z-paging-demo/uni_modules/z-paging/package.json +++ b/demo/z-paging-demo/uni_modules/z-paging/package.json @@ -2,7 +2,7 @@ "id": "z-paging", "name": "z-paging", "displayName": "【z-paging下拉刷新、上拉加载】高性能,全平台兼容。支持虚拟列表,分页全自动处理", - "version": "2.7.5", + "version": "2.7.6", "description": "超简单、低耦合!使用wxs+renderjs实现。支持自定义下拉刷新、上拉加载更多、虚拟列表(轻松渲染万级列表)、自动管理空数据图、无闪动聊天分页、本地分页、国际化等100+项配置", "keywords": [ "下拉刷新", diff --git a/demo/z-paging-demo/uni_modules/z-paging/readme.md b/demo/z-paging-demo/uni_modules/z-paging/readme.md index 2d4f8eab..b6eeb0f4 100644 --- a/demo/z-paging-demo/uni_modules/z-paging/readme.md +++ b/demo/z-paging-demo/uni_modules/z-paging/readme.md @@ -1,10 +1,10 @@ # z-paging

- logo + logo

-[![version](https://img.shields.io/badge/version-2.7.5-blue)](https://github.com/SmileZXLee/uni-z-paging) +[![version](https://img.shields.io/badge/version-2.7.6-blue)](https://github.com/SmileZXLee/uni-z-paging) [![license](https://img.shields.io/github/license/SmileZXLee/uni-z-paging)](https://en.wikipedia.org/wiki/MIT_License) `z-paging-x`现已支持uniapp x,持续完善中,插件地址👉🏻 [https://ext.dcloud.net.cn/plugin?name=z-paging-x](https://ext.dcloud.net.cn/plugin?name=z-paging-x) diff --git a/demo/z-paging-vue3-demo/uni_modules/z-paging/changelog.md b/demo/z-paging-vue3-demo/uni_modules/z-paging/changelog.md index 60ddd9b6..3059fc9a 100644 --- a/demo/z-paging-vue3-demo/uni_modules/z-paging/changelog.md +++ b/demo/z-paging-vue3-demo/uni_modules/z-paging/changelog.md @@ -1,3 +1,12 @@ +## 2.7.6(2024-02-29) +1.`新增` `max-width`,支持设置`z-paging`的最大宽度,默认`z-paging`宽度铺满窗口。 +2.`新增` `chat-adjust-position-offset`,支持设置使用聊天记录模式中键盘弹出时占位高度偏移距离。 +3.`修复` 由于renderjs中聊天记录模式判断不准确导致的可能出现的从聊天记录页面跳转到其他页面后返回页面无法滚动的问题。 +4.`修复` 聊天记录模式首次加载失败后,发送消息顶部会显示加载失败文字的问题。 +5.`修复` 聊天记录模式nvue可能出现的键盘弹出无法滚动到底部的问题。 +6.`修复` 聊天记录模式+nvue滚动条无法展示的问题&底部会显示加载中的问题。 +7.`修复` 聊天记录模式监听键盘弹出可能出现的无法正常销毁的问题。 +8.`修复` 直接修改dataList的值组件内部的值未更新的问题。 ## 2.7.5(2024-01-23) 1.`新增` props:`chat-loading-more-default-as-loading`,支持设置在聊天记录模式中滑动到顶部状态为默认状态时,以加载中的状态展示。 2.`新增` slots:`chatNoMore`,支持自定义聊天记录模式没有更多数据view。 diff --git a/demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/components/z-paging-refresh.vue b/demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/components/z-paging-refresh.vue index 2877de8a..9d5a3d8a 100644 --- a/demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/components/z-paging-refresh.vue +++ b/demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/components/z-paging-refresh.vue @@ -197,10 +197,10 @@ .zp-r-right-time-text-rpx { margin-top: 10rpx; - font-size: 24rpx; + font-size: 26rpx; } .zp-r-right-time-text-px { margin-top: 5px; - font-size: 12px; + font-size: 13px; } diff --git a/demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js b/demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js index 91d87f1e..a0c1b279 100644 --- a/demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js +++ b/demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js @@ -2,7 +2,7 @@ export default { // 当前版本号 - version: '2.7.5', + version: '2.7.6', // 延迟操作的通用时间 delayTime: 100, // 请求失败时候全局emit使用的key diff --git a/demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/z-paging.vue b/demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/z-paging.vue index 4d523a95..2df85e1e 100644 --- a/demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/z-paging.vue +++ b/demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/z-paging.vue @@ -4,7 +4,7 @@ / /_____| |_) | (_| | (_| | | | | | (_| | /___| | .__/ \__,_|\__, |_|_| |_|\__, | |_| |___/ |___/ -v2.7.5 (2024-01-23) +v2.7.6 (2024-02-29) by ZXLee --> diff --git a/demo/z-paging-vue3-demo/uni_modules/z-paging/package.json b/demo/z-paging-vue3-demo/uni_modules/z-paging/package.json index 9dbe1374..b5df4647 100644 --- a/demo/z-paging-vue3-demo/uni_modules/z-paging/package.json +++ b/demo/z-paging-vue3-demo/uni_modules/z-paging/package.json @@ -2,7 +2,7 @@ "id": "z-paging", "name": "z-paging", "displayName": "【z-paging下拉刷新、上拉加载】高性能,全平台兼容。支持虚拟列表,分页全自动处理", - "version": "2.7.5", + "version": "2.7.6", "description": "超简单、低耦合!使用wxs+renderjs实现。支持自定义下拉刷新、上拉加载更多、虚拟列表(轻松渲染万级列表)、自动管理空数据图、无闪动聊天分页、本地分页、国际化等100+项配置", "keywords": [ "下拉刷新", diff --git a/demo/z-paging-vue3-demo/uni_modules/z-paging/readme.md b/demo/z-paging-vue3-demo/uni_modules/z-paging/readme.md index 2d4f8eab..b6eeb0f4 100644 --- a/demo/z-paging-vue3-demo/uni_modules/z-paging/readme.md +++ b/demo/z-paging-vue3-demo/uni_modules/z-paging/readme.md @@ -1,10 +1,10 @@ # z-paging

- logo + logo

-[![version](https://img.shields.io/badge/version-2.7.5-blue)](https://github.com/SmileZXLee/uni-z-paging) +[![version](https://img.shields.io/badge/version-2.7.6-blue)](https://github.com/SmileZXLee/uni-z-paging) [![license](https://img.shields.io/github/license/SmileZXLee/uni-z-paging)](https://en.wikipedia.org/wiki/MIT_License) `z-paging-x`现已支持uniapp x,持续完善中,插件地址👉🏻 [https://ext.dcloud.net.cn/plugin?name=z-paging-x](https://ext.dcloud.net.cn/plugin?name=z-paging-x) diff --git a/z-paging/README.md b/z-paging/README.md index f8730696..b6eeb0f4 100644 --- a/z-paging/README.md +++ b/z-paging/README.md @@ -1,10 +1,10 @@ # z-paging

- logo + logo

- -[![version](https://img.shields.io/badge/version-2.7.5-blue)](https://github.com/SmileZXLee/uni-z-paging) + +[![version](https://img.shields.io/badge/version-2.7.6-blue)](https://github.com/SmileZXLee/uni-z-paging) [![license](https://img.shields.io/github/license/SmileZXLee/uni-z-paging)](https://en.wikipedia.org/wiki/MIT_License) `z-paging-x`现已支持uniapp x,持续完善中,插件地址👉🏻 [https://ext.dcloud.net.cn/plugin?name=z-paging-x](https://ext.dcloud.net.cn/plugin?name=z-paging-x) diff --git a/z-paging/changelog.md b/z-paging/changelog.md index 60ddd9b6..3059fc9a 100644 --- a/z-paging/changelog.md +++ b/z-paging/changelog.md @@ -1,3 +1,12 @@ +## 2.7.6(2024-02-29) +1.`新增` `max-width`,支持设置`z-paging`的最大宽度,默认`z-paging`宽度铺满窗口。 +2.`新增` `chat-adjust-position-offset`,支持设置使用聊天记录模式中键盘弹出时占位高度偏移距离。 +3.`修复` 由于renderjs中聊天记录模式判断不准确导致的可能出现的从聊天记录页面跳转到其他页面后返回页面无法滚动的问题。 +4.`修复` 聊天记录模式首次加载失败后,发送消息顶部会显示加载失败文字的问题。 +5.`修复` 聊天记录模式nvue可能出现的键盘弹出无法滚动到底部的问题。 +6.`修复` 聊天记录模式+nvue滚动条无法展示的问题&底部会显示加载中的问题。 +7.`修复` 聊天记录模式监听键盘弹出可能出现的无法正常销毁的问题。 +8.`修复` 直接修改dataList的值组件内部的值未更新的问题。 ## 2.7.5(2024-01-23) 1.`新增` props:`chat-loading-more-default-as-loading`,支持设置在聊天记录模式中滑动到顶部状态为默认状态时,以加载中的状态展示。 2.`新增` slots:`chatNoMore`,支持自定义聊天记录模式没有更多数据view。 diff --git a/z-paging/components/z-paging/components/z-paging-refresh.vue b/z-paging/components/z-paging/components/z-paging-refresh.vue index 2877de8a..9d5a3d8a 100644 --- a/z-paging/components/z-paging/components/z-paging-refresh.vue +++ b/z-paging/components/z-paging/components/z-paging-refresh.vue @@ -197,10 +197,10 @@ .zp-r-right-time-text-rpx { margin-top: 10rpx; - font-size: 24rpx; + font-size: 26rpx; } .zp-r-right-time-text-px { margin-top: 5px; - font-size: 12px; + font-size: 13px; } diff --git a/z-paging/components/z-paging/js/z-paging-constant.js b/z-paging/components/z-paging/js/z-paging-constant.js index 91d87f1e..a0c1b279 100644 --- a/z-paging/components/z-paging/js/z-paging-constant.js +++ b/z-paging/components/z-paging/js/z-paging-constant.js @@ -2,7 +2,7 @@ export default { // 当前版本号 - version: '2.7.5', + version: '2.7.6', // 延迟操作的通用时间 delayTime: 100, // 请求失败时候全局emit使用的key diff --git a/z-paging/components/z-paging/z-paging.vue b/z-paging/components/z-paging/z-paging.vue index 4d523a95..2df85e1e 100644 --- a/z-paging/components/z-paging/z-paging.vue +++ b/z-paging/components/z-paging/z-paging.vue @@ -4,7 +4,7 @@ / /_____| |_) | (_| | (_| | | | | | (_| | /___| | .__/ \__,_|\__, |_|_| |_|\__, | |_| |___/ |___/ -v2.7.5 (2024-01-23) +v2.7.6 (2024-02-29) by ZXLee --> diff --git a/z-paging/package.json b/z-paging/package.json index 9dbe1374..b5df4647 100644 --- a/z-paging/package.json +++ b/z-paging/package.json @@ -2,7 +2,7 @@ "id": "z-paging", "name": "z-paging", "displayName": "【z-paging下拉刷新、上拉加载】高性能,全平台兼容。支持虚拟列表,分页全自动处理", - "version": "2.7.5", + "version": "2.7.6", "description": "超简单、低耦合!使用wxs+renderjs实现。支持自定义下拉刷新、上拉加载更多、虚拟列表(轻松渲染万级列表)、自动管理空数据图、无闪动聊天分页、本地分页、国际化等100+项配置", "keywords": [ "下拉刷新",