ThirtyInch v0.8.0 Release Notes

Release Date: 2017-05-04 // almost 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
    • 0๏ธโƒฃ 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
    • 0๏ธโƒฃ 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

    • ๐Ÿ”Œ Pull 49 New: TiFragmentPlugin

    โœ… test

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

    logginginterceptor

    • ๐ŸŒฒ Pull 85 New: Add logging interceptor module including LoggingInterceptor

    Diff

    v0.7.1...v0.8.0