Add a new Daily Tasks view to show tasks that are scheduled or due in the current date - #11
Merged
Merged
Conversation
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new “Today/Daily Tasks” Command Palette view to surface tasks relevant to the current date, extending the extension’s existing task-list pages and TaskItem model.
Changes:
- Introduces
TodayTasksPageto list tasks filtered by due/scheduled (and currently also overdue) criteria for the current day. - Extends
TaskItemwithScheduledDateparsing andIsScheduledTodayhelper. - Adds unit tests covering scheduled-date parsing and the new “scheduled today” predicate.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 5 comments.
| File | Description |
|---|---|
ObsidianTaskNotesExtension/Pages/TodayTasksPage.cs |
New dynamic list page for “today” task filtering and display. |
ObsidianTaskNotesExtension/ObsidianTaskNotesExtensionCommandsProvider.cs |
Registers the new page as a top-level command. |
ObsidianTaskNotesExtension/Models/TaskItem.cs |
Adds computed scheduled-date parsing and “scheduled today” helper. |
ObsidianTaskNotesExtension.Tests/Models/TaskItemTests.cs |
Adds unit tests for scheduled date parsing and IsScheduledToday. |
HeyItsGilbert
approved these changes
Mar 22, 2026
HeyItsGilbert
left a comment
Owner
There was a problem hiding this comment.
At some point I'll create an abstraction so it doesn't complain about drift. But this is good enough for now. Thanks!
HeyItsGilbert
enabled auto-merge (squash)
March 22, 2026 03:44
HeyItsGilbert
disabled auto-merge
March 22, 2026 03:46
HeyItsGilbert
enabled auto-merge (squash)
March 22, 2026 03:47
HeyItsGilbert
disabled auto-merge
March 22, 2026 03:47
Merged
HeyItsGilbert
added a commit
that referenced
this pull request
Apr 6, 2026
## [0.5.0] - 2026-04-06 ### Added - Daily Tasks view showing tasks scheduled or due today, with support for the new Dock feature (#11) - Version display on the Settings page for easier troubleshooting - Debug build indicator: distinct icon and "(Debug)" version suffix in debug builds ### Fixed - Create Task crash: plugin crashed after successfully creating a task due to unhandled async exception and invalid GoBack navigation from a top-level form page; now shows a "Task created!" toast and dismisses cleanly - Edit Task: added defensive error handling to prevent potential unobserved async exceptions ### Changed - Assembly version now derived from AppxPackageVersion in the csproj for consistent runtime version reporting 🤖 Generated with [Claude Code](https://claude.ai/claude-code) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR adds a new Daily Tasks view to show all the open and closed tasks that are scheduled or due in the current date
Related Issue
#9
Motivation and Context
I'm a heavy user of Obsidian and TaskNotes and I have a task view which shows me all the tasks that are scheduled or due in the current date. I would like to get quick access to the same view through Command Palette and the new Dock feature.
How Has This Been Tested?
Unit testing for the filter logic and manual UI tests to see the behavior
Screenshots (if appropriate):
Checklist: