diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d275a2..bd3985d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ > [中文迭代文档](https://github.com/Jacksgong/JKeyboardPanelSwitch/blob/master/CHANGELOG_zh.md) +### Version 1.6.0 (2018-01-12) + +- Fix(crash): Cover the case of user-root-view not ready on global-changed callback, refs: http://crashes.to/s/00beea75992 + ### Version 1.6.0 (2016-08-11) - Add `KPSwitchConflictUtil#attach(panelLayout,focusView,switchClickListener,subPanelAndTriggers...)`/`KPSwitchConflictUtil#attach(panelLayout,focusView,subPanelAndTriggers...)` Used for `attach` the case of one `PanelLayout` contains more than one `SubPanel`. Closes #39. diff --git a/CHANGELOG_zh.md b/CHANGELOG_zh.md index 8b982af..55f0492 100644 --- a/CHANGELOG_zh.md +++ b/CHANGELOG_zh.md @@ -5,6 +5,10 @@ ### Version 1.6.0 (2016-08-11) +- 修复(crash): 覆盖在 `GlobalLayoutChanged`回调中用户层级父view还没有ready的情况。 refs: http://crashes.to/s/00beea75992 + +### Version 1.6.0 (2016-08-11) + - 添加 `KPSwitchConflictUtil#attach(panelLayout,focusView,switchClickListener,subPanelAndTriggers...)`/`KPSwitchConflictUtil#attach(panelLayout,focusView,subPanelAndTriggers...)` 用于attach一个PanelLayout中有多个SubPanel的情况。 Closes #39。 ### Version 1.5.0 (2016-08-03) diff --git a/README.md b/README.md index 543e550..ed98e04 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ JKeyboardPanelSwitch is installed by adding the following dependency to your `build.gradle` file: ```groovy -compile 'cn.dreamtobe.kpswitch:library:1.6.0' +compile 'cn.dreamtobe.kpswitch:library:1.6.1' ``` ## USAGE diff --git a/README_zh.md b/README_zh.md index b3afe0a..5bae6ec 100644 --- a/README_zh.md +++ b/README_zh.md @@ -24,7 +24,6 @@ - 尽量多的英文注解。 - 每个提交尽量的细而精准。 - Commit message 遵循: [AngularJS's commit message convention](https://github.com/angular/angular.js/blob/master/CONTRIBUTING.md#-git-commit-guidelines)。 -- 尽可能的遵循IDE的代码检查建议(如 Android Studio 的 'Inspect Code')。 --- @@ -33,7 +32,7 @@ 在`build.gradle`中引入: ```groovy -compile 'cn.dreamtobe.kpswitch:library:1.6.0' +compile 'cn.dreamtobe.kpswitch:library:1.6.1' ``` ## 使用引导 diff --git a/gradle.properties b/gradle.properties index c721fae..9d7bd90 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ -VERSION_NAME=1.6.0 -VERSION_CODE=15 +VERSION_NAME=1.6.1 +VERSION_CODE=16 BUILD_TOOLS_VERSION=26.0.2 COMPILE_SDK_VERSION=26