-
-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🐞 Event Intervals #147
Comments
I want to add an event that occurs every number of days, but the only recurring options are every year, every month, or every day. The documentation states that there should be an "Add Interval" button when you create an event but I can't find it. There's also no tag when you create a note event. |
+1 I was looking for the same feature (event on 30th, recurring every 3 months) and tried via UI and notes. The "Recurring" button in the event creation dialog was confusing: I understood the appearing input as the interval setting, but I could not get it to behave accordingly. When playing around in a note/frontmatter, I managed to create an event that was recurring on 1. day in the 1. month, 2. day in 2. month, n-th day in n-th month. This is when I looked into the code. This cache update functions seems to have a (semi related) bug here: const start = date.day[0] ?? this.month;
const end = date.day[1] ?? this.month; When there is no I might be misunderstanding it's purpose of the
In the end a simple interval input with Then a Range is just a Recurring with interval defaulted to |
Check for existing bug reports before submitting.
Expected Behavior
There should be an "Add Interval" button in the event creation modal, as per the documentation
Current behaviour
There is no such button
Reproduction
Create a new calendar, create a new event, see no button.
Which Operating Systems are you using?
Obsidian Version Check
1.7.4 and 1.5.8
Plugin Version
1.4.0
Confirmation
Possible solution
No response
The text was updated successfully, but these errors were encountered: