Add Hide future dates - #54
Open
xieweicong wants to merge 2 commits into
Open
Conversation
mkatto
approved these changes
Jun 20, 2025
costela
approved these changes
Jan 26, 2026
costela
left a comment
There was a problem hiding this comment.
Sorry for the drive-by review by a non-project-member. Hopefully some more feedback will help this PR move along a bit 🤞
Comment on lines
+16
to
+19
| declare global { | ||
| var app: App; | ||
| } | ||
|
|
Comment on lines
+27
to
+29
| declare global { | ||
| var app: App; | ||
| } |
There was a problem hiding this comment.
same as above: I can't quite see the need for these?
chadrach
pushed a commit
to chadrach/Obsidian-Daily-Notes-Editor-fork
that referenced
this pull request
Jul 9, 2026
- Format note headers as "dddd, MMMM Do YYYY" instead of raw filename - Add conditional backlinks (only show when file has actual backlinks) - Add spacing before backlinks section (margin-top: 2em) - Fix mobile text fade effect on embedded editors (PR Quorafind#83) - Integrate hide future dates setting (PR Quorafind#54) - Integrate auto-focus today's note + switch to existing editor (PR Quorafind#77) - Fix iOS scrolling by never unloading rendered editors - Add scroll event listener fallback for iOS infinite scroll reliability - Add settings: hideUnreachedDates, autoFocus, switchToExisting 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.
Add option to hide future daily notes
Description
Added a setting to hide future daily notes, inspired by Logseq's behavior. In Logseq, future journal entries are automatically hidden until their date arrives, which helps users focus on current and past content. This PR brings the same functionality to the Daily Notes Editor plugin.
Changes
hideUnreachedDatessetting optionImplementation
Simple date comparison using moment.js to filter out future dates when the setting is enabled. The view automatically updates when the setting changes.



Note: This code was generated with the assistance of AI (Claude). As I'm not very familiar with TypeScript, I would appreciate thorough code review to ensure quality and security. Any suggestions for improvements are welcome.