It seems the reminders don't work anymore. After some digging, I found
out that the clock.time event is fired a few milliseconds too early;
so when rounding it to get the event type, it falls one second short.
The obvious but not so clean way to "fix" this would be to change
domain/date/clock.py and put
super(OnceTimer, self).Start(timeDelta.milliseconds() + 100)
instead of
super(OnceTimer, self).Start(timeDelta.milliseconds())
but it seems like a hack :( Seems to work though. What do you think ?