You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems to me like the minimum_time setting is broken. Instead of setting the minimum time of the time entry (i.e. log at least half an hour, even if the task only took 10 minutes), it seems to multiply the time.
Example YAML time sheet:
2024-04-20:
- 0.25 E 20000 Test
- 0.50 E 20001 Test
- 0.75 E 20002 Test
- 1.00 E 20003 Test
With the default minimum_time setting of 0.25 hours:
Sat: 0.25h @ [...] Test
Sat: 0.5h @ [...] Test
Sat: 0.75h @ [...] Test
Sat: 1.0h @ [...] Test
✔️ Works as expected
Changing minimum_time to half an hour:
Sat: 0.5h @ [...] Test
Sat: 1.0h @ [...] Test
Sat: 1.5h @ [...] Test
Sat: 2.0h @ [...] Test
⚠️ All time entries are doubled
Expected behavior, from my understanding:
Only the first time entry (less than half an hour) is changed:
Sat: 0.5h @ [...] Test
Sat: 0.5h @ [...] Test
Sat: 0.75h @ [...] Test
Sat: 1.0h @ [...] Test
I was not yet able to dig deeper into this issue.
The text was updated successfully, but these errors were encountered:
It seems to me like the
minimum_time
setting is broken. Instead of setting the minimum time of the time entry (i.e. log at least half an hour, even if the task only took 10 minutes), it seems to multiply the time.Example YAML time sheet:
With the default
minimum_time
setting of 0.25 hours:✔️ Works as expected
Changing
minimum_time
to half an hour:Expected behavior, from my understanding:
Only the first time entry (less than half an hour) is changed:
I was not yet able to dig deeper into this issue.
The text was updated successfully, but these errors were encountered: