File tree 4 files changed +13
-9
lines changed 4 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -77,4 +77,8 @@ new TextStyleBuilder()
77
77
### 1.5.0
78
78
- Deprecated : ` setBrushSize() ` , ` setOpacity() ` and ` setBrushColor ` . Use ` ShapeBuilder `
79
79
- New : Drawing Shapes using ` ShapeBuilder ` . Support Line, Brush, Oval and Rectangle out of the box.Deprecated
80
- - New : Allowing to add text shadow using ` TextStyleBuilder.withTextShadow() `
80
+ - New : Allowing to add text shadow using ` TextStyleBuilder.withTextShadow() `
81
+
82
+ ### 1.5.1
83
+ - New : #379 Should disallow drawing on left or right of the image using ` photoEditor.setClipSourceImage(true) `
84
+ - New/Break : #383 Get a callback when the image source is touched ` onTouchSourceImage(MotionEvent event); `
Original file line number Diff line number Diff line change 1
1
# PhotoEditor
2
2
3
3
![ Github Action] ( https://github.com/burhanrashid52/PhotoEditor/actions/workflows/app_build_and_test.yml/badge.svg )
4
- [ ![ Downloads] ( https://img.shields.io/badge/Download-1.5.0 -blue.svg )] ( https://search.maven.org/artifact/com.burhanrashid52/photoeditor/1.5.0 /aar ) ![ API] ( https://img.shields.io/badge/API-14%2B-brightgreen.svg ) [ ![ JavaDoc] ( https://img.shields.io/badge/JavaDoc-PhotoEditor-blue.svg )] ( https://burhanrashid52.github.io/PhotoEditor/ ) [ ![ Uplabs] ( https://img.shields.io/badge/Uplabs-PhotoEditor-orange.svg )] ( https://www.uplabs.com/posts/photoeditor )
4
+ [ ![ Downloads] ( https://img.shields.io/badge/Download-1.5.1 -blue.svg )] ( https://search.maven.org/artifact/com.burhanrashid52/photoeditor/1.5.1 /aar ) ![ API] ( https://img.shields.io/badge/API-14%2B-brightgreen.svg ) [ ![ JavaDoc] ( https://img.shields.io/badge/JavaDoc-PhotoEditor-blue.svg )] ( https://burhanrashid52.github.io/PhotoEditor/ ) [ ![ Uplabs] ( https://img.shields.io/badge/Uplabs-PhotoEditor-orange.svg )] ( https://www.uplabs.com/posts/photoeditor )
5
5
[ ![ AndroidArsenal] ( https://img.shields.io/badge/Android%20Arsenal-PhotoEditor-blue.svg )] ( https://android-arsenal.com/details/1/6736 )
6
6
[ ![ AndroidDevDigest] ( https://img.shields.io/badge/AndroidDev%20Digest-%23185-brightgreen.svg )] ( https://www.androiddevdigest.com/digest-185 )
7
7
[ ![ AwesomeAndroid] ( https://img.shields.io/badge/Awesome%20Android-%2397-red.svg )] ( https://android.libhunt.com/newsletter/97 )
@@ -47,7 +47,7 @@ PhotoEditor ```v.1.0.0``` is a migration to androidX and dropping the support of
47
47
## Getting Started
48
48
To start with this, we need to simply add the dependencies from ` mavenCentral() ` in the gradle file of our app module like this
49
49
``` groovy
50
- implementation 'com.burhanrashid52:photoeditor:1.5.0 '
50
+ implementation 'com.burhanrashid52:photoeditor:1.5.1 '
51
51
```
52
52
or we can also import the : photoeditor module from sample for further customization
53
53
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ android {
6
6
applicationId " com.burhanrashid52.photoediting"
7
7
minSdkVersion 14
8
8
targetSdkVersion 30
9
- versionCode 5
10
- versionName " 1.5.0 "
9
+ versionCode 6
10
+ versionName " 1.5.1 "
11
11
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
12
12
}
13
13
buildTypes {
@@ -31,7 +31,7 @@ dependencies {
31
31
// NOTE(lucianocheng): Using the local photoeditor implementation instead of the published
32
32
// maven package to faciliate testing, and for the integration tests
33
33
// to work on locally modified code.
34
- // implementation 'com.burhanrashid52:photoeditor:1.5.0 '
34
+ // implementation 'com.burhanrashid52:photoeditor:1.5.1 '
35
35
implementation project(' :photoeditor' )
36
36
implementation ' androidx.cardview:cardview:1.0.0'
37
37
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ android {
7
7
defaultConfig {
8
8
minSdkVersion 14
9
9
targetSdkVersion 30
10
- versionCode 4
11
- versionName " 1.5.0 "
10
+ versionCode 5
11
+ versionName " 1.5.1 "
12
12
testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
13
13
14
14
}
@@ -52,7 +52,7 @@ dependencies {
52
52
53
53
ext {
54
54
PUBLISH_GROUP_ID = ' com.burhanrashid52'
55
- PUBLISH_VERSION = ' 1.5.0 '
55
+ PUBLISH_VERSION = ' 1.5.1 '
56
56
PUBLISH_ARTIFACT_ID = ' photoeditor'
57
57
}
58
58
You can’t perform that action at this time.
0 commit comments