surrealroad / alfred-reminders

Manages reminders in Reminders.app
MIT License
674 stars 44 forks source link

'r today' is not working properly. #124

Closed Daeho-Son closed 5 months ago

Daeho-Son commented 2 years ago

https://user-images.githubusercontent.com/48791587/158303215-298e8c36-8b06-4676-88e6-5b9c35a83298.mov

스크린샷 2022-03-15 12 30 36

내일 = tomorrow


macOS Monterey ver 12.2.1 Macbook Air(M1, 2020)

Reminders for Alfred v75

KngZhi commented 2 years ago

same here

kanapka94 commented 1 year ago

Find this code in workflow block named "r":

if (d < now) {
  d.setDate(now.getDate() + 1);
}

and replace it with this:

// If date is in the past, assume intended date is today

    if (d < now) {
      d.setDate(now.getDate());
      d.setHours(new Date().getHours())
      d.setMinutes(new Date().getMinutes())
    }
kecinzer commented 7 months ago

It's possible to set today without specify time?

Christian-Martensson commented 6 months ago

@kecinzer, did you find a solution for setting only today's date and no time?

kecinzer commented 6 months ago

@kecinzer, did you find a solution for setting only today's date and no time?

No, I switched to Things 3.

surrealroad commented 5 months ago

It's possible to set today without specify time?

I've been looking into a solution for this, there's probably a way to do it via chrono, but I can't see it. I don't want to create a lot of (more) spaghetti code to make it work.

surrealroad commented 5 months ago

fixed via b04fe89647fe90b849c8f8ad5c3463cbbea9a0db