Skip to content

Releases: drstranges/ActionHandler

RxRequestAction improvement

25 Mar 19:18
Compare
Choose a tag to compare

Added constructor parameter for setting unsubscribe or not from old request on preparing new one

Return result

25 Mar 12:48
Compare
Choose a tag to compare

Now OnActionFiredListener returns Object result as param.

Add SimpleIntentAction

22 Feb 10:45
Compare
Choose a tag to compare

IntentAction.from(intent)

Add ActionFireInterceptor

08 Feb 17:55
Compare
Choose a tag to compare
v1.0.1

add ActionFireInterceptor

Release

12 Jan 12:58
Compare
Choose a tag to compare
v1.0.0

stable version

Fix RequestAction crash

12 Jan 11:15
Compare
Choose a tag to compare
v0.1.28

fix request action

Improvemrnts

12 Jan 10:14
Compare
Choose a tag to compare
  • changed order of constructor parameters for CompositeAction.ActionItem

old: new ActionItem(R.drawable.icon, R.color.tint, SHOW_TOAST, new ShowToastAction(), R.string.menu_item_2)))

new: new ActionItem(SHOW_TOAST, new ShowToastAction(), R.drawable.icon, R.color.tint, R.string.menu_item_2)))

v0.1.26

11 Jan 16:31
Compare
Choose a tag to compare
  • fixes
  • added Dismiss Listener
  • now CompositeAction can show dialog menu with icons.
new CompositeAction<>(titleProvider,
                      new ActionItem(OPEN, new OpenSecondActivity(), R.string.menu_item_1),
                      new ActionItem(R.drawable.icon, R.color.tint, SHOW_TOAST, new ShowToastAction(), R.string.menu_item_2)))

setActionInterceptor -> addActionInterceptor

16 Dec 19:41
Compare
Choose a tag to compare
  • setActionInterceptor now deprecated, use addActionInterceptor

Added Error Listener

16 Dec 19:14
Compare
Choose a tag to compare
  • setActionFiredListener(listener) now deprecated, use addActionFiredListener(listener) instead;
  • new methods: addActionFiredListener(l), removeActionFiredListener(l), removeAllActionFiredListeners();
  • new error listener:: addActionErrorListener(l), removeActionErrorListener(l), removeAllActionErrorListeners();