Skip to content

Commit

Permalink
发布v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jenly1314 committed May 22, 2024
1 parent 4550416 commit a700036
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

> **UltraSwipeRefresh** 的设计之初,主要参考了谷歌官方的[SwipeRefresh](https://github.com/google/accompanist/tree/main/swiperefresh) 和第三方的[SmartRefreshLayout](https://github.com/scwang90/SmartRefreshLayout) ,吸取了其优秀的设计思想;致力于打造一个极致体验的 **Compose** 刷新组件。
> 这里简单的概括下 **UltraSwipeRefresh** 主要的一些功能特色:支持多种滑动方式:平移、固定内容、固定在背后、固定在前面; **headerIndicator****footerIndicator** 可随意定制,并且 **Header****Footer** 的样式与滑动模式可随意组合。
> 这里简单的概括下 **UltraSwipeRefresh** 主要的一些功能特色:支持多种滑动方式:平移、固定内容、固定在背后、固定在前面; **headerIndicator****footerIndicator** 可任意定制,并且 **Header****Footer** 的样式与滑动模式可随意组合。

## Gif 展示
Expand All @@ -37,14 +37,14 @@

```gradle
// 极致体验的Compose刷新组件 (*必须)
implementation 'com.github.jenly1314.UltraSwipeRefresh:refresh:1.1.1'
implementation 'com.github.jenly1314.UltraSwipeRefresh:refresh:1.1.2'
// 经典样式的指示器 (可选)
implementation 'com.github.jenly1314.UltraSwipeRefresh:refresh-indicator-classic:1.1.1'
implementation 'com.github.jenly1314.UltraSwipeRefresh:refresh-indicator-classic:1.1.2'
// Lottie动画指示器 (可选)
implementation 'com.github.jenly1314.UltraSwipeRefresh:refresh-indicator-lottie:1.1.1'
implementation 'com.github.jenly1314.UltraSwipeRefresh:refresh-indicator-lottie:1.1.2'
// 进度条样式的指示器 (可选)
implementation 'com.github.jenly1314.UltraSwipeRefresh:refresh-indicator-progress:1.1.1'
implementation 'com.github.jenly1314.UltraSwipeRefresh:refresh-indicator-progress:1.1.2'
```

## 使用
Expand Down Expand Up @@ -198,6 +198,9 @@ UltraSwipeRefreshTheme.config = UltraSwipeRefreshTheme.config.copy(

## 版本记录

#### v1.1.2 2024-5-22
* 修复BUG:部分机型在某些特定场景下,出现“无法再次触发下拉刷新”的问题。([#7](https://github.com/jenly1314/UltraSwipeRefresh/issues/7)

#### v1.1.1 2024-4-20
* 修复BUG:刷新状态变化太快时,导致”完成时的定格提示动画”不执行的问题。([#4](https://github.com/jenly1314/UltraSwipeRefresh/issues/4)
* 优化一些细节
Expand Down
Binary file modified app/release/app-release.apk
Binary file not shown.
4 changes: 2 additions & 2 deletions app/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 3,
"versionName": "1.1.1",
"versionCode": 4,
"versionName": "1.1.2",
"outputFile": "app-release.apk"
}
],
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ kotlin.code.style=official
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true

VERSION_NAME=1.1.1
VERSION_CODE=3
VERSION_NAME=1.1.2
VERSION_CODE=4
GROUP=com.github.jenly1314.UltraSwipeRefresh

POM_DESCRIPTION=UltraSwipeRefresh for Android
Expand Down
4 changes: 2 additions & 2 deletions versions.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// App
def app_version = [:]
app_version.versionCode = 3
app_version.versionName = "1.1.1"
app_version.versionCode = 4
app_version.versionName = "1.1.2"
ext.app_version = app_version

// build version
Expand Down

0 comments on commit a700036

Please sign in to comment.