All Versions
15
Latest Version
Avg Release Cycle
138 days
Latest Release
-

Changelog History
Page 1

  • v2.0.0 Changes

    • ๐Ÿ†• New : Migrated the app and library to Kotlin
  • v1.5.1 Changes

    • ๐Ÿ†• New : #379 Should disallow drawing on left or right of the image using photoEditor.setClipSourceImage(true)
    • ๐Ÿ†• New/Break : #383 Get a callback when the image source is touched onTouchSourceImage(MotionEvent event);
  • v1.5.0 Changes

    • ๐Ÿ—„ Deprecated : setBrushSize() , setOpacity() and setBrushColor. Use ShapeBuilder
    • ๐Ÿ†• New : Drawing Shapes using ShapeBuilder. Support Line, Brush, Oval and Rectangle out of the box.Deprecated
    • ๐Ÿ†• New : Allowing to add text shadow using TextStyleBuilder.withTextShadow()
  • v1.1.4 Changes

    • ๐Ÿ›  Fixed : #351 Internal Refactoring
    • โœ‚ Removed: (Breaking Change) PhotoEditor.getEmoji() is no longer part of the library and it's now move to sample app.
  • v1.1.2 Changes

    • ๐Ÿ›  Fixed : #219 One selection at time in
    • ๐Ÿ›  Fixed: #345 Set pinch to scale to text only
  • v1.1.1 Changes

    • ๐Ÿ›  Fixed : Replace deprecated getDrawingCache to capturing method #324
  • v1.1.0 Changes

    November 01, 2020
    • ๐Ÿ›  Fixed : #263 and #57
    • ๐Ÿ†• New: Allowing PhotoEditor to extend with a protected constructor.
  • v1.0.0 Changes

    December 12, 2019
    • ๐Ÿ†• New : Migrating the support libraries to AndroidX
    • ๐Ÿ†• New : Bumped target sdk version to 29
    • โœ… Test : Adding UI to test for the library
  • v0.4.0 Changes

    June 13, 2019
    • ๐Ÿ†• New : Added compress quality and format in save settings SaveSettings saveSettings = new SaveSettings.Builder() .setCompressFormat(compressFormat) .setCompressQuality(compressQuality) .build();
    • ๐Ÿ†• New : Added Text style builder for add and edit text new TextStyleBuilder() .withTextColor(123) .withTextSize(12f) .withGravity(3) .withTextFont(Typeface.DEFAULT) .withBackgroundColor(321) .withTextAppearance(144) .applyStyle(textView);
    • ๐Ÿ†• New : Bumped support version to 28
    • โœ‚ Removed : All Deprecated methods
    • โœ… Test : Added test cases for BrushDrawingView with 100% code coverage
  • v0.3.3 Changes

    August 28, 2018
    • ๐Ÿ›  Fixed : Brush bug using PorterDuff.Mode.SRC_OVER #80 and PR #83