Skip to content

Commit cefa457

Browse files
committed
Prepare version 4.3.3
1 parent f3f80e3 commit cefa457

File tree

4 files changed

+27
-56
lines changed

4 files changed

+27
-56
lines changed

CHANGELOG.md

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
1-
# Changelog
2-
All notable changes to this project will be documented in this file.
3-
4-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
5-
- `Added` for new features.
6-
- `Changed` for changes in existing functionality.
7-
- `Deprecated` for soon-to-be removed features.
8-
- `Removed` for now removed features.
9-
- `Fixed` for any bug fixes.
10-
- `Security` in case of vulnerabilities.
11-
12-
## [x.x.x] - unreleased
13-
### Added
14-
- Added options to customize colors of toolbar back button, title and menu texts. [#437](https://github.com/CanHub/Android-Image-Cropper/issues/437)
15-
### Fixed
16-
- Fixed and issue where setting toolbar color to white would do nothing. [#437](https://github.com/CanHub/Android-Image-Cropper/issues/437)
17-
- Correctly close resources in BitmapUtils. [#440](https://github.com/CanHub/Android-Image-Cropper/issues/440)
1+
Version 4.4.0 *(In development)*
2+
--------------------------------
3+
4+
Version 4.3.3 *(2022-05-28)*
5+
----------------------------
6+
7+
⚠️ Maven Coordinates have changed ⚠️
8+
9+
This library will no longer be published to Jitpack. The Maven Coordinates have changed, and the library is now on Maven Central. In order to consume the new update please change:
10+
11+
```diff
12+
-implementation("com.github.CanHub:Android-Image-Cropper:4.3.2")
13+
+implementation("com.vanniktech:android-image-cropper:4.3.3")
14+
```
15+
16+
For now, everything else stays the same. [vanniktech](https://github.com/vanniktech) has taken over the maintenance of this library.
17+
18+
- Kotlin Build Script, proper Maven Publishing, new workflows, Gradle Catalogue & much more [\#450](https://github.com/CanHub/Android-Image-Cropper/pull/450) ([vanniktech](https://github.com/vanniktech))
19+
- Correctly close resources in BitmapUtils. [\#440](https://github.com/CanHub/Android-Image-Cropper/pull/440) ([vanniktech](https://github.com/vanniktech))
20+
- Bugfix/437 setting toolbar color to white does nothing [\#438](https://github.com/CanHub/Android-Image-Cropper/pull/438) ([Devenom1](https://github.com/Devenom1))
1821

1922
## [4.3.2] - 08/09/2022
2023
### Fixed

README.md

Lines changed: 6 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
[![CanHub](.documentation/art/canhub_logo_horizontal_transparent.png?raw=true)](https://github.com/canhub)
22

3-
[![](https://jitpack.io/v/CanHub/Android-Image-Cropper.svg)](https://jitpack.io/#CanHub/Android-Image-Cropper)
4-
53
[Using the library in Java](.documentation/java_usage.md)
64

75
[FAQ - frequently asked question](.documentation/FAQ.md)
@@ -18,25 +16,15 @@ Android Image Cropper
1816
![Crop](.documentation/art/demo.gif?raw=true)
1917

2018
# Add to your project
21-
### Step 1. Add the JitPack repository to your root build.gradle
22-
```gradle
23-
allprojects {
24-
repositories {
25-
....
26-
maven { url 'https://jitpack.io' }
27-
}
28-
}
29-
```
3019

31-
### Step 2. Add the dependency
20+
### Step 1. Add the dependency
3221
```gradle
33-
dependencies {
34-
implementation 'com.github.CanHub:Android-Image-Cropper:${version}'
35-
}
22+
dependencies {
23+
implementation 'com.vanniktech:android-image-cropper:4.3.3'
24+
}
3625
```
37-
[Latest Release Version](https://github.com/CanHub/Android-Image-Cropper/releases)
3826

39-
### Step 3. Add permissions to manifest
27+
### Step 2. Add permissions to manifest
4028
Only need if you run on devices under OS10 (SDK 29)
4129
```xml
4230
<manifest>
@@ -45,23 +33,8 @@ Only need if you run on devices under OS10 (SDK 29)
4533
</manifest>
4634
```
4735

48-
### Step 4. Set source compatibility version to Java 11
49-
- The library is up to date with the latest releases, if you are not using Java 11 yet please check the release page for previous working versions.
50-
- Go to app level `build.gradle` file
51-
- Add this line inside ```android``` in build.gradle
52-
```gradle
53-
compileOptions {
54-
sourceCompatibility JavaVersion.VERSION_11
55-
targetCompatibility JavaVersion.VERSION_11
56-
}
57-
58-
kotlinOptions {
59-
jvmTarget = JavaVersion.VERSION_11.toString()
60-
}
61-
```
62-
- This expects Gradle 7.0+
63-
6436
# Using the Library
37+
6538
There is 3 ways of using the library:
6639
- Calling crop directly [Below]
6740
- [Using the CropView](.documentation/crop_view.md)
@@ -118,9 +91,6 @@ class MainActivity {
11891
## Posts
11992
- [Android cropping image from camera or gallery](https://canato.medium.com/android-cropping-image-from-camera-or-gallery-fbe732800b08)
12093

121-
## Wanna help the project? Amazing!
122-
- [Contributing Guide](https://github.com/CanHub/Android-Image-Cropper/blob/main/CONTRIBUTING.md)
123-
12494
## License
12595
Forked from [ArthurHub](https://github.com/ArthurHub/Android-Image-Cropper)
12696
Originally forked from [edmodo/cropper](https://github.com/edmodo/cropper).

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.vanniktech
2-
VERSION_NAME=4.3.3-SNAPSHOT
2+
VERSION_NAME=4.3.3
33

44
POM_DESCRIPTION=Image Cropping Library for Android, optimised for Camera / Gallery.
55

jitpack.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)