File tree Expand file tree Collapse file tree 4 files changed +13
-9
lines changed
Expand file tree Collapse file tree 4 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -77,4 +77,8 @@ new TextStyleBuilder()
7777### 1.5.0
7878- Deprecated : ` setBrushSize() ` , ` setOpacity() ` and ` setBrushColor ` . Use ` ShapeBuilder `
7979- 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 11# PhotoEditor
22
33![ 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 )
55[ ![ AndroidArsenal] ( https://img.shields.io/badge/Android%20Arsenal-PhotoEditor-blue.svg )] ( https://android-arsenal.com/details/1/6736 )
66[ ![ AndroidDevDigest] ( https://img.shields.io/badge/AndroidDev%20Digest-%23185-brightgreen.svg )] ( https://www.androiddevdigest.com/digest-185 )
77[ ![ 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
4747## Getting Started
4848To start with this, we need to simply add the dependencies from ` mavenCentral() ` in the gradle file of our app module like this
4949``` groovy
50- implementation 'com.burhanrashid52:photoeditor:1.5.0 '
50+ implementation 'com.burhanrashid52:photoeditor:1.5.1 '
5151```
5252or we can also import the : photoeditor module from sample for further customization
5353
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ android {
66 applicationId " com.burhanrashid52.photoediting"
77 minSdkVersion 14
88 targetSdkVersion 30
9- versionCode 5
10- versionName " 1.5.0 "
9+ versionCode 6
10+ versionName " 1.5.1 "
1111 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
1212 }
1313 buildTypes {
@@ -31,7 +31,7 @@ dependencies {
3131 // NOTE(lucianocheng): Using the local photoeditor implementation instead of the published
3232 // maven package to faciliate testing, and for the integration tests
3333 // to work on locally modified code.
34- // implementation 'com.burhanrashid52:photoeditor:1.5.0 '
34+ // implementation 'com.burhanrashid52:photoeditor:1.5.1 '
3535 implementation project(' :photoeditor' )
3636 implementation ' androidx.cardview:cardview:1.0.0'
3737
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ android {
77 defaultConfig {
88 minSdkVersion 14
99 targetSdkVersion 30
10- versionCode 4
11- versionName " 1.5.0 "
10+ versionCode 5
11+ versionName " 1.5.1 "
1212 testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
1313
1414 }
@@ -52,7 +52,7 @@ dependencies {
5252
5353ext {
5454 PUBLISH_GROUP_ID = ' com.burhanrashid52'
55- PUBLISH_VERSION = ' 1.5.0 '
55+ PUBLISH_VERSION = ' 1.5.1 '
5656 PUBLISH_ARTIFACT_ID = ' photoeditor'
5757}
5858
You can’t perform that action at this time.
0 commit comments