Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
sangcomz committed Aug 8, 2020
2 parents 0164713 + a4bf0d7 commit cd55a65
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,15 @@ _FishBun_ is a highly customizable image picker for Android.
<img src="/pic/fishbuns.png">


## What's New in _FishBun_ 1.0.0-alpha02? :tada:
## What's New in _FishBun_ 1.0.0-alpha03? :tada:

- Refactoring for rapid development:rocket::rocket::rocket:
- Change PickerSpanCount default value (`3`->`4`)
- target SDK 29 support
- In API 29 or higher, the camera can be used only in the total image folder.
- Fix Issue(#215)
- Change DetailView statusBar color
- Removed Picasso and added Coil


## Customizable Styles
Expand Down Expand Up @@ -126,7 +129,7 @@ Setting up _FishBun_ requires to add this Gradle configuration:
compile 'com.github.bumptech.glide:glide:4.9.0'
// Android plugin 3.0.0 or higher.
implementation 'com.sangcomz:FishBun:1.0.0-alpha02'
implementation 'com.sangcomz:FishBun:1.0.0-alpha03'
implementation 'io.coil-kt:coil:0.11.0'
or
Expand Down Expand Up @@ -161,7 +164,7 @@ and implement `OnActivityResult`:
// path = imageData.getStringArrayListExtra(Define.INTENT_PATH);
// you can get an image path(ArrayList<String>) on <0.6.2

path = imageData.getParcelableArrayListExtra(Define.INTENT_PATH);
path = imageData.getParcelableArrayListExtra(INTENT_PATH);
// you can get an image path(ArrayList<Uri>) on 0.6.2 and later
break;
}
Expand Down
9 changes: 7 additions & 2 deletions gradle/release.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,13 @@ if (project.rootProject.file('local.properties').isFile()) {
tagName = version
targetCommitish = 'master'
body = """## Release Note
* Refactoring for rapid development
* Change PickerSpanCount default value (`3`->`4`)
* Refactoring for rapid development:rocket::rocket::rocket:
* Change PickerSpanCount default value (`3`->`4`)
* target SDK 29 support
* In API 29 or higher, the camera can be used only in the total image folder.
* Fix Issue(#215)
* Change DetailView statusBar color
* Removed Picasso and added Coil
"""
name = version
}
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
include ':FishBunDemo', ':FishBun'

gradle.ext.versionCode = 30
gradle.ext.versionName = '1.0.0-alpha02'
gradle.ext.versionCode = 31
gradle.ext.versionName = '1.0.0-alpha03'

gradle.ext.set('minSdk', 15)
gradle.ext.set('targetSdk', 29)
Expand Down

0 comments on commit cd55a65

Please sign in to comment.