obsidian-day-planner icon indicating copy to clipboard operation
obsidian-day-planner copied to clipboard

Auto complete past tasks is gone

Open aknighty74 opened this issue 1 year ago • 8 comments

It's good news to know that we finally got a fork of this old project and a lot of new features. However, features like auto complete past tasks is not working. Also, the line/bar is barely visible since it is behind the current task on the timeline, verified this with multiples themes.

aknighty74 avatar Aug 31 '23 15:08 aknighty74

Hey, @aknighty74. Do you expect to see the time indicator above task-blocks? Or to have these margins wider? image

ivan-lednev avatar Aug 31 '23 15:08 ivan-lednev

I would expect to see that above the task-blocks, personally

JosephBrooksbank avatar Aug 31 '23 16:08 JosephBrooksbank

Hey, @aknighty74. Do you expect to see the time indicator above task-blocks? Or to have these margins wider? image

yes, both actually would do the trick

aknighty74 avatar Aug 31 '23 20:08 aknighty74

After thinking about this, I've decided not to implement this, since completed and past are two different task states that I'd like to keep separate.

Of course, if someone wants to submit a PR, adding this as an opt-in feature, I'll be happy to merge it.

ivan-lednev avatar Sep 24 '23 15:09 ivan-lednev

In the mean time (if possible) can you make the timeline bar a bit more visible as @JosephBrooksbank stated. Should I open a separate issue for this?

aknighty74 avatar Sep 24 '23 20:09 aknighty74

I can take a crack at that today

JosephBrooksbank avatar Sep 27 '23 15:09 JosephBrooksbank

This is a bit harder of a problem than I imagined, due to how stacking works. Getting the time indicator on top is trivial, but then it also goes over the text in the tasks, which doesn't look great either: image

To get it above the background of the task but below the text seems more difficult, because stacking is only relevant to the parent element.

<div> time indicator </div>
<div task
   <ul list items />
</div

The 'time indicator' can only be 'stacked' with the entire task object, because they are siblings. elements internal to the task element cannot stack with the time indicator independently. To get it to stack one and not the other will require a more complicated solution, I think.

JosephBrooksbank avatar Sep 28 '23 15:09 JosephBrooksbank

Is the autocomplete event feature not available?

MaxwellVale avatar Oct 01 '23 05:10 MaxwellVale