8000 Tags · alapshin/arctor · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Tags: alapshin/arctor

Tags

0.12.0

Toggle 0.12.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Fix Travis CI build

0.11.0

Toggle 0.11.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Ensure viewSubject emits on main thread

Ensure that viewSubject emits on main thread to avoid situations
when emission is  done on background thread but observed on main thread
when view is already detached.

0.10.0

Toggle 0.10.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Fix view detachment from presenter

Detach view from presenter during onPause when activity is finishing.
This is needed to avoid unnecessary view updates caused by another
activity coming into foreground.

If resumed activity causes some changes to underlying model and the same model
is used in finishing activity presenter then finishing activity will get new
values from underlying model since it doesn't become detached until
onDestroy is called later.

0.9.0

Toggle 0.9.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Bump version

0.8.2

Toggle 0.8.2's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Fix RxJava2-based presenter

0.8.1

Toggle 0.8.1's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Remove unused import

0.8.0

Toggle 0.8.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Fix field initialization in rxjav2-based RxPresenter

0.7.2

Toggle 0.7.2's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Clear command queue in presenter when view is destroyed

Clear command queue in presenter when view is destroyed. Otherwise when
we reuse same presenter (for example through dagger) with another view
instance we receive old commands.

0.7.1

Toggle 0.7.1's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Bump minor version

0.6.3

Toggle 0.6.3's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Fix NPE on presenter destruction if there is no attached views

0