Skip to content

Releases: DanielMartinus/Stepper-Touch

1.0.1

23 Mar 20:42
Compare
Choose a tag to compare

The following issue is fixed:

  • (PR: 39) fixes issue #38 to have more control over the size of the stepper

New dimensions

Two new dimensions are added to set the margins of the negative and positive textview. You can override these values by putting them in the dimens.xml of your app.

<dimen name="stepper_side_control_margin_start">8dp</dimen>
<dimen name="stepper_side_control_margin_end">8dp</dimen>

[1.0] Major release

13 Jan 17:09
513eb55
Compare
Choose a tag to compare
  • (PR: #34) Worked on a big revamp of the internals of Stepper-Touch. Fixes issues:
  • (PR: #35) Support RTL layout, fixes issue: #20

The following issues are fixed:

  • #12 The widget was not correctly drawn inside a ScrollContainer.
  • #23 Ability to reset the widget

With the major changes the API also changed a bit by removing the unnecessary stepper interface. See readme for more details.

Property to (dis)allow positive and negative stepper

12 Jan 15:22
ce2a5a1
Compare
Choose a tag to compare

Thanks to the contribution of @imaNNeoFighT there are now two new properties available:

app:app:stepperAllowNegative=""
app:app:stepperAllowPositive=""

This allows you to hide and disable either side of the stepper.

Migration to androidx

12 Jan 15:19
Compare
Choose a tag to compare

Migrated the library to androidx due to this issue: #24

Projects that didn't migrate yet can only use version 0.6 or lower and won't receive any updates anymore.

0.6 Increase or decrease by tapping

14 Jul 18:53
Compare
Choose a tag to compare

Increase or decrease the number when tapping on one of the sides
Pull request: #6

Enable the feature by calling:

stepperTouch.enableSideTap(true)

Fix interception of touch events by parent views

25 May 12:44
Compare
Choose a tag to compare

Stepper touch had problems with interactions when it was implemented within a viewgroup such as a ScrollView as reported in #8 . This release contains a hot-fix disallowing the parent view to intercept touch events while interacting with the Stepper Touch widget.

0.4 bug fix

15 May 20:55
Compare
Choose a tag to compare

Bug fix using dynamic size changes. See #5 for more detailed information.