Skip to content

Commit

Permalink
vc1.10,update README
Browse files Browse the repository at this point in the history
  • Loading branch information
BCsl committed Feb 15, 2017
1 parent 2f81827 commit 0aa054c
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 16 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ You can also receive a callback for when an item is clicked, and whether it is s

### Gradle

`compile 'github.hellocsl:CursorWheelLayout:1.0.2'`
`compile 'github.hellocsl:CursorWheelLayout:1.1.0'`

### Maven

```xml
<dependency>
<groupId>github.hellocsl</groupId>
<artifactId>CursorWheelLayout</artifactId>
<version>1.0.2</version>
<version>1.1.0</version>
<type>pom</type>
</dependency>
```
Expand Down
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,14 @@ allprojects {
repositories {
jcenter()
}

tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
options.addStringOption('encoding', 'UTF-8')
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}


4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.android.support:support-annotations:23.2.1'
}


publish {
userOrg = 'bcsl'
groupId = 'github.hellocsl'
artifactId = 'CursorWheelLayout'
publishVersion = '1.0.2'
publishVersion = '1.1.0'
desc = 'An Android Widget for selecting items that rotate on a wheel'
website = 'https://github.com/BCsl/CursorWheelLayout'
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,16 @@
* The base cycle wheel menu layout with cursor
*
* @author chensuilun
* @attr ref wheelSelectedAngle
* @attr ref wheelPaddingRadio
* @attr ref wheelCenterRadio
* @attr ref wheelItemRadio
* @attr ref wheelFlingValue
* @attr ref wheelCursorColor
* @attr ref wheelCursorHeight
* @attr ref wheelItemRotateMode
* @attr ref wheelGuideLineWidth
* @attr ref wheelGuideLineColor
* @see R.github.hellocsl.cursorwheel.R.attr
* @attr R.styleable.CursorWheelLayout_wheelSelectedAngle
* @attr R.styleable.CursorWheelLayout_wheelPaddingRadio
* @attr R.styleable.CursorWheelLayout_wheelCenterRadio
* @attr R.styleable.CursorWheelLayout_wheelItemRadio
* @attr R.styleable.CursorWheelLayout_wheelFlingValue
* @attr R.styleable.CursorWheelLayout_wheelCursorColor
* @attr R.styleable.CursorWheelLayout_wheelCursorHeight
* @attr R.styleable.CursorWheelLayout_wheelItemRotateMode
* @attr R.styleable.CursorWheelLayout_wheelGuideLineWidth
* @attr R.styleable.CursorWheelLayout_wheelGuideLineColor
*/
public class CursorWheelLayout extends ViewGroup {
private static final String TAG = "CircleMenuLayout";
Expand Down

0 comments on commit 0aa054c

Please sign in to comment.