xuhcc / mindstream

Task management app, built on todo.txt.
GNU General Public License v3.0
41 stars 6 forks source link

Allow more recurrence options #5

Closed oli-ver closed 3 years ago

oli-ver commented 3 years ago

Right now the regex for recurrences only allows to set 1-7 days, weeks or months:

export const RECURRENCE_REGEXP = /^([1-7])(d|w|m)$/
const RECURRENCE_TAG_REGEXP = /rec:([1-7](d|w|m))(\s|$)/

In my opinion the recurrence should also be possible for other options every 13 days, every 19 weeks or every 104 months. There should be no need to only allow 1 to 7.

xuhcc commented 3 years ago

@oli-ver I agree with that. Thank you for your contribution!