Skip to content

Commit 8d72cf2

Browse files
Bumped up the version to 1.5.1
1 parent e952d82 commit 8d72cf2

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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);`

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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
4848
To 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
```
5252
or we can also import the :photoeditor module from sample for further customization
5353

app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

photoeditor/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

5353
ext {
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

0 commit comments

Comments
 (0)