Skip to content

Commit a3d0447

Browse files
committed
Bump version to 1.0.0
1 parent d62ed3c commit a3d0447

File tree

4 files changed

+28
-69
lines changed

4 files changed

+28
-69
lines changed

CHANGELOG.md

+4-48
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,7 @@
11
# Changelog
22

3-
## 1.3.0
4-
Added `startWithPopTo()`, Improve the stability of `pop()`/`popTo()`.
3+
## 1.0.0-rc
4+
Support Androidx!
55

6-
## 1.2.0
7-
Added ActionQueue mechanism, this will improve stability.
8-
9-
## 1.0.0
10-
11-
1. Extends of SupportActivity/SupportFragment is no longer a forced requirement. Through `implements ISupportActivity/Fragment``Delegate` to customize self-difined `SupportActivity/Fragment`
12-
13-
2. Remove `FragmentLifecycleCallbacks`(since support-25.1.0, `FragmentLifecycleCallbacks` is supported officially)
14-
15-
3. Add `extraTransaction()`to deal with self-defined tag, SharedElements, and transactions that are not managed by back stack
16-
17-
4. Compatible with support-25.4.0
18-
19-
5. Remove `replaceLoadRootFragment()` (use `loadRootFragment()` instead), Add `loadRootFragment(containerId, fragment, addToBack, allowEnterAnim)`
20-
21-
6. The lifecycle of Support can be triggered correctly through `replaceFragment()`
22-
23-
7. Dynamic change of Fragment's anim through `setFragmentAnimator()`
24-
25-
8. Support `popTo()` anim, add `popTo(f, includeF, afterRunnable, popAnimation)`
26-
27-
9. Further compatible with multi-touch, high-frequency transactions, optimize the problem of excessive drawing
28-
29-
## 0.10.0
30-
31-
1. Add a globally configurable `Fragmentation Builder`
32-
33-
* Provide a convenient way to open the stack view Dialog
34-
* bubble: click bubble to open stack view Dialog
35-
* shake: shake to open stack view Dialog
36-
* none: do not display stack view Dialog
37-
38-
* According to different environments, exceptions are dealt with respectively ("Can not perform this action after onSaveInstanceState!")
39-
40-
2、Fix `popToChild(f,includeF,afterRunnable)`hierarchical error problem
41-
42-
## 0.9.0
43-
44-
1. solve multi-touch problems, a number of optimizations, compatible problems etc.
45-
46-
## 0.8.0
47-
1. Add `onLazyInitView()`, `onSupportVisible()`,`onSupportInvisible()` to simplify dev
48-
49-
2. SupportActivity provides ability to monitoring lifecycle of Fragment through `registerFragmentLifecycleCallbacks()`
50-
51-
3. Support self-defined tag
6+
## Pre
7+
[master](https://github.com/YoKeyword/Fragmentation/blob/master/CHANGELOG.md)

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
### [中文版 README.md](https://github.com/YoKeyword/Fragmentation/blob/master/README_CN.md)
77

8-
# Fragmentation
8+
# FragmentationX
99

1010
![](/gif/logo.png)
1111

@@ -42,19 +42,19 @@ The first demo shows the basic usage of the library. The second one shows the wa
4242
<img src="/gif/stack.png" width="150px"/> <img src="/gif/log.png" width="300px"/>       <img src="/gif/SwipeBack.png" width="150px"/>
4343

4444
## How do I use Fragmentation?
45-
45+
### Note: This is the use of androidx, if you are using the android.support, [click here `branch:master`](https://github.com/YoKeyword/Fragmentation/blob/master/README.md)
4646
**1、build.gradle**
4747
````gradle
48-
// appcompat-v7 is required
49-
compile 'me.yokeyword:fragmentation:1.3.7'
48+
// This is the use of androidx, if you are using the android.support: fragmentationx -> fragmentation
49+
compile 'me.yokeyword:fragmentationx:1.0.0'
5050
5151
// If you don't want to extends SupportActivity/Fragment and would like to customize your own support, just rely on fragmentation-core
52-
// compile 'me.yokeyword:fragmentation-core:1.3.7'
52+
// compile 'me.yokeyword:fragmentationx-core:1.0.0'
5353
5454
// To get SwipeBack feature, rely on both fragmentation & fragmentation-swipeback
55-
compile 'me.yokeyword:fragmentation:1.3.7'
55+
compile 'me.yokeyword:fragmentationx:1.0.0'
5656
// Swipeback is based on fragmentation. Refer to SwipeBackActivity/Fragment for your Customized SupportActivity/Fragment
57-
compile 'me.yokeyword:fragmentation-swipeback:1.3.7'
57+
compile 'me.yokeyword:fragmentationx-swipeback:1.0.0'
5858
5959
// To simplify the communication between Fragments.
6060
compile 'me.yokeyword:eventbus-activity-scope:1.1.0'

README_CN.md

+11-10
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-Fragmentation-brightgreen.svg?style=flat)](https://android-arsenal.com/details/1/5937)
22
[![Build Status](https://travis-ci.org/YoKeyword/Fragmentation.svg?branch=master)](https://travis-ci.org/YoKeyword/Fragmentation)
3-
[![Download](https://api.bintray.com/packages/yokeyword/maven/Fragmentation/images/download.svg) ](https://bintray.com/yokeyword/maven/Fragmentation/_latestVersion)
3+
[![Download](https://api.bintray.com/packages/yokeyword/maven/Fragmentationx/images/download.svg) ](https://bintray.com/yokeyword/maven/Fragmentationx/_latestVersion)
44
[![Hex.pm](https://img.shields.io/hexpm/l/plug.svg)](https://www.apache.org/licenses/LICENSE-2.0)
55

6-
# Fragmentation
6+
# FragmentationX
77
A powerful library that manage Fragment for Android!
88

99
为"单Activity + 多Fragment","多模块Activity + 多Fragment"架构而生,简化开发,轻松解决动画、嵌套、事务相关等问题。
1010

1111
![](/gif/logo.png)
1212

1313

14-
为了更好的使用和了解该库,推荐阅读下面的文章:
14+
为了更好的使用该库,推荐阅读下面的文章:
1515

1616
[Fragment全解析系列(一):那些年踩过的坑](http://www.jianshu.com/p/d9143a92ad94)
1717

@@ -48,21 +48,22 @@ A powerful library that manage Fragment for Android!
4848
<img src="/gif/stack.png" width="150px"/> <img src="/gif/log.png" width="300px"/>     <img src="/gif/SwipeBack.png" width="150px"/>
4949

5050
# 如何使用
51-
51+
### 注意:以下为androidx的使用方式,如果使用的是android.support包,[点击这里`master`分支](https://github.com/YoKeyword/Fragmentation/blob/master/README_CN.md)
5252
**1. 项目下app的build.gradle中依赖:**
53+
5354
````gradle
54-
// appcompat-v7包是必须的
55-
compile 'me.yokeyword:fragmentation:1.3.7'
55+
// 以下为androidx的使用方式,如果使用的是android.support包,fragmentationx -> fragmentation 即可
56+
compile 'me.yokeyword:fragmentationx:1.0.0'
5657
5758
// 如果不想继承SupportActivity/Fragment,自己定制Support,可仅依赖:
58-
// compile 'me.yokeyword:fragmentation-core:1.3.7'
59+
// compile 'me.yokeyword:fragmentationx-core:1.0.0'
5960
6061
// 如果想使用SwipeBack 滑动边缘退出Fragment/Activity功能,完整的添加规则如下:
61-
compile 'me.yokeyword:fragmentation:1.3.7'
62+
compile 'me.yokeyword:fragmentationx:1.0.0'
6263
// swipeback基于fragmentation, 如果是自定制SupportActivity/Fragment,则参照SwipeBackActivity/Fragment实现即可
63-
compile 'me.yokeyword:fragmentation-swipeback:1.3.7'
64+
compile 'me.yokeyword:fragmentationx-swipeback:1.0.0'
6465
65-
// Activity作用域的EventBus,更安全,可有效避免after onSavenInstanceState()异常
66+
// Activity作用域的EventBus,通信更安全
6667
compile 'me.yokeyword:eventbus-activity-scope:1.1.0'
6768
// Your EventBus's version
6869
compile 'org.greenrobot:eventbus:{version}'

fragmentation_swipeback/README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ Activity内Fragment数大于1时,滑动返回的是Fragment,否则滑动返
77
<img src="../gif/swipe.gif"/>
88

99
# 如何使用
10+
### 注意:以下为androidx的使用方式,如果使用的是android.support包,[点击这里](https://github.com/YoKeyword/Fragmentation/blob/master/fragmentation_swipeback/README.md)
1011
1、项目下app的build.gradle中依赖:
1112
````gradle
12-
// appcompat v7包是必须的
13-
compile 'me.yokeyword:fragmentation:1.3.6'
14-
compile 'me.yokeyword:fragmentation-swipeback:1.3.6'
13+
compile 'me.yokeyword:fragmentationx:1.0.0'
14+
compile 'me.yokeyword:fragmentationx-swipeback:1.0.0'
1515
````
1616

1717
2、如果Activity也需要支持SwipeBack,则继承SwipeBackActivity:
@@ -41,10 +41,12 @@ public class SwipeBackSampleFragment extends SwipeBackFragment {
4141
````java
4242
getSwipeBackLayout().setEdgeOrientation(SwipeBackLayout.EDGE_RIGHT); // EDGE_LEFT(默认),EDGE_ALL
4343

44-
getSwipeBackLayout().setParallaxOffset(0.0f - 1.0f); // (类iOS)滑动退出视觉差,默认0.3
44+
getSwipeBackLayout().setParallaxOffset(0.0f ~ 1.0f); // (类iOS)滑动退出视觉差,默认0.3
4545

4646
setSwipeBackEnable(boolean enable); // 是否允许滑动
4747

48+
getSwipeBackLayout().setSwipeAlpha(0.0f ~ 1.0f); // 滑动中,设置上一个页面View的阴影透明程度度,默认0.5f
49+
4850
getSwipeBackLayout().addSwipeListener(new SwipeBackLayout.OnSwipeListener() {
4951
@Override
5052
public void onDragStateChange(int state) {

0 commit comments

Comments
 (0)