Skip to content

Commit 4d14790

Browse files
committed
v2.8.0-released
1 parent 2fbc366 commit 4d14790

File tree

17 files changed

+26
-14
lines changed

17 files changed

+26
-14
lines changed

demo/z-paging-demo/components/u-navbar/u-navbar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@
241241
return (screenWidth * Number.parseFloat(rpx)) / 750;
242242
// #endif
243243
// #ifndef APP-HARMONY
244-
return this.rpx2px(rpx);
244+
return uni.upx2px(rpx);
245245
// #endif
246246
}
247247
}

demo/z-paging-demo/uni_modules/z-paging/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.8.0(2024-10-21)
2+
1.`新增` 全面支持鸿蒙Next。
3+
2.`修复` 设置了`refresher-complete-delay`后,在下拉刷新期间调用reload导致的无法再次下拉刷新的问题。
4+
3.`优化` 废弃虚拟列表transformY顶部占位方案,修改为空view占位。解决因使用旧方案导致的vue3中可能出现的虚拟列表闪动问题。提升虚拟列表的兼容性。
15
## 2.7.12(2024-09-22)
26
1.`新增` 虚拟列表+吸顶演示(一般写法)演示&`@virtualPlaceholderTopHeight`,用于监听虚拟列表顶部占位高度改变。
37
2.`新增` 聊天记录模式+虚拟列表演示&虚拟列表兼容说明。

demo/z-paging-demo/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
export default {
44
// 当前版本号
5-
version: '2.7.12',
5+
version: '2.8.0',
66
// 延迟操作的通用时间
77
delayTime: 100,
88
// 请求失败时候全局emit使用的key

demo/z-paging-demo/uni_modules/z-paging/components/z-paging/z-paging.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/ /_____| |_) | (_| | (_| | | | | | (_| |
55
/___| | .__/ \__,_|\__, |_|_| |_|\__, |
66
|_| |___/ |___/
7-
v2.7.12 (2024-09-22)
7+
v2.8.0 (2024-10-22)
88
by ZXLee
99
-->
1010
<!-- 文档地址:https://z-paging.zxlee.cn -->

demo/z-paging-demo/uni_modules/z-paging/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "z-paging",
33
"name": "z-paging",
44
"displayName": "【z-paging下拉刷新、上拉加载】高性能,全平台兼容。支持虚拟列表,分页全自动处理",
5-
"version": "2.7.12",
5+
"version": "2.8.0",
66
"description": "超简单、低耦合!使用wxs+renderjs实现。支持自定义下拉刷新、上拉加载更多、虚拟列表、下拉进入二楼、自动管理空数据图、无闪动聊天分页、本地分页、国际化等100+项配置",
77
"keywords": [
88
"下拉刷新",

demo/z-paging-demo/uni_modules/z-paging/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<img alt="logo" src="https://z-paging.zxlee.cn/img/title-logo.png" height="100" style="margin-bottom: 50px;" />
55
</p>
66

7-
[![version](https://img.shields.io/badge/version-2.7.12-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)
7+
[![version](https://img.shields.io/badge/version-2.8.0-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)
88
<img height="0" width="0" src="https://api.z-notify.zxlee.cn/v1/public/statistics/8293556910106066944/addOnly?from=uni" />
99

1010
`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)

demo/z-paging-vue3-demo/components/u-navbar/u-navbar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@
241241
return (screenWidth * Number.parseFloat(rpx)) / 750;
242242
// #endif
243243
// #ifndef APP-HARMONY
244-
return this.rpx2px(rpx);
244+
return uni.upx2px(rpx);
245245
// #endif
246246
}
247247
}

demo/z-paging-vue3-demo/uni_modules/z-paging/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.8.0(2024-10-21)
2+
1.`新增` 全面支持鸿蒙Next。
3+
2.`修复` 设置了`refresher-complete-delay`后,在下拉刷新期间调用reload导致的无法再次下拉刷新的问题。
4+
3.`优化` 废弃虚拟列表transformY顶部占位方案,修改为空view占位。解决因使用旧方案导致的vue3中可能出现的虚拟列表闪动问题。提升虚拟列表的兼容性。
15
## 2.7.12(2024-09-22)
26
1.`新增` 虚拟列表+吸顶演示(一般写法)演示&`@virtualPlaceholderTopHeight`,用于监听虚拟列表顶部占位高度改变。
37
2.`新增` 聊天记录模式+虚拟列表演示&虚拟列表兼容说明。

demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
export default {
44
// 当前版本号
5-
version: '2.7.12',
5+
version: '2.8.0',
66
// 延迟操作的通用时间
77
delayTime: 100,
88
// 请求失败时候全局emit使用的key

demo/z-paging-vue3-demo/uni_modules/z-paging/components/z-paging/z-paging.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/ /_____| |_) | (_| | (_| | | | | | (_| |
55
/___| | .__/ \__,_|\__, |_|_| |_|\__, |
66
|_| |___/ |___/
7-
v2.7.12 (2024-09-22)
7+
v2.8.0 (2024-10-22)
88
by ZXLee
99
-->
1010
<!-- 文档地址:https://z-paging.zxlee.cn -->

demo/z-paging-vue3-demo/uni_modules/z-paging/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "z-paging",
33
"name": "z-paging",
44
"displayName": "【z-paging下拉刷新、上拉加载】高性能,全平台兼容。支持虚拟列表,分页全自动处理",
5-
"version": "2.7.12",
5+
"version": "2.8.0",
66
"description": "超简单、低耦合!使用wxs+renderjs实现。支持自定义下拉刷新、上拉加载更多、虚拟列表、下拉进入二楼、自动管理空数据图、无闪动聊天分页、本地分页、国际化等100+项配置",
77
"keywords": [
88
"下拉刷新",

demo/z-paging-vue3-demo/uni_modules/z-paging/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<img alt="logo" src="https://z-paging.zxlee.cn/img/title-logo.png" height="100" style="margin-bottom: 50px;" />
55
</p>
66

7-
[![version](https://img.shields.io/badge/version-2.7.12-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)
7+
[![version](https://img.shields.io/badge/version-2.8.0-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)
88
<img height="0" width="0" src="https://api.z-notify.zxlee.cn/v1/public/statistics/8293556910106066944/addOnly?from=uni" />
99

1010
`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)

z-paging/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<img alt="logo" src="https://z-paging.zxlee.cn/img/title-logo.png" height="100" style="margin-bottom: 50px;" />
55
</p>
66

7-
[![version](https://img.shields.io/badge/version-2.7.12-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)
7+
[![version](https://img.shields.io/badge/version-2.8.0-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)
88
<img height="0" width="0" src="https://api.z-notify.zxlee.cn/v1/public/statistics/8293556910106066944/addOnly?from=uni" />
99

1010
`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)

z-paging/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.8.0(2024-10-21)
2+
1.`新增` 全面支持鸿蒙Next。
3+
2.`修复` 设置了`refresher-complete-delay`后,在下拉刷新期间调用reload导致的无法再次下拉刷新的问题。
4+
3.`优化` 废弃虚拟列表transformY顶部占位方案,修改为空view占位。解决因使用旧方案导致的vue3中可能出现的虚拟列表闪动问题。提升虚拟列表的兼容性。
15
## 2.7.12(2024-09-22)
26
1.`新增` 虚拟列表+吸顶演示(一般写法)演示&`@virtualPlaceholderTopHeight`,用于监听虚拟列表顶部占位高度改变。
37
2.`新增` 聊天记录模式+虚拟列表演示&虚拟列表兼容说明。

z-paging/components/z-paging/js/z-paging-constant.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
export default {
44
// 当前版本号
5-
version: '2.7.12',
5+
version: '2.8.0',
66
// 延迟操作的通用时间
77
delayTime: 100,
88
// 请求失败时候全局emit使用的key

z-paging/components/z-paging/z-paging.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/ /_____| |_) | (_| | (_| | | | | | (_| |
55
/___| | .__/ \__,_|\__, |_|_| |_|\__, |
66
|_| |___/ |___/
7-
v2.7.12 (2024-09-22)
7+
v2.8.0 (2024-10-22)
88
by ZXLee
99
-->
1010
<!-- 文档地址:https://z-paging.zxlee.cn -->

z-paging/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "z-paging",
33
"name": "z-paging",
44
"displayName": "【z-paging下拉刷新、上拉加载】高性能,全平台兼容。支持虚拟列表,分页全自动处理",
5-
"version": "2.7.12",
5+
"version": "2.8.0",
66
"description": "超简单、低耦合!使用wxs+renderjs实现。支持自定义下拉刷新、上拉加载更多、虚拟列表、下拉进入二楼、自动管理空数据图、无闪动聊天分页、本地分页、国际化等100+项配置",
77
"keywords": [
88
"下拉刷新",

0 commit comments

Comments
 (0)