Skip to content

Commit

Permalink
v2.7.6-released
Browse files Browse the repository at this point in the history
  • Loading branch information
SmileZXLee committed Feb 29, 2024
1 parent cdc45db commit eaf2bf2
Show file tree
Hide file tree
Showing 18 changed files with 49 additions and 22 deletions.
9 changes: 9 additions & 0 deletions demo/z-paging-demo/uni_modules/z-paging/changelog.md
Original file line number Diff line number Diff line change
@@ -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。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

export default {
// 当前版本号
version: '2.7.5',
version: '2.7.6',
// 延迟操作的通用时间
delayTime: 100,
// 请求失败时候全局emit使用的key
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/ /_____| |_) | (_| | (_| | | | | | (_| |
/___| | .__/ \__,_|\__, |_|_| |_|\__, |
|_| |___/ |___/
v2.7.5 (2024-01-23)
v2.7.6 (2024-02-29)
by ZXLee
-->
<!-- 文档地址:https://z-paging.zxlee.cn -->
Expand Down
2 changes: 1 addition & 1 deletion demo/z-paging-demo/uni_modules/z-paging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
"下拉刷新",
Expand Down
4 changes: 2 additions & 2 deletions demo/z-paging-demo/uni_modules/z-paging/readme.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# z-paging

<p align="center">
<img alt="logo" src="https://z-paging.zxlee.cn/img/title-logo.png" height="100" style="margin-bottom: 50px;">
<img alt="logo" src="https://z-paging.zxlee.cn/img/title-logo.png" height="100" style="margin-bottom: 50px;" />
</p>
<img height="0" width="0" src="https://api.z-notify.zxlee.cn/v1/public/statistics/8293556910106066944/addOnly?from=uni" />
[![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)
Expand Down
9 changes: 9 additions & 0 deletions demo/z-paging-vue3-demo/uni_modules/z-paging/changelog.md
Original file line number Diff line number Diff line change
@@ -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。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

export default {
// 当前版本号
version: '2.7.5',
version: '2.7.6',
// 延迟操作的通用时间
delayTime: 100,
// 请求失败时候全局emit使用的key
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/ /_____| |_) | (_| | (_| | | | | | (_| |
/___| | .__/ \__,_|\__, |_|_| |_|\__, |
|_| |___/ |___/
v2.7.5 (2024-01-23)
v2.7.6 (2024-02-29)
by ZXLee
-->
<!-- 文档地址:https://z-paging.zxlee.cn -->
Expand Down
2 changes: 1 addition & 1 deletion demo/z-paging-vue3-demo/uni_modules/z-paging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
"下拉刷新",
Expand Down
4 changes: 2 additions & 2 deletions demo/z-paging-vue3-demo/uni_modules/z-paging/readme.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# z-paging

<p align="center">
<img alt="logo" src="https://z-paging.zxlee.cn/img/title-logo.png" height="100" style="margin-bottom: 50px;">
<img alt="logo" src="https://z-paging.zxlee.cn/img/title-logo.png" height="100" style="margin-bottom: 50px;" />
</p>
<img height="0" width="0" src="https://api.z-notify.zxlee.cn/v1/public/statistics/8293556910106066944/addOnly?from=uni" />
[![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)
Expand Down
6 changes: 3 additions & 3 deletions z-paging/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# z-paging

<p align="center">
<img alt="logo" src="https://z-paging.zxlee.cn/img/title-logo.png" height="100" style="margin-bottom: 50px;">
<img alt="logo" src="https://z-paging.zxlee.cn/img/title-logo.png" height="100" style="margin-bottom: 50px;" />
</p>

[![version](https://img.shields.io/badge/version-2.7.5-blue)](https://github.com/SmileZXLee/uni-z-paging)
<img height="0" width="0" src="https://api.z-notify.zxlee.cn/v1/public/statistics/8293556910106066944/addOnly?from=uni" />
[![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)
Expand Down
9 changes: 9 additions & 0 deletions z-paging/changelog.md
Original file line number Diff line number Diff line change
@@ -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。
Expand Down
4 changes: 2 additions & 2 deletions z-paging/components/z-paging/components/z-paging-refresh.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
</style>
2 changes: 1 addition & 1 deletion z-paging/components/z-paging/js/z-paging-constant.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

export default {
// 当前版本号
version: '2.7.5',
version: '2.7.6',
// 延迟操作的通用时间
delayTime: 100,
// 请求失败时候全局emit使用的key
Expand Down
2 changes: 1 addition & 1 deletion z-paging/components/z-paging/z-paging.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/ /_____| |_) | (_| | (_| | | | | | (_| |
/___| | .__/ \__,_|\__, |_|_| |_|\__, |
|_| |___/ |___/
v2.7.5 (2024-01-23)
v2.7.6 (2024-02-29)
by ZXLee
-->
<!-- 文档地址:https://z-paging.zxlee.cn -->
Expand Down
2 changes: 1 addition & 1 deletion z-paging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
"下拉刷新",
Expand Down

0 comments on commit eaf2bf2

Please sign in to comment.