Skip to content

Commit ffd807f

Browse files
authored
Merge pull request #117 from Dhaval2404/feature/v1.8
v1.7.5 Released
2 parents d91f460 + 4711543 commit ffd807f

File tree

6 files changed

+57
-6
lines changed

6 files changed

+57
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [1.7.5] - 2020-08-30
9+
### Changed
10+
* Added Polish text translation [#115](https://github.com/Dhaval2404/ImagePicker/issues/115) (Special Thanks to [MarcelKijanka](https://github.com/MarcelKijanka))
11+
* Failed to find configured root exception [#116](https://github.com/Dhaval2404/ImagePicker/issues/116)
12+
813
## [1.7.4] - 2020-08-02
914
### Changed
1015
* 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
7681
* Retrieve Image Result as File, File Path as String or Uri object
7782

7883
[Unreleased]: https://github.com/Dhaval2404/ImagePicker/compare/v2.0...HEAD
84+
[1.7.5]: https://github.com/Dhaval2404/ImagePicker/compare/v1.7.4...v1.7.5
7985
[1.7.4]: https://github.com/Dhaval2404/ImagePicker/compare/v1.7.3...v1.7.4
8086
[1.7.3]: https://github.com/Dhaval2404/ImagePicker/compare/v1.7.2...v1.7.3
8187
[1.7.2]: https://github.com/Dhaval2404/ImagePicker/compare/v1.7.1...v1.7.2

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Almost 90% of the app that I have developed has an Image upload feature. Along w
5454
```
5555

5656
```groovy
57-
implementation 'com.github.dhaval2404:imagepicker:1.7.4'
57+
implementation 'com.github.dhaval2404:imagepicker:1.7.5'
5858
```
5959

6060
**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
277277
* Fixed UCropActivity Crash Android 4.4 (KiKat) [#82](https://github.com/Dhaval2404/ImagePicker/issues/82)
278278
* Fixed PNG image saved as JPG after crop issue [#94](https://github.com/Dhaval2404/ImagePicker/issues/94)
279279
* Fixed PNG image saved as JPG after compress issue [#105](https://github.com/Dhaval2404/ImagePicker/issues/105)
280+
* Added Polish text translation [#115](https://github.com/Dhaval2404/ImagePicker/issues/115) (Special Thanks to [MarcelKijanka](https://github.com/MarcelKijanka))
281+
* Failed to find configured root exception [#116](https://github.com/Dhaval2404/ImagePicker/issues/116)
280282
281283
### Version: 1.6
282284

imagepicker/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ android {
1313
defaultConfig {
1414
minSdkVersion 19
1515
targetSdkVersion 28
16-
versionCode 12
17-
versionName "1.7.4"
16+
versionCode 13
17+
versionName "1.7.5"
1818

1919
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2020
}
@@ -72,7 +72,7 @@ ext {
7272
siteUrl = 'https://github.com/Dhaval2404/ImagePicker/'
7373
gitUrl = 'https://github.com/Dhaval2404/ImagePicker.git'
7474

75-
libraryVersion = '1.7.4'
75+
libraryVersion = '1.7.5'
7676
//If you are uploading new library try : gradlew install
7777
//If you are updating existing library then execute: gradlew bintrayUpload
7878
//In both the case don't forgot to put bintray credentials in local.properties file.
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
4+
<!-- ImagePicker string resource start -->
5+
<string name="title_choose_image_provider">Wybierz</string>
6+
<string name="action_cancel">Anuluj</string>
7+
<string name="title_gallery">Galeria</string>
8+
<string name="title_camera">Aparat</string>
9+
10+
<string name="image_picker_provider_authority_suffix">.imagepicker.provider</string>
11+
12+
<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>
13+
<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>
14+
<string name="permission_gallery_denied">
15+
<![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>
16+
<string name="permission_camera_extended_denied">
17+
<![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>
18+
<string name="permission_camera_denied">
19+
<![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>
20+
21+
<string name="error_failed_to_create_camera_image_file">Podczas zapisywania zdjęcia wystąpił błąd</string>
22+
<string name="error_failed_pick_gallery_image">Nie udało się uzyskać dostępu do zdjęcia w galerii</string>
23+
<string name="error_failed_to_crop_image">Nie udało się zmienić rozmiarów obrazu</string>
24+
<string name="error_failed_to_compress_image">Podczas kompresji obrazu wystąpił błąd</string>
25+
<string name="error_task_cancelled">Zadanie przerwane</string>
26+
<!-- ImagePicker string resource end -->
27+
28+
<!-- uCrop string resource start -->
29+
<string name="ucrop_label_original">Oryginał</string>
30+
<string name="ucrop_label_edit_photo">Edytuj zdjęcie</string>
31+
32+
<string name="ucrop_menu_crop">Przytnij</string>
33+
<string name="ucrop_error_input_data_is_absent" translatable="false">URI wejścia i wyjścia musi być ustalone</string>
34+
<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>
35+
<string name="ucrop_rotate">Obróć</string>
36+
<string name="ucrop_scale">Skaluj</string>
37+
<string name="ucrop_crop">Przytnij</string>
38+
<!-- uCrop string resource end -->
39+
40+
</resources>

imagepicker/src/main/res/xml/image_picker_provider_paths.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,7 @@
33
<external-path
44
name="external_files"
55
path="." />
6+
<files-path
7+
name="internal_files"
8+
path="." />
69
</paths>

sample/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ android {
1212
applicationId "com.github.dhaval2404.imagepicker.sample"
1313
minSdkVersion 19
1414
targetSdkVersion 28
15-
versionCode 12
16-
versionName "1.7.4"
15+
versionCode 13
16+
versionName "1.7.5"
1717
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1818
vectorDrawables.useSupportLibrary = true
1919
}

0 commit comments

Comments
 (0)