ThirtyInch Versions Save

a MVP library for Android favoring a stateful Presenter

v1.0.1

4 years ago

Changelog:

  • Fix crash on configuration change in a Fragment or when switching Fragments (caused by a bug in AndroidX Fragment 1.2.0)

v1.0.0

4 years ago

Changelog

  • Migrated to AndroidX

v0.9.6

4 years ago

Version 0.9.6 06.06.19

Summary

Same as 0.9.5 but with an fix that TiCoroutineScope.launchUntilViewDetaches crashes when using in in TiPresenter.onAttachView.

Changelog

  • Fix: Crash while using TiCoroutineScope.launchUntilViewDetaches #192 (Thanks @Syex!)

Diff

https://github.com/grandcentrix/ThirtyInch/compare/v0.9.5...v0.9.6

v0.9.5

4 years ago

Version 0.9.5 03.06.19

Summary

Lint module

New lint module to detect issues early. For instance we detect that you have missed to implement the TiView in your Activity or Fragment.

Use: No action required. We bundle the lint registry together with the main thirtyinch module.

kotlin-coroutines support

This new kotlin module which makes the usage of Kotlin coroutines super easy with ThirtyInch.

The Jobs you will start with the TiCoroutineScope will be automatically canceled when either the View disappeared or the Presenter got destroyed.

Use: implementation "net.grandcentrix.thirtyinch:thirtyinch-kotlin-coroutines:0.9.5"

You can also checkout our README#coroutines.

plugin

This module was removed because CompositeAndroid isn't maintained anymore.

Changelog

  • New: lint module #158
  • New: kotlin-coroutines support #182
  • Deleted the plugin #168

Diff

https://github.com/grandcentrix/ThirtyInch/compare/v0.9.0...v0.9.5

v0.9.0

5 years ago

Version 0.9.0 31.7.18

Summary

sendToView -> deliverToView for kotlin users

New kotlin module which makes the usage of sendToView easier. If you have more ideas open a issue or PR.

When using sendToView, repeating it.* inside the lambda is quite annoying. It's clear that the methods are called on the view. With the kotlin extension deliverToView the TiView will be give over to the lambda as this.

// normal java API
sendToView {
    it.showText("Hello World")
}
      
// kotlin extension
deliverToView {
    showText("Hello World")
}

Back in the Java days we had to use it inside the sendToView-lambda.

Use: implementation "net.grandcentrix.thirtyinch:thirtyinch-kotlin:$thirtyinchVersion"

AndroidX

Starting with Android Studio 3.2 you can migrate to AndroidX and ThirtyInch is ready.

Changelog

  • New: kotlin module with TiPresenter#deliverToView(block: View.() -> Unit) which can be used as a replacement for sendToView #150
  • Changed: AppCompat is now a dependency (api, was compileOnly)
  • New: Rx2TiPresenterUtils#deliverLatestToView #137 (thx @GrahamBorland)
  • Changed: TiPresenter#sendToView is now public (was protected) which allows a kotlin extension function #142
  • New: AndroidX support #153

Diff

https://github.com/grandcentrix/ThirtyInch/compare/v0.8.5...v0.9.0

v0.8.5

6 years ago

Version 0.8.5 14.10.17

Summary

Mostly a maintenance release improving documentation, adding tests and cleaning up the repository.

Highlight: The test package is now deprecated and all functionality was moved into the thirtyinch artifact.

Thanks for external contributors: @baltuky @vpondala

Public changes

  • Pull 115 New: Update dependencies (support lib 26.0.0, target- and compileSdkVersion 26 and other minor updates)
  • Pull 120 New: TiPresenter#test() returns a TiTestPresenter with helper methods for unit testing. Replaces TiPresenterInstructor and deprecates the test artifact.
  • Pull 126 Fix: TiPresenter#test() documentation, thx @baltuky

Internal changes

  • Pull 99 Fix: remove javadoc warnings
  • Pull 103 New: Improved RELEASE.md instructions
  • Pull 105 New: Deprecate internal DelegatedTiActivity#isActivityChangingConfigurations which turned out as not required to handle config changes correctly. Simplifies internal logic
  • Pull 112 New: Update to gradlew 4.1 allowing development with Android Studio 3.0
  • Pull 113 New: Test for LifecycleObserver cleanup
  • Pull 114 New: Tests for internal OneTimeRemovable
  • Pull 117 New: internal PresenterScope tests
  • Pull 121 New: Replace all Hamcrest assertions with AssertJ, thx @vpondala
  • Pull 123 New: Add codestyle to project and reformat all sources according to this. Reduces diffs for external contributors
  • Pull 127 New: Additional tests for TiTestPresenter

