Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

However this repeat can be any list of integers or even strings, and thus the trigger expressions does NOT use date arithmetic.

This is where we have added a new A new  repeat. datelist has been added to address this.

Code Block
repeat datelist YMD 20130101 20130102 20130103 20200101 20190101

In python:

Code Block
task.add_repeat(RepeatDateList("date",[20100111, 20190101, 20100115]))


A repeat datelist is a list of arbitrary dates, using YYYYMMDD format. It will use the same date arithmetic as a repeat date.

...