-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[docs] improv: changelog, readme, todo and migration guide before 1.2…
….0-alpha
- Loading branch information
mkoslacz
committed
Dec 20, 2016
1 parent
2127c97
commit a0a7485
Showing
4 changed files
with
125 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
## Classes | ||
|
||
| **1.1.0-alpha** | **1.2.0-alpha** | | ||
|---------------------------------|---------------------------| | ||
| MvpActivity | ViperActivity | | ||
| MvpLceActivity | ViperLceActivity | | ||
| MvpLceViewStateActivity | ViperLceViewStateActivity | | ||
| MvpViewStateActivity | ViperViewStateActivity | | ||
| MvpFragment | ViperFragment | | ||
| MvpLceFragment | ViperLceFragment | | ||
| MvpLceViewStateFragment | ViperLceViewStateFragment | | ||
| MvpViewStateFragment | ViperViewStateFragment | | ||
| PervActivityBasePresenter | removed | | ||
| PervActivityBaseRxPresenter | removed | | ||
| PervFragmentBasePresenter | removed | | ||
| PervFragmentBaseRxPresenter | removed | | ||
| WipeBasePresenter | removed | | ||
| WipeBaseRxPresenter | removed | | ||
| ViperActivityBasePresenter | BasePresenter | | ||
| ViperActivityBaseRxPresenter | BaseRxPresenter | | ||
| ViperFragmentBasePresenter | BasePresenter | | ||
| ViperFragmentBaseRxPresenter | BaseRxPresenter | | ||
| ActivityBaseRouting | BaseRouting | | ||
| ActivityBaseRxRouting | BaseRxRouting | | ||
| ActivityBaseViewHelperRouting | BaseViewHelperRouting | | ||
| ActivityBaseViewHelperRxRouting | BaseViewHelperRxRouting | | ||
| FragmentBaseRouting | BaseRouting | | ||
| FragmentBaseRxRouting | BaseRxRouting | | ||
| FragmentBaseViewHelperRouting | BaseViewHelperRouting | | ||
| FragmentBaseViewHelperRxRouting | BaseViewHelperRxRouting | | ||
|
||
## Interfaces | ||
|
||
|** 1.1.0-alpha** | **1.2.0-alpha** | | ||
|------------------------------------|-----------------------------| | ||
| MoviperInteractor | ViperInteractor | | ||
| MoviperRxInteractor | ViperRxInteractor | | ||
| MoviperPresenter | ViperPresenter | | ||
| MoviperActivityPresenterForRouting | ViperPresenterForRouting | | ||
| MoviperFragmentPresenterForRouting | ViperPresenterForRouting | | ||
| MoviperPresenterForRouting | ViperPresenterForRouting | | ||
| MoviperPresenterForInteractor | ViperPresenterForInteractor | | ||
| MoviperRouting | ViperRouting | | ||
| MoviperRxRouting | ViperRxRouting | | ||
| MoviperViewHelperRouting | ViperViewHelperRouting | | ||
| MoviperViewHelperRxRouting | ViperViewHelperRxRouting | | ||
| MoviperViewHelper | ViperViewHelper | | ||
|
||
## Methods | ||
|
||
| **1.1.0-alpha** | **1.2.0-alpha** | | ||
|-----------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------| | ||
| MoviperActivityPresenterForRouting#createRouting(Activity activity) MoviperFragmentPresenterForRouting#createRouting(Fragment fragment) | ViperPresenterForRouting#createRouting() | | ||
| MoviperPresenterForRouting#isRoutingAttached() | removed | | ||
| MoviperPresenterForInteractor#isInteractorAttached() | removed | | ||
| MoviperRouting#attachPresenter(PresenterType presenter) | ViperRouting#attach(ActivityHolder activity, PresenterType presenter) ViperRxRouting#attach(ActivityHolder activity) | | ||
| MoviperRouting#detachPresenter() MoviperRxRouting#onPresenterDetach() | CommonViperRouting#detach(boolean retainInstance) | | ||
| Interactor#attachPresenter() | ViperInteractor#attach(PresenterType presenter) ViperRxInteractor#attach() | | ||
| Interactor#detachPresenter() Interactor#onPresenterDetach() | CommonViperInteractor#detach(boolean retainInstance) | | 1.2.0-alpha | | ||
|-----------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------| | ||
| MoviperActivityPresenterForRouting#createRouting(Activity activity) MoviperFragmentPresenterForRouting#createRouting(Fragment fragment) | ViperPresenterForRouting#createRouting() | | ||
| MoviperPresenterForRouting#isRoutingAttached() | removed | | ||
| MoviperPresenterForInteractor#isInteractorAttached() | removed | | ||
| MoviperRouting#attachPresenter(PresenterType presenter) | ViperRouting#attach(ActivityHolder activity, PresenterType presenter) ViperRxRouting#attach(ActivityHolder activity) | | ||
| MoviperRouting#detachPresenter() MoviperRxRouting#onPresenterDetach() | CommonViperRouting#detach(boolean retainInstance) | | ||
| Interactor#attachPresenter() | ViperInteractor#attach(PresenterType presenter) ViperRxInteractor#attach() | | ||
| Interactor#detachPresenter() Interactor#onPresenterDetach() | CommonViperInteractor#detach(boolean retainInstance) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters