cover
  • #Release

Tapicker v5.5.25 released 🎉👏

Welcome to the release of Tapicker v5.5.25. There are many updates in this version that we hope you'll like, some of the key highlights include:

  • Automatically remember arguments
  • Blocks in recipes can be disabled
  • Supported using dynamic data on filter
  • Supported multiple lines on template of Input Text
  • The at(index?) parameter in pipes can be omitted
  • Added random(min?, max?) to pipes
  • Fixed column cancel save not working

Automatically remember arguments

For a better experience, we can now automatically remember the arguments so that you don't have to modify it every time unless necessary.

remember-args

Blocks in recipes can be disabled

When you're developing a recipe, you may need to temporarily disable certain blocks for testing purposes, and this can help you a lot!

disable-block

Supported using dynamic data on filter

In some scenarios, you may need to use it, for example: dynamically click an option based on the text.

dynamic-filter

Supported multiple lines on template of Input Text

When entering text dynamically, you can now include multiple lines in the template, for example if you want to enter formatted text.

multi-lines

The at(index?) parameter in pipes can be omitted

Suppose there is a list like this

@vars.arr = ['a', 'b', 'c', 'd', 'e']

Case 1. If you want to get a specific item, for example, a

{{@vars.arr|at(0)}} -> a

Case 2. If the parameter is omitted, it will return a random item in the list.

{{@vars.arr|at()}} -> c

This is a good replacement for @funcs.getRandomItem(), which has been removed.

Added random(min?, max?) to pipes

Same example

@vars.arr = ['a', 'b', 'c', 'd', 'e']

Case 1. Randomize the list

{{@vars.arr|random()}} -> ['d', 'b', 'c', 'a', 'e']

Case 2. Randomize and then select a part

{{@vars.arr|random(2, 4)}} -> ['d', 'b']

Fixed column cancel save not working

I don't know how long this feature was broken, but luckily I discovered it one day and now I have fixed it. lol. 🤣

col-unsave

Conclusion

Tapicker v5.5.25 brings several user-friendly updates. You can now automatically remember arguments, disable blocks in recipes, use dynamic data in filters, and include multiple lines in text templates. These enhancements make Tapicker more flexible and convenient for your automation needs.