Skip to content

Commit 5efbf20

Browse files
committed
Update version 0.9.3
1 parent 0ab1db4 commit 5efbf20

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# DecoView Changelog
22

3+
v0.9.3
4+
===
5+
6+
- All xml attributes prefixed with 'dv_'
7+
38
v0.9.2
49
===
510

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ The main concepts you need to understand are:
5050

5151
```xml
5252
<com.hookedonplay.decoviewlib.DecoView
53-
xmlns:custom="http://schemas.android.com/apk/res-auto"
5453
android:layout_width="match_parent"
5554
android:layout_height="match_parent"
5655
android:id="@+id/dynamicArcView"
@@ -126,8 +125,8 @@ Gravity can be defined in the layout XML:
126125
android:layout_width="match_parent"
127126
android:layout_height="match_parent"
128127
android:id="@+id/dynamicArcView"
129-
custom:arc_gravity_horizontal="Fill"
130-
custom:arc_gravity_vertical="Bottom"
128+
custom:dv_arc_gravity_horizontal="Fill"
129+
custom:dv_arc_gravity_vertical="Bottom"
131130
android:layout_margin="8dp"/>
132131
```
133132

app/app.iml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@
8686
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/rs" />
8787
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/symbols" />
8888
<excludeFolder url="file://$MODULE_DIR$/build/outputs" />
89+
<excludeFolder url="file://$MODULE_DIR$/build/tmp" />
8990
</content>
9091
<orderEntry type="jdk" jdkName="Android API 22 Platform" jdkType="Android SDK" />
9192
<orderEntry type="sourceFolder" forTests="false" />

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId 'com.hookedonplay.decoviewsample'
88
minSdkVersion 8
99
targetSdkVersion 22
10-
versionCode 3
11-
versionName "0.9.2"
10+
versionCode 4
11+
versionName "0.9.3"
1212
}
1313
buildTypes {
1414
release {

decoviewlib/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
defaultConfig {
88
minSdkVersion 8
99
targetSdkVersion 22
10-
versionCode 3
11-
versionName "0.9.2"
10+
versionCode 4
11+
versionName "0.9.3"
1212
}
1313
buildTypes {
1414
release {

0 commit comments

Comments
 (0)