Diff

https://github.com/grandcentrix/ThirtyInch/compare/v0.8.0...v0.8.5

v0.8.0

7 years ago

Version 0.8.0 04.05.17

Summary

Version 0.8.0 is a big step forward towards 1.0.0. The biggest problem, a memory leak when using Fragments could be resolved. This bugfix was only possible after introducing tons of tests. API enhancements of TiPresenter make MVP even easier and removes common pitfalls

Increased code coverage from below 20% to 67% (646/951 lines)

Thanks for external contributors: @remcomokveld, @vRallev, @jonathan-caryl, @k0shk0sh

thirtyinch

TiPresenter

  • Pull 26 New: onAttachView(TiView) replaces onWakeUp() which is now deprecated
  • Pull 26 New: onDetachView() replaces onSleep() which is now deprecated
  • Pull 26 New: getView() is now annotated with @Nullable
  • Pull 87 New: getViewOrThrow() for cases where the view logically can't be null
  • Pull 36 New: sendToView(ViewAction<TiView>) to postpone code execution until the view is attached
  • Pull 65 New: runOnUiThread(Runnable) executes code on the view Ui Thread.
  • Pull 65 New: sendToView(view -> { }) automatically executes the action on the Ui Thread
  • Pull 94 Always call observer for events which happend when they were registered

TiFragment

  • Pull 78 Presenter gets correctly destroyed when Fragment is not managed by the FragmentManager anymore
  • Pull 78, Pull 67 uses now the default: setRetainInstanceState(false). Setting TiFragment#setRetainInstanceState(true) will throw
  • Pull 78 Support for backstack

TiActivity

  • Pull 78 Always use PresenterSavior singleton, drop support for NonConfigurationInstance

Other

  • Pull 14, Pull 15 TiLog is used for logging. Listener to see a log output
  • Pull 19, Pull 24 @DistinctUntilChanged supports multiple comparators. (EqualsComparator, WeakEqualsComparator, HashComparator(default))
  • Pull 23 AppCompat is now included with provided dependency instead of compile
  • Pull 42 New: TiDialogFragment
  • Pull 79 New: @CallSuper where a super call is required.
  • Pull 79 New: restrict TiActivity, TiFragment... API for subclasses.
  • Pull 78, Pull 33, Pull 83, Pull 68 Fix: TiPresenter gets destroyed when TiFragment gets removed from the FragmentManager
  • Pull 81 New: Proguard rules included in the library
  • Pull 78 TiConfiguration#setUseStaticSaviorToRetain(Boolean) is now deprecated. The PresenterSavior singleton is always used to retain presenters when TiConfiguration#setRetainPresenterEnabled(true).

rx

  • Pull 27 Fix: view can be null before unsubscribing from Subscriptions
  • Pull 43 New: manage\[View\]Subscriptions(Subscription...)
  • Pull 58, Pull 61 manageViewSubscription(Subscription) will now throw when the view isn't attached
  • Pull 61 RxTiPresenterUtils#isViewReady() now emits the ready event after onAttachView(TiView) was called.
  • Pull 73 New: manage\[View\]Subscription will now return Subscription

rx2

New module for RxJava2 analog to rx module

  • Pull 54, Pull 64 New: RxTiPresenterDisposableHandler#manageDisposable and RxTiPresenterDisposableHandler#manageViewDisposable

plugin

test

  • Pull 65 TiPresenterInstructor automatically sets an Executor for runOnUiThread and sendToView actions

logginginterceptor

  • Pull 85 New: Add logging interceptor module including LoggingInterceptor

Diff

https://github.com/grandcentrix/ThirtyInch/compare/v0.7.1...v0.8.0

v0.8.0-rc4

7 years ago

2017-04-25

Most likely the last RC before releasing 0.8.0 🎉

