Replace spaces with hyphens in project and context tags when using Tasks
format to ensure proper tag parsing. Dataview format preserves original
spaces as intended.
Allow spaces within project tags (#project/...) and context tags (@context...)
when stripping trailing metadata during task updates. This prevents breaking
multi-word project and context values.
- Refactored metadata detection to only match recognized dataview keys
- Fixed content preservation when inserting start/cancelled dates
- Added strict trailing metadata pattern matching to avoid false positives
- Preserved user-defined fields like [projt::new] during metadata updates
- Added comprehensive tests for dataview and emoji format preservation
- Improved metadata detection to avoid matching content inside wiki links [[...]], markdown links [text](url), and inline code blocks
- Fixed issue where links in task content could be incorrectly treated as metadata markers
- Added comprehensive test to verify links and code blocks are preserved during metadata updates
- Ensures task content remains intact when only metadata is being modified
- Add visibility checks before task list rendering to avoid DOM errors
- Implement retry mechanism with timeout for deferred rendering
- Queue refresh requests instead of skipping when render in progress
- Fix cache ready event to properly trigger view refresh
- Prevent concurrent renders while allowing force refresh override
- Enhanced task parser to preserve trailing spaces for empty-content tasks
- Refactored WriteAPI for cleaner date insertion logic with proper formatting
- Improved status cycler to prevent conflicts with normal typing
- Fixed escaped hash tag handling to align with Obsidian behavior
- Optimized tag extraction with recursive unprotected hash detection
- Added CodeMirror state mock for better test coverage
- Improved quadrant card component structure and rendering
- Add project configuration support to Augmentor and WorkerOrchestrator
- Implement enhanced metadata inheritance with project configs
- Add TgProject support for config-based project definitions
- Improve project metadata resolution and caching
- Add CSS styles for project info popover display
- Refactor ConfigurableTaskParser for better project handling
- Add button to reset all settings to default values
- Include confirmation modal to prevent accidental resets
- Show success notification after settings reset
- Refresh settings display after reset
- Use Obsidian's createEl and createDiv methods for DOM creation
- Register events with this.registerDomEvent for proper cleanup
- Simplify teardown logic as events are auto-cleaned by Component
- Improve code consistency with Obsidian plugin conventions
- Add support for multiple due date emojis (📅, 🗓️, 📆) in regex patterns
- Fix recurrence regex to properly handle boundaries with bracket notation
- Optimize completion date updates to preserve existing metadata
- Use consistent task ID fallback pattern (file-line) when ID is missing
- Centralize completion status checking with isCompletedMark() method
- Handle multi-symbol completion statuses from settings configuration
- Ensure proper status updates when toggling task completion state
- Extend Component class for better lifecycle control
- Use registerEvent for automatic cleanup instead of manual event refs
- Replace initialize() with onload() following Obsidian patterns
- Wrap create event listener in onLayoutReady for proper initialization
- Simplify cleanup by leveraging Component's unload() method
- Fix recurring task creation logic to properly generate next occurrence
- Add completion metadata handling for recurring tasks
- Ensure completion date is added when marking tasks complete
- Fix status update logic to handle both boolean and string status values
- Integrate WriteAPI calls in completion monitor for better consistency
The recurring task functionality was broken due to missing logic that creates
the next occurrence when a recurring task is completed. This fix ensures that
completing a recurring task properly creates the next instance with the correct
date and preserves all metadata.
- Add resolveCurrentRange() to re-resolve date position dynamically
- Prevent replacing multi-line ranges for safety
- Add regex escaping for special characters in date markers
- Fix dataview regex to prevent matching across line breaks
- Handle edge cases when document is modified after widget creation
- Re-implemented automatic creation of new recurring tasks when completed
- Added calculateNextDueDate method supporting rrule and simple formats
- Ensured next occurrence is always in the future to handle edge cases
- Used UTC noon timestamps for consistent date storage across timezones
- Fixed issue where completing tomorrow's task today would create duplicate dates
Previously, clicking on task content would always prevent event bubbling,
blocking task selection even when the inline editor feature was disabled.
This fix ensures stopPropagation() is only called when:
- Opening task in file with Cmd/Ctrl+click
- Showing the inline editor (when enabled)
This allows clicks to properly bubble up for task selection when the
inline editor is disabled, restoring expected behavior.
- Replace setTimeout/clearTimeout with Obsidian's debounce function for better compatibility
- Reduce TaskIndexer log spam by sampling false filter results at 10% rate
- Improve memory management by using function references instead of timeout IDs
- Simplify flush and cleanup logic in ObsidianSource
Fixes project configuration not being applied from settings by:
- Restoring project options update in DataflowOrchestrator settings handler
- Passing full project config options when initializing ProjectConfigManager
- Ensuring detection methods and all config flags are properly propagated
- Add flexible status mark resolution that handles both configured names and raw marks
- Select moved task after drag-and-drop to update details panel
- Fix status update to prefer explicit status mark over completed boolean
- Improve handling of case-insensitive status names and single-character marks
- Show actual count value with unit for count habits instead of active/inactive
- Always render heatmap for count habits, with fill based on goal or any value
- Fix tooltip text for count habits to work at any size
- Add dataflow event emissions to prevent event loops during habit updates
- Only show progress bar when a goal (max) is configured
- Add ExtraButtonComponent with plus icon at bottom left of habit list
- Enable direct habit creation without navigating to settings
- Handle file deletion events to sync habit completions
- Fix boolean value handling for daily habit completions
- Add immediate UI refresh after habit state updates
When right-clicking on the Habit view in the sidebar and selecting
"Open settings", now opens the Habit settings tab directly rather
than showing the ViewConfigModal. This provides a more intuitive
and consistent experience for habit configuration.
- Change daily habit completion from numeric (0/1) to boolean (true/false) for simple habits
- Keep numeric value (1) only for habits with completionText to indicate match
- Update type definitions to support boolean | string | number | null
- Fix completion checking to use strict equality (=== true) instead of truthy values
Enable Cmd/Ctrl+click on task content to directly open and navigate to the task's location in its source file. This provides quick access to edit tasks in their original context while preserving inline editing as the default behavior.
- Add Keymap import for modifier key detection
- Implement openTaskInFile() method using eState for precise line navigation
- Update click handlers to check for modifier keys before showing inline editor
- Works in both list and tree view components
The quick capture window was continuously growing in height as users typed,
caused by the autoResizeTextarea function resizing both the textarea and
the window itself. Now only the textarea resizes within fixed window bounds.
- Create custom-changelog.mjs script to generate single consolidated changelog entry
- Disable conventional-changelog's built-in changelog generation (infile: false)
- Use custom script in after:bump hook to generate merged changelog
- Properly groups all commits from last stable version by category
- Filters out beta release commits automatically
- Supports breaking changes with detailed descriptions
- Move getLastStableTag() call outside of module exports
- Execute function only once and reuse the result
- Fix infinite loop issue during changelog generation