File tree Expand file tree Collapse file tree 7 files changed +18
-19
lines changed
Expand file tree Collapse file tree 7 files changed +18
-19
lines changed Original file line number Diff line number Diff line change 11## 版本日志
22
3+ #### v1.3.1 :2024-12-23
4+ * 修复BUG:快速滑动时,出现收起动画不执行的问题。 ([ #21 ] ( https://github.com/jenly1314/UltraSwipeRefresh/issues/21 ) )
5+
36#### v1.3.0 :2024-7-20
47* 更新compose至v1.6.0 (v1.5.0 -> v1.6.0) ([ #13 ] ( https://github.com/jenly1314/UltraSwipeRefresh/issues/13 ) )
58* 新增参数` alwaysScrollable ` :是否始终可以滚动
Original file line number Diff line number Diff line change 3737
3838 ```gradle
3939 // 极致体验的Compose刷新组件 (*必须)
40- implementation 'com.github.jenly1314.UltraSwipeRefresh:refresh:1.3.0 '
40+ implementation 'com.github.jenly1314.UltraSwipeRefresh:refresh:1.3.1 '
4141
4242 // 经典样式的指示器 (可选)
43- implementation 'com.github.jenly1314.UltraSwipeRefresh:refresh-indicator-classic:1.3.0 '
43+ implementation 'com.github.jenly1314.UltraSwipeRefresh:refresh-indicator-classic:1.3.1 '
4444 // Lottie动画指示器 (可选)
45- implementation 'com.github.jenly1314.UltraSwipeRefresh:refresh-indicator-lottie:1.3.0 '
45+ implementation 'com.github.jenly1314.UltraSwipeRefresh:refresh-indicator-lottie:1.3.1 '
4646 // 进度条样式的指示器 (可选)
47- implementation 'com.github.jenly1314.UltraSwipeRefresh:refresh-indicator-progress:1.3.0 '
47+ implementation 'com.github.jenly1314.UltraSwipeRefresh:refresh-indicator-progress:1.3.1 '
4848 ```
4949
5050## 使用
@@ -197,13 +197,9 @@ UltraSwipeRefreshTheme.config = UltraSwipeRefreshTheme.config.copy(
197197
198198## 版本日志
199199
200- #### 待发布版本( [ 提前体验 ] ( test.md ) )
201- * 修复了一些已知问题
200+ #### v1.3.1 :2024-12-23
201+ * 修复BUG:快速滑动时,出现收起动画不执行的问题。 ( [ # 21 ] ( https://github.com/jenly1314/UltraSwipeRefresh/issues/21 ) )
202202
203- #### v1.3.0 :2024-7-20
204- * 更新compose至v1.6.0 (v1.5.0 -> v1.6.0) ([ #13 ] ( https://github.com/jenly1314/UltraSwipeRefresh/issues/13 ) )
205- * 新增参数` alwaysScrollable ` :是否始终可以滚动
206- * 优化一些细节
207203
208204#### [ 查看更多版本日志] ( CHANGELOG.md )
209205
Original file line number Diff line number Diff line change 1111 "type" : " SINGLE" ,
1212 "filters" : [],
1313 "attributes" : [],
14- "versionCode" : 7 ,
15- "versionName" : " 1.3.0 " ,
14+ "versionCode" : 8 ,
15+ "versionName" : " 1.3.1 " ,
1616 "outputFile" : " app-release.apk"
1717 }
1818 ],
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ kotlin.code.style=official
2222# thereby reducing the size of the R class for that library
2323android.nonTransitiveRClass =true
2424
25- VERSION_NAME =1.3.0
26- VERSION_CODE =7
25+ VERSION_NAME =1.3.1
26+ VERSION_CODE =8
2727GROUP =com.github.jenly1314.UltraSwipeRefresh
2828
2929POM_DESCRIPTION =UltraSwipeRefresh for Android
@@ -48,4 +48,4 @@ SONATYPE_HOST=S01
4848RELEASE_REPOSITORY_URL =https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/
4949SNAPSHOT_REPOSITORY_URL =https://s01.oss.sonatype.org/content/repositories/snapshots/
5050
51- RELEASE_SIGNING_ENABLED =false
51+ RELEASE_SIGNING_ENABLED =false
Original file line number Diff line number Diff line change 11
2- ## 待发布版本
2+ ## ~ 待发布版本~ (已发布v1.3.1)
33
44待发布版本暂使用 ** Jit Pack** 仓库;待收集的一些问题测试稳定后,再统一发布正式版本至 ** Maven Central** 仓库。
55
Original file line number Diff line number Diff line change 11// App
22def app_version = [:]
3- app_version. versionCode = 7
4- app_version. versionName = " 1.3.0 "
3+ app_version. versionName = " 1.3.1 "
4+ app_version. versionCode = 8
55ext. app_version = app_version
66
77// build version
@@ -33,4 +33,4 @@ versions.junit = "4.13.2"
3333versions. android_ext_junit = " 1.1.5"
3434versions. espresso = " 3.5.1"
3535
36- ext. versions = versions
36+ ext. versions = versions
You can’t perform that action at this time.
0 commit comments