thirtyinch

  • Bugfix: TiPresenter gets destroyed when TiFragment gets removed from the FragmentManager #78 #33 #83 #68
  • New: TiFragment supports the backstack #78
  • New: restrict TiActivity, TiFragment... API for subclasses. #79
  • New: @CallSuper where a super call is required. #79
  • Deprecation: TiConfiguration#setUseStaticSaviorToRetain(Boolean) is now deprecated. The Savior singleton is always used to retain presenters when TiConfiguration#setRetainPresenterEnabled(true). This also means that TiActivity dropped support for the NonConfigurationInstance API #78
  • Change: TiFragment was initially using setRetainInstanceState(true). TiFragment uses now the default: setRetainInstanceState(false). When you try to set TiFragment#setRetainInstanceState(true) it will throw. #78 #67
  • New: No hard checks required to detect "Don't keep Activities", destroying the TiPresenter works now with the Activity API only. #78

rx

  • New: manage*Subscription will now return Subscription #73
  • Change: manage*Subscription(Subscription...) is now manage*Subscriptions(Subscription...) (note the S here), was introduced in an earlier RC and is no breaking change. #73

rx2

  • New: manage* Disposable will not return Disposable #73
  • Change: manage* Disposable(Disposable...) is now manage* Disposables(Disposable...) (note the S here 😉), was introduced in an earlier RC and is no breaking change. #73

sample

  • New: retrolambda support #69 thx @jonathan-caryl
  • New: FragmentLifecycleActivity to test Fragments #78
  • New: LifecycleViewPagerActivity to test Fragments in a ViewPager #84

New: logginginterceptor

  • New: LoggingInterceptor logs all method calls to the TiView interface to TiLog for debugging. Don't forget to enable TiLog or pass a custom Logger to the LoggingInterceptor constructor. #85

compile "net.grandcentrix.thirtyinch:thirtyinch-logginginterceptor:$thirtyinchVersion"

    // register TiLog in your Application
    if (BuildConfig.DEBUG) {
        TiLog.setLogger(TiLog.LOGCAT);
    }

public class MyActivity extends TiActivity<MyPresenter, MyView> implements MyView {

    public MyActivity() {
        // log by default to TiLog
        addBindViewInterceptor(new LoggingInterceptor());

       // log to logcat for debug builds
        addBindViewInterceptor(new LoggingInterceptor(BuildConfig.DEBUG ? TiLog.LOGCAT : null));
    }
}

Diff

https://github.com/grandcentrix/ThirtyInch/compare/v0.8.0-rc3...v0.8.0-rc4

v0.8.0-rc3

7 years ago

2017-02-10

thirtyinch

  • New: TiPresenter#runOnUiThread(Runnable) executes code on the view Ui Thread. #65
  • New: sendToView(view -> { }) automatically executes the action on the Ui Thread #65
  • Fix: Change sendToView(action) actions will be executed after #onAttachView(view), and after all LifecycleObserver received their events. This allows preparing the view in onAttachView(TiView) for those actions. That way the view should be in a "running" state as if the view was never gone. #65
  • Fix: Change LifecycleObservers get called in order they are added for constructive events (VIEW_ATTACHED) and in reversed order for destructive events (VIEW_DETACHED, DESTROYED). First in, last out. #65

plugin

  • New TiFragmentPlugin #49

rx

  • New: manageViewSubscription(Subscription) will now throw when the view isn't attached #58, #61
  • Fix: Rename second parameter of TiLifecycleObserver#onChange(state, beforeLifecycleEvent) to TiLifecycleObserver#onChange(state, hasLifecycleMethodBeenCalled), also adjusted the documentation #61
  • Fix: Change RxTiPresenterUtils#isViewReady() to emit the ready event after onAttachView(TiView) was called.

New: rx2

  • New: rx2 module compile "net.grandcentrix.thirtyinch:thirtyinch-rx2:$thirtyinchVersion" #54
  • New: auto dispose your Disposable with RxTiPresenterDisposableHandler#manageDisposable and RxTiPresenterDisposableHandler#manageViewDisposable #54, #64
  • RxTiPresenterUtils#isViewReady(): Observable<Boolean> emits the view attached state

test

  • New: TiPresenterInstructor automatically sets an Executor for runOnUiThread and sendToView actions. It's even more recommended to use it instead of calling the lifecycle methods manually

v0.8.0-rc2

7 years ago

Changelog 0.8.0-rc2

thirtyInch

  • New: TiDialogFragment #42 with TiDialogFragmentDelegate under the hood #47 (thanks @vRallev)
  • New: @DistinctUntilChanged uses now hashcode() instead of equals() by default (again) for comparison. Revert of change introduced in 0.8.0-rc1 #46

rx

  • New: Multiple subscriptions #43