Skip to content

Commit 0aa054c

Browse files
committed
vc1.10,update README
1 parent 2f81827 commit 0aa054c

File tree

4 files changed

+19
-16
lines changed

4 files changed

+19
-16
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ You can also receive a callback for when an item is clicked, and whether it is s
1717

1818
### Gradle
1919

20-
`compile 'github.hellocsl:CursorWheelLayout:1.0.2'`
20+
`compile 'github.hellocsl:CursorWheelLayout:1.1.0'`
2121

2222
### Maven
2323

2424
```xml
2525
<dependency>
2626
<groupId>github.hellocsl</groupId>
2727
<artifactId>CursorWheelLayout</artifactId>
28-
<version>1.0.2</version>
28+
<version>1.1.0</version>
2929
<type>pom</type>
3030
</dependency>
3131
```

build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,14 @@ allprojects {
1717
repositories {
1818
jcenter()
1919
}
20+
21+
tasks.withType(Javadoc) {
22+
options.addStringOption('Xdoclint:none', '-quiet')
23+
options.addStringOption('encoding', 'UTF-8')
24+
}
2025
}
2126

2227
task clean(type: Delete) {
2328
delete rootProject.buildDir
2429
}
2530

26-

library/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ android {
2121
dependencies {
2222
compile fileTree(dir: 'libs', include: ['*.jar'])
2323
testCompile 'junit:junit:4.12'
24-
compile 'com.android.support:appcompat-v7:23.2.1'
24+
compile 'com.android.support:support-annotations:23.2.1'
2525
}
2626

2727

2828
publish {
2929
userOrg = 'bcsl'
3030
groupId = 'github.hellocsl'
3131
artifactId = 'CursorWheelLayout'
32-
publishVersion = '1.0.2'
32+
publishVersion = '1.1.0'
3333
desc = 'An Android Widget for selecting items that rotate on a wheel'
3434
website = 'https://github.com/BCsl/CursorWheelLayout'
3535
}

library/src/main/java/github/hellocsl/cursorwheel/CursorWheelLayout.java

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,16 @@
2626
* The base cycle wheel menu layout with cursor
2727
*
2828
* @author chensuilun
29-
* @attr ref wheelSelectedAngle
30-
* @attr ref wheelPaddingRadio
31-
* @attr ref wheelCenterRadio
32-
* @attr ref wheelItemRadio
33-
* @attr ref wheelFlingValue
34-
* @attr ref wheelCursorColor
35-
* @attr ref wheelCursorHeight
36-
* @attr ref wheelItemRotateMode
37-
* @attr ref wheelGuideLineWidth
38-
* @attr ref wheelGuideLineColor
39-
* @see R.github.hellocsl.cursorwheel.R.attr
29+
* @attr R.styleable.CursorWheelLayout_wheelSelectedAngle
30+
* @attr R.styleable.CursorWheelLayout_wheelPaddingRadio
31+
* @attr R.styleable.CursorWheelLayout_wheelCenterRadio
32+
* @attr R.styleable.CursorWheelLayout_wheelItemRadio
33+
* @attr R.styleable.CursorWheelLayout_wheelFlingValue
34+
* @attr R.styleable.CursorWheelLayout_wheelCursorColor
35+
* @attr R.styleable.CursorWheelLayout_wheelCursorHeight
36+
* @attr R.styleable.CursorWheelLayout_wheelItemRotateMode
37+
* @attr R.styleable.CursorWheelLayout_wheelGuideLineWidth
38+
* @attr R.styleable.CursorWheelLayout_wheelGuideLineColor
4039
*/
4140
public class CursorWheelLayout extends ViewGroup {
4241
private static final String TAG = "CircleMenuLayout";

0 commit comments

Comments
 (0)