Skip to content

Commit

Permalink
v2.7.0-released
Browse files Browse the repository at this point in the history
  • Loading branch information
SmileZXLee committed Jan 7, 2024
1 parent 834f64a commit c4c0c1d
Show file tree
Hide file tree
Showing 15 changed files with 33 additions and 27 deletions.
12 changes: 7 additions & 5 deletions demo/z-paging-demo/uni_modules/z-paging/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## 2.6.9(2024-01-01
## 2.7.0(2024-01-07
2024新年快乐!!祝大家在新的一年里工作顺利,事事顺心!
1.`新增` `chat-record-more-offset`,支持控制使用聊天记录模式时滚动到顶部后,列表垂直移动偏移距离。
2.`修复` nvue中`nvueWaterfallConfig``nvueRefresherStyle`报错的问题。
3.`修复` 下拉刷新可能出现的loading变大闪动问题。
4.`优化` 核心逻辑添加注释&规范插件&demo代码格式。
1.`新增` 全新的聊天记录模式设计!将vue中的聊天记录模式与nvue中对齐,完全解决了聊天记录模式滚动到顶部加载更多在vue中抖动的问题,同时将聊天记录模式键盘自动弹出自动上推页面交由`z-paging`处理,解决了由此引发的各种问题,尤其是在微信小程序中导航栏被键盘顶出屏幕外的问题。如果您使用了`z-paging`的聊天记录模式,强烈建议更新,写法有一定变更,具体请参见demo。
2.`新增` `swiper-demo`新增`onShow`时候调用reload演示。
3.`修复` 修复滚动相关方法在微信小程序中首次滚动动画无效的问题。
4.`修复` props设置单位,单位为px时报错的问题。
5.`修复` 在某些情况下`z-paging`加载了但是未渲染时,reload无效的问题。
6.`修复` 底部loading动画未生效的问题。
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

export default {
// 当前版本号
version: '2.6.9',
version: '2.7.0',
// 延迟操作的通用时间
delayTime: 100,
// 请求失败时候全局emit使用的key
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/ /_____| |_) | (_| | (_| | | | | | (_| |
/___| | .__/ \__,_|\__, |_|_| |_|\__, |
|_| |___/ |___/
v2.6.9 (2024-01-01)
v2.7.0 (2024-01-07)
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.9",
"version": "2.7.0",
"description": "超简单、低耦合!使用wxs+renderjs实现。支持长列表优化,支持自定义下拉刷新、上拉加载更多,支持自动管理空数据图、点击返回顶部,支持聊天分页、本地分页,支持国际化等100+项配置",
"keywords": [
"下拉刷新",
Expand Down
2 changes: 1 addition & 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,7 +4,7 @@
<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.9-blue)](https://github.com/SmileZXLee/uni-z-paging)
[![version](https://img.shields.io/badge/version-2.7.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)

`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
12 changes: 7 additions & 5 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,8 @@
## 2.6.9(2024-01-01
## 2.7.0(2024-01-07
2024新年快乐!!祝大家在新的一年里工作顺利,事事顺心!
1.`新增` `chat-record-more-offset`,支持控制使用聊天记录模式时滚动到顶部后,列表垂直移动偏移距离。
2.`修复` nvue中`nvueWaterfallConfig``nvueRefresherStyle`报错的问题。
3.`修复` 下拉刷新可能出现的loading变大闪动问题。
4.`优化` 核心逻辑添加注释&规范插件&demo代码格式。
1.`新增` 全新的聊天记录模式设计!将vue中的聊天记录模式与nvue中对齐,完全解决了聊天记录模式滚动到顶部加载更多在vue中抖动的问题,同时将聊天记录模式键盘自动弹出自动上推页面交由`z-paging`处理,解决了由此引发的各种问题,尤其是在微信小程序中导航栏被键盘顶出屏幕外的问题。如果您使用了`z-paging`的聊天记录模式,强烈建议更新,写法有一定变更,具体请参见demo。
2.`新增` `swiper-demo`新增`onShow`时候调用reload演示。
3.`修复` 修复滚动相关方法在微信小程序中首次滚动动画无效的问题。
4.`修复` props设置单位,单位为px时报错的问题。
5.`修复` 在某些情况下`z-paging`加载了但是未渲染时,reload无效的问题。
6.`修复` 底部loading动画未生效的问题。
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

export default {
// 当前版本号
version: '2.6.9',
version: '2.7.0',
// 延迟操作的通用时间
delayTime: 100,
// 请求失败时候全局emit使用的key
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/ /_____| |_) | (_| | (_| | | | | | (_| |
/___| | .__/ \__,_|\__, |_|_| |_|\__, |
|_| |___/ |___/
v2.6.9 (2024-01-01)
v2.7.0 (2024-01-07)
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.9",
"version": "2.7.0",
"description": "超简单、低耦合!使用wxs+renderjs实现。支持长列表优化,支持自定义下拉刷新、上拉加载更多,支持自动管理空数据图、点击返回顶部,支持聊天分页、本地分页,支持国际化等100+项配置",
"keywords": [
"下拉刷新",
Expand Down
2 changes: 1 addition & 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,7 +4,7 @@
<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.9-blue)](https://github.com/SmileZXLee/uni-z-paging)
[![version](https://img.shields.io/badge/version-2.7.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)

`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
2 changes: 1 addition & 1 deletion z-paging/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<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.9-blue)](https://github.com/SmileZXLee/uni-z-paging)
[![version](https://img.shields.io/badge/version-2.7.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)

`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
12 changes: 7 additions & 5 deletions z-paging/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## 2.6.9(2024-01-01
## 2.7.0(2024-01-07
2024新年快乐!!祝大家在新的一年里工作顺利,事事顺心!
1.`新增` `chat-record-more-offset`,支持控制使用聊天记录模式时滚动到顶部后,列表垂直移动偏移距离。
2.`修复` nvue中`nvueWaterfallConfig``nvueRefresherStyle`报错的问题。
3.`修复` 下拉刷新可能出现的loading变大闪动问题。
4.`优化` 核心逻辑添加注释&规范插件&demo代码格式。
1.`新增` 全新的聊天记录模式设计!将vue中的聊天记录模式与nvue中对齐,完全解决了聊天记录模式滚动到顶部加载更多在vue中抖动的问题,同时将聊天记录模式键盘自动弹出自动上推页面交由`z-paging`处理,解决了由此引发的各种问题,尤其是在微信小程序中导航栏被键盘顶出屏幕外的问题。如果您使用了`z-paging`的聊天记录模式,强烈建议更新,写法有一定变更,具体请参见demo。
2.`新增` `swiper-demo`新增`onShow`时候调用reload演示。
3.`修复` 修复滚动相关方法在微信小程序中首次滚动动画无效的问题。
4.`修复` props设置单位,单位为px时报错的问题。
5.`修复` 在某些情况下`z-paging`加载了但是未渲染时,reload无效的问题。
6.`修复` 底部loading动画未生效的问题。
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.6.9',
version: '2.7.0',
// 延迟操作的通用时间
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.6.9 (2024-01-01)
v2.7.0 (2024-01-07)
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.9",
"version": "2.7.0",
"description": "超简单、低耦合!使用wxs+renderjs实现。支持长列表优化,支持自定义下拉刷新、上拉加载更多,支持自动管理空数据图、点击返回顶部,支持聊天分页、本地分页,支持国际化等100+项配置",
"keywords": [
"下拉刷新",
Expand Down

0 comments on commit c4c0c1d

Please sign in to comment.