Skip to content

Commit

Permalink
发布v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jenly1314 committed Jul 17, 2024
1 parent f4092e5 commit e1902ba
Show file tree
Hide file tree
Showing 8 changed files with 369 additions and 231 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ArcSeekBar for Android 是一个弧形的拖动条进度控件,配置参数完
2. 在Module的 **build.gradle** 里面添加引入依赖项
```gradle
implementation 'com.github.jenly1314:arcseekbar:1.1.0'
implementation 'com.github.jenly1314:arcseekbar:1.1.1'
```

## 使用
Expand Down Expand Up @@ -106,7 +106,8 @@ ArcSeekBar for Android 是一个弧形的拖动条进度控件,配置参数完

## 版本记录

#### 待发布版本([提前体验](test.md)
#### v1.1.1:2024-7-17
* 优化细节

#### v1.1.0:2024-6-25
* 新增自定义属性`arcThumbDrawable`
Expand Down
Binary file modified app/release/app-release.apk
Binary file not shown.
575 changes: 359 additions & 216 deletions arcseekbar/src/main/java/com/king/view/arcseekbar/ArcSeekBar.java

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ buildscript {
apply from: 'versions.gradle'
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.2.1' apply false
id 'com.android.library' version '7.2.1' apply false
id 'com.android.application' version '7.4.2' apply false
id 'com.android.library' version '7.4.2' apply false
id 'org.jetbrains.kotlin.android' version '1.7.0' apply false
id 'com.vanniktech.maven.publish' version '0.22.0' apply false
}
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true

VERSION_NAME=1.1.0
VERSION_CODE=5
VERSION_NAME=1.1.1
VERSION_CODE=6
GROUP=com.github.jenly1314

POM_DESCRIPTION=ArcSeekBar for Android
Expand Down
6 changes: 0 additions & 6 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
pluginManagement {
repositories {
gradlePluginPortal()
maven {
url "https://maven.aliyun.com/repository/public"
}
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
maven {
url "https://maven.aliyun.com/repository/public"
}
google()
mavenCentral()
}
Expand Down
2 changes: 1 addition & 1 deletion test.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

## 待发布版本
## ~待发布版本~(已发布v1.1.1)

待发布版本暂使用 **Jit Pack** 仓库;待收集的一些问题测试稳定后,再统一发布正式版本至 **Maven Central** 仓库。

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 = 5
app_version.versionName = "1.1.0"
app_version.versionCode = 6
app_version.versionName = "1.1.1"
ext.app_version = app_version

//build version
Expand Down

0 comments on commit e1902ba

Please sign in to comment.