Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
H07000223 committed Jul 28, 2016
1 parent 7e1a146 commit 803d841
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 9 deletions.
10 changes: 7 additions & 3 deletions CHNAGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,23 @@ Version 1.2.2 *(2015-12-20)*
----------------------------
* BasePopup small bug fix

Version 1.2.6 *(2015-01-07)*
Version 1.2.6 *(2016-01-07)*
----------------------------
* Combine FlycoAnimation_Lib into FlycoDialog_Lib
* Fix bug for View in Popup click no response
* Improve the function of BaseBubblePopup

Version 1.2.8 *(2015-04-28)*
Version 1.2.8 *(2016-04-28)*
----------------------------
* bugfix issue14

Version 1.3.0 *(2015-05-21)*
Version 1.3.0 *(2016-05-21)*
----------------------------
* remove the dependence of NineOldAnimation(only support 3.0+)

Version 1.3.2 *(2016-07-18)*
----------------------------
* bugfix issue22



4 changes: 2 additions & 2 deletions FlycoDialog_Lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ apply plugin: 'com.android.library'
//apply plugin: 'com.jfrog.bintray'

// 这个version是区分library版本的,因此当我们需要更新library时记得修改这个version
version = "1.3.0"
version = "1.3.2"
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
resourcePrefix "FlycoDialog_" //这个随便填
defaultConfig {
minSdkVersion 11
targetSdkVersion 23
versionCode 130
versionCode 132
versionName version
}
buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public void onGlobalLayout() {
@Override
public void onAttachedToWindow() {
super.onAttachedToWindow();
mOnCreateView.setClickable(false);
if (isLayoutObtain) {
onLayoutObtain();
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ dependencies{

After v1.3.0
dependencies{
compile 'com.flyco.dialog:FlycoDialog_Lib:1.3.0@aar'
compile 'com.flyco.dialog:FlycoDialog_Lib:1.3.2@aar'
}

```
Expand Down
2 changes: 1 addition & 1 deletion README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ dependencies{

After v1.3.0
dependencies{
compile 'com.flyco.dialog:FlycoDialog_Lib:1.3.0@aar'
compile 'com.flyco.dialog:FlycoDialog_Lib:1.3.2@aar'
}

```
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies {
compile project(':FlycoDialog_Lib')

// After 1.3.0
// compile 'com.flyco.dialog:FlycoDialog_Lib:1.3.0@aar'
// compile 'com.flyco.dialog:FlycoDialog_Lib:1.3.2@aar'

// compile 'com.flyco.dialog:FlycoDialog_Lib:1.2.8@aar'
// compile 'com.nineoldandroids:library:2.4.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ protected void onCreate(Bundle savedInstanceState) {
ButterKnife.bind(this);

mQuickCustomPopup = new SimpleCustomPop(mContext);
// mQuickCustomPopup.setCanceledOnTouchOutside(false);
}

@OnClick(R.id.tv_center)
Expand Down Expand Up @@ -115,6 +116,7 @@ class SimpleCustomPop extends BasePopup<SimpleCustomPop> {

public SimpleCustomPop(Context context) {
super(context);
// setCanceledOnTouchOutside(false);
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
classpath 'com.android.tools.build:gradle:2.1.2'
// classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
// classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
// NOTE: Do not place your application dependencies here; they belong
Expand Down

0 comments on commit 803d841

Please sign in to comment.