Skip to content

Commit

Permalink
Merge pull request #117 from Dhaval2404/feature/v1.8
Browse files Browse the repository at this point in the history
v1.7.5 Released
  • Loading branch information
Dhaval2404 authored Aug 30, 2020
2 parents d91f460 + 4711543 commit ffd807f
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:**
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions imagepicker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down Expand Up @@ -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.
Expand Down
40 changes: 40 additions & 0 deletions imagepicker/src/main/res/values-pl/strings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>

<!-- ImagePicker string resource start -->
<string name="title_choose_image_provider">Wybierz</string>
<string name="action_cancel">Anuluj</string>
<string name="title_gallery">Galeria</string>
<string name="title_camera">Aparat</string>

<string name="image_picker_provider_authority_suffix">.imagepicker.provider</string>

<string name="message_gallery_permission_denied">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</string>
<string name="message_camera_permission_denied">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</string>
<string name="permission_gallery_denied">
<![CDATA[Dostęp do pamięci urządzenia jest wymagany, aby wybrać obraz z galerii. Zmienić dostęp do pamięci można z poziomu Ustawień > Uprawnienia.]]></string>
<string name="permission_camera_extended_denied">
<![CDATA[Dostęp do aparatu oraz pamięci jest wymagany aby przechwycić obraz. Zmienić dostęp do pamięci można z poziomu Ustawień > Uprawnienia.]]></string>
<string name="permission_camera_denied">
<![CDATA[Dostęp do pamięci jest wymagany aby wykonać zdjęcie. Zmienić dostęp do pamięci można z poziomu Ustawień > Uprawnienia.]]></string>

<string name="error_failed_to_create_camera_image_file">Podczas zapisywania zdjęcia wystąpił błąd</string>
<string name="error_failed_pick_gallery_image">Nie udało się uzyskać dostępu do zdjęcia w galerii</string>
<string name="error_failed_to_crop_image">Nie udało się zmienić rozmiarów obrazu</string>
<string name="error_failed_to_compress_image">Podczas kompresji obrazu wystąpił błąd</string>
<string name="error_task_cancelled">Zadanie przerwane</string>
<!-- ImagePicker string resource end -->

<!-- uCrop string resource start -->
<string name="ucrop_label_original">Oryginał</string>
<string name="ucrop_label_edit_photo">Edytuj zdjęcie</string>

<string name="ucrop_menu_crop">Przytnij</string>
<string name="ucrop_error_input_data_is_absent" translatable="false">URI wejścia i wyjścia musi być ustalone</string>
<string name="ucrop_mutate_exception_hint" translatable="false">Możesz nadpisać kolor w color resources (ucrop_color_toolbar_widget) w swojej aplikacji aby wspierać urządzenia przed Androidem L</string>
<string name="ucrop_rotate">Obróć</string>
<string name="ucrop_scale">Skaluj</string>
<string name="ucrop_crop">Przytnij</string>
<!-- uCrop string resource end -->

</resources>
3 changes: 3 additions & 0 deletions imagepicker/src/main/res/xml/image_picker_provider_paths.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@
<external-path
name="external_files"
path="." />
<files-path
name="internal_files"
path="." />
</paths>
4 changes: 2 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit ffd807f

Please sign in to comment.