diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5aab6a51..c37176b5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
+## [1.7.5] - 2020-08-30
+### Changed
+ * Added Polish text translation [#115](https://github.com/Dhaval2404/ImagePicker/issues/115) (Special Thanks to [MarcelKijanka](https://github.com/MarcelKijanka))
+ * Failed to find configured root exception [#116](https://github.com/Dhaval2404/ImagePicker/issues/116)
+
## [1.7.4] - 2020-08-02
### Changed
* Fixed PNG image saved as JPG after compress issue [#105](https://github.com/Dhaval2404/ImagePicker/issues/105)
@@ -76,6 +81,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Retrieve Image Result as File, File Path as String or Uri object
[Unreleased]: https://github.com/Dhaval2404/ImagePicker/compare/v2.0...HEAD
+[1.7.5]: https://github.com/Dhaval2404/ImagePicker/compare/v1.7.4...v1.7.5
[1.7.4]: https://github.com/Dhaval2404/ImagePicker/compare/v1.7.3...v1.7.4
[1.7.3]: https://github.com/Dhaval2404/ImagePicker/compare/v1.7.2...v1.7.3
[1.7.2]: https://github.com/Dhaval2404/ImagePicker/compare/v1.7.1...v1.7.2
diff --git a/README.md b/README.md
index 5bdccc8e..13af77ba 100644
--- a/README.md
+++ b/README.md
@@ -54,7 +54,7 @@ Almost 90% of the app that I have developed has an Image upload feature. Along w
```
```groovy
- implementation 'com.github.dhaval2404:imagepicker:1.7.4'
+ implementation 'com.github.dhaval2404:imagepicker:1.7.5'
```
**If you are yet to Migrate on AndroidX, Use support build artifact:**
@@ -277,6 +277,8 @@ Almost 90% of the app that I have developed has an Image upload feature. Along w
* Fixed UCropActivity Crash Android 4.4 (KiKat) [#82](https://github.com/Dhaval2404/ImagePicker/issues/82)
* Fixed PNG image saved as JPG after crop issue [#94](https://github.com/Dhaval2404/ImagePicker/issues/94)
* Fixed PNG image saved as JPG after compress issue [#105](https://github.com/Dhaval2404/ImagePicker/issues/105)
+ * Added Polish text translation [#115](https://github.com/Dhaval2404/ImagePicker/issues/115) (Special Thanks to [MarcelKijanka](https://github.com/MarcelKijanka))
+ * Failed to find configured root exception [#116](https://github.com/Dhaval2404/ImagePicker/issues/116)
### Version: 1.6
diff --git a/imagepicker/build.gradle b/imagepicker/build.gradle
index 8476a7d1..186c0875 100644
--- a/imagepicker/build.gradle
+++ b/imagepicker/build.gradle
@@ -13,8 +13,8 @@ android {
defaultConfig {
minSdkVersion 19
targetSdkVersion 28
- versionCode 12
- versionName "1.7.4"
+ versionCode 13
+ versionName "1.7.5"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
@@ -72,7 +72,7 @@ ext {
siteUrl = 'https://github.com/Dhaval2404/ImagePicker/'
gitUrl = 'https://github.com/Dhaval2404/ImagePicker.git'
- libraryVersion = '1.7.4'
+ libraryVersion = '1.7.5'
//If you are uploading new library try : gradlew install
//If you are updating existing library then execute: gradlew bintrayUpload
//In both the case don't forgot to put bintray credentials in local.properties file.
diff --git a/imagepicker/src/main/res/values-pl/strings.xml b/imagepicker/src/main/res/values-pl/strings.xml
new file mode 100644
index 00000000..efd16246
--- /dev/null
+++ b/imagepicker/src/main/res/values-pl/strings.xml
@@ -0,0 +1,40 @@
+
+
+
+
+ Wybierz
+ Anuluj
+ Galeria
+ Aparat
+
+ .imagepicker.provider
+
+ Dostęp do pamięci zewnętrznej jest wymagany, aby móc wybrać obraz. Zmienić dostęp do pamięci można z poziomu Ustawień > Uprawnienia
+ Dostęp do aparatu oraz zewnętrznej pamięci jest wymagany, aby przechwycić obraz. Zabranie uprawnień aplikacji może powodować błędy w jej działaniu. Zmienić dostęp do pamięci można z poziomu Ustawień > Uprawnienia
+
+ Uprawnienia.]]>
+
+ Uprawnienia.]]>
+
+ Uprawnienia.]]>
+
+ Podczas zapisywania zdjęcia wystąpił błąd
+ Nie udało się uzyskać dostępu do zdjęcia w galerii
+ Nie udało się zmienić rozmiarów obrazu
+ Podczas kompresji obrazu wystąpił błąd
+ Zadanie przerwane
+
+
+
+ Oryginał
+ Edytuj zdjęcie
+
+ Przytnij
+ URI wejścia i wyjścia musi być ustalone
+ Możesz nadpisać kolor w color resources (ucrop_color_toolbar_widget) w swojej aplikacji aby wspierać urządzenia przed Androidem L
+ Obróć
+ Skaluj
+ Przytnij
+
+
+
\ No newline at end of file
diff --git a/imagepicker/src/main/res/xml/image_picker_provider_paths.xml b/imagepicker/src/main/res/xml/image_picker_provider_paths.xml
index fafa14f8..25c7b21f 100644
--- a/imagepicker/src/main/res/xml/image_picker_provider_paths.xml
+++ b/imagepicker/src/main/res/xml/image_picker_provider_paths.xml
@@ -3,4 +3,7 @@
+
\ No newline at end of file
diff --git a/sample/build.gradle b/sample/build.gradle
index c43f75e1..88a09d5c 100644
--- a/sample/build.gradle
+++ b/sample/build.gradle
@@ -12,8 +12,8 @@ android {
applicationId "com.github.dhaval2404.imagepicker.sample"
minSdkVersion 19
targetSdkVersion 28
- versionCode 12
- versionName "1.7.4"
+ versionCode 13
+ versionName "1.7.5"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
}