alfred-reminders icon indicating copy to clipboard operation
alfred-reminders copied to clipboard

'r today' is not working properly.

Open Daeho-Son opened this issue 2 years ago • 3 comments

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

Daeho-Son avatar Mar 15 '22 03:03 Daeho-Son

same here

KngZhi avatar Mar 17 '22 07:03 KngZhi

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())
    }

kanapka94 avatar Mar 05 '23 19:03 kanapka94

It's possible to set today without specify time?

kecinzer avatar Mar 21 '24 10:03 kecinzer

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

Christian-Martensson avatar Apr 29 '24 12:04 Christian-Martensson

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

No, I switched to Things 3.

kecinzer avatar May 07 '24 11:05 kecinzer

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 avatar May 17 '24 14:05 surrealroad

fixed via b04fe89647fe90b849c8f8ad5c3463cbbea9a0db

surrealroad avatar Jun 03 '24 12:06 surrealroad