Skip to content

Commit

Permalink
v2.6.7-released
Browse files Browse the repository at this point in the history
  • Loading branch information
SmileZXLee committed Dec 27, 2023
1 parent 79fdd6d commit 9844e6c
Show file tree
Hide file tree
Showing 15 changed files with 36 additions and 30 deletions.
12 changes: 6 additions & 6 deletions demo/z-paging-demo/uni_modules/z-paging/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## 2.6.6(2023-12-22
`修复` 全局配置值为false或0时不生效的问题
## 2.6.5(2023-12-20)
1.`新增` `updateFixedLayout`方法,以修复在`iOS+h5+tabbar+fixed+底部有安全区域`的设备中从tabbar页面跳转到无tabbar页面后返回,底部有一段空白区域的问题
2.`优化` `swiper-demo`性能,切换到当前页才渲染`z-paging`组件&组件卸载后禁止继续查询节点信息,修复由此引发的`Error: Not Found:Page`的问题
3.`优化` `z-paging`配置逻辑&废除不合理的配置&优化组件初始化加载性能。
## 2.6.7(2023-12-27
1.`新增` props:`unit`,支持自定义`z-paging`内置布局单位为rpx或px
2.`优化` 之前在安卓中`scroll-view`有概率滚动到顶部时`scrollTop`不为0导致下拉刷新判断异常,经过测试在`HX3.98+`已修复,关闭容错判断并解决由此引发的安卓在特定位置下拉抖动的问题。
3.`优化` 下拉刷新从滚动到下拉状态平滑过渡效果
4.`优化` `vue3+appvue`中支持`main.js``uni.$zp`全局配置

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// [z-paging]常量

export default {
version: '2.6.6',
version: '2.6.7',
delayTime: 100,
errorUpdateKey: 'z-paging-error-emit',
completeUpdateKey: 'z-paging-complete-emit',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/ /_____| |_) | (_| | (_| | | | | | (_| |
/___| | .__/ \__,_|\__, |_|_| |_|\__, |
|_| |___/ |___/
v2.6.6 (2023-12-22)
v2.6.7 (2023-12-27)
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下拉刷新、上拉加载】高性能,全平台兼容。支持虚拟列表,支持nvue、vue3",
"version": "2.6.6",
"version": "2.6.7",
"description": "超简单、低耦合!使用wxs+renderjs实现。支持长列表优化,支持自定义下拉刷新、上拉加载更多,支持自动管理空数据图、点击返回顶部,支持聊天分页、本地分页,支持国际化等100+项配置",
"keywords": [
"下拉刷新",
Expand Down
4 changes: 3 additions & 1 deletion demo/z-paging-demo/uni_modules/z-paging/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
<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.6.6-blue)](https://github.com/SmileZXLee/uni-z-paging)
[![version](https://img.shields.io/badge/version-2.6.7-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)

### 文档地址:[https://z-paging.zxlee.cn](https://z-paging.zxlee.cn)

### 更新组件前,请注意[版本差异](https://z-paging.zxlee.cn/start/upgrade-guide.html)
Expand Down
12 changes: 6 additions & 6 deletions demo/z-paging-vue3-demo/uni_modules/z-paging/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## 2.6.6(2023-12-22
`修复` 全局配置值为false或0时不生效的问题
## 2.6.5(2023-12-20)
1.`新增` `updateFixedLayout`方法,以修复在`iOS+h5+tabbar+fixed+底部有安全区域`的设备中从tabbar页面跳转到无tabbar页面后返回,底部有一段空白区域的问题
2.`优化` `swiper-demo`性能,切换到当前页才渲染`z-paging`组件&组件卸载后禁止继续查询节点信息,修复由此引发的`Error: Not Found:Page`的问题
3.`优化` `z-paging`配置逻辑&废除不合理的配置&优化组件初始化加载性能。
## 2.6.7(2023-12-27
1.`新增` props:`unit`,支持自定义`z-paging`内置布局单位为rpx或px
2.`优化` 之前在安卓中`scroll-view`有概率滚动到顶部时`scrollTop`不为0导致下拉刷新判断异常,经过测试在`HX3.98+`已修复,关闭容错判断并解决由此引发的安卓在特定位置下拉抖动的问题。
3.`优化` 下拉刷新从滚动到下拉状态平滑过渡效果
4.`优化` `vue3+appvue`中支持`main.js``uni.$zp`全局配置

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// [z-paging]常量

export default {
version: '2.6.6',
version: '2.6.7',
delayTime: 100,
errorUpdateKey: 'z-paging-error-emit',
completeUpdateKey: 'z-paging-complete-emit',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/ /_____| |_) | (_| | (_| | | | | | (_| |
/___| | .__/ \__,_|\__, |_|_| |_|\__, |
|_| |___/ |___/
v2.6.6 (2023-12-22)
v2.6.7 (2023-12-27)
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下拉刷新、上拉加载】高性能,全平台兼容。支持虚拟列表,支持nvue、vue3",
"version": "2.6.6",
"version": "2.6.7",
"description": "超简单、低耦合!使用wxs+renderjs实现。支持长列表优化,支持自定义下拉刷新、上拉加载更多,支持自动管理空数据图、点击返回顶部,支持聊天分页、本地分页,支持国际化等100+项配置",
"keywords": [
"下拉刷新",
Expand Down
4 changes: 3 additions & 1 deletion demo/z-paging-vue3-demo/uni_modules/z-paging/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
<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.6.6-blue)](https://github.com/SmileZXLee/uni-z-paging)
[![version](https://img.shields.io/badge/version-2.6.7-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)

### 文档地址:[https://z-paging.zxlee.cn](https://z-paging.zxlee.cn)

### 更新组件前,请注意[版本差异](https://z-paging.zxlee.cn/start/upgrade-guide.html)
Expand Down
4 changes: 3 additions & 1 deletion z-paging/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
<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.6.6-blue)](https://github.com/SmileZXLee/uni-z-paging)
[![version](https://img.shields.io/badge/version-2.6.7-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)

### 文档地址:[https://z-paging.zxlee.cn](https://z-paging.zxlee.cn)

### 更新组件前,请注意[版本差异](https://z-paging.zxlee.cn/start/upgrade-guide.html)
Expand Down
12 changes: 6 additions & 6 deletions z-paging/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## 2.6.6(2023-12-22
`修复` 全局配置值为false或0时不生效的问题
## 2.6.5(2023-12-20)
1.`新增` `updateFixedLayout`方法,以修复在`iOS+h5+tabbar+fixed+底部有安全区域`的设备中从tabbar页面跳转到无tabbar页面后返回,底部有一段空白区域的问题
2.`优化` `swiper-demo`性能,切换到当前页才渲染`z-paging`组件&组件卸载后禁止继续查询节点信息,修复由此引发的`Error: Not Found:Page`的问题
3.`优化` `z-paging`配置逻辑&废除不合理的配置&优化组件初始化加载性能。
## 2.6.7(2023-12-27
1.`新增` props:`unit`,支持自定义`z-paging`内置布局单位为rpx或px
2.`优化` 之前在安卓中`scroll-view`有概率滚动到顶部时`scrollTop`不为0导致下拉刷新判断异常,经过测试在`HX3.98+`已修复,关闭容错判断并解决由此引发的安卓在特定位置下拉抖动的问题。
3.`优化` 下拉刷新从滚动到下拉状态平滑过渡效果
4.`优化` `vue3+appvue`中支持`main.js``uni.$zp`全局配置

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
@@ -1,7 +1,7 @@
// [z-paging]常量

export default {
version: '2.6.6',
version: '2.6.7',
delayTime: 100,
errorUpdateKey: 'z-paging-error-emit',
completeUpdateKey: 'z-paging-complete-emit',
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.6.6 (2023-12-22)
v2.6.7 (2023-12-27)
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下拉刷新、上拉加载】高性能,全平台兼容。支持虚拟列表,支持nvue、vue3",
"version": "2.6.6",
"version": "2.6.7",
"description": "超简单、低耦合!使用wxs+renderjs实现。支持长列表优化,支持自定义下拉刷新、上拉加载更多,支持自动管理空数据图、点击返回顶部,支持聊天分页、本地分页,支持国际化等100+项配置",
"keywords": [
"下拉刷新",
Expand Down

0 comments on commit 9844e6c

Please sign in to comment.