#

  • 001.
    Homepage
    Version
    4.4.0
    released 8 hours ago by
    mirnovov
    favorite
    share
    Changelog
    • Add two commands for Obsidian's new command-line interface:
      • homepage opens the homepage in Obsidian.
      • homepage:read prints the contents of the homepage file to stdout. If the homepage configuration doesn't map to a file (for instance, when a workspace is set as the homepage), or if the file is invalid, a message will be displayed instead.
    • Fix occasional issues with history not saving (part of #135)

    Note that although commands require Obsidian 1.12.0 or later, this version continues to work on Obsidian 1.11.x as well.

  • 002.
    Custom Slides
    Version
    1.1.6
    released 12 hours ago by
    David V. Kimball
    favorite
    share
    Changelog

    Removed AI-sounding language.

  • 003.
    Note UID Generator
    Version
    1.2.1
    released 15 hours ago by
    Valentin Pelletier
    favorite
    share
    Changelog
    No Changelog was added
  • 004.
    Dynbedded
    Version
    1.2.1
    released 17 hours ago by
    Marcus Breiden
    favorite
    share
    Changelog

    1.2.1 (2026-03-24)

    Bug Fixes

    • include manifest.json and styles.css in production build output (933e25a)
  • 005.
    Tasks Map
    Version
    0.19.4
    released 17 hours ago by
    NicoKNL
    favorite
    share
    Changelog

    fix(deps): update dependency i18next to v25.10.9

    This PR contains the following updates:

    Package Type Update Change
    i18next (source) dependencies patch 25.10.5 -> 25.10.9

    Release Notes


    i18next/i18next (i18next)

    v25.10.9

    Compare Source

    • feat(types): export SelectorParam<Ns, KPrefix> helper type — a stable, readable alternative to Parameters<TFunction<Ns>>[0] for typing selector function props 2414

    v25.10.8

    Compare Source

    • fix(types): reorder TFunctionSelector overloads so Parameters<TFunction> resolves to the general selector signature instead of the branded SelectorKey type 2412

    v25.10.7

    Compare Source

    v25.10.6

    Compare Source


    Configuration

    📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Enabled.

    Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

    🔕 Ignore: Close this PR and you won't be reminded about this update again.


    • If you want to rebase/retry this PR, check this box

    This PR has been generated by Renovate Bot.

  • 006.
    Custom Commands
    Version
    1.0.7
    released 18 hours ago by
    Staaaaaaaaaan
    favorite
    share
    Changelog

    What's Changed

    New Contributors

    Full Changelog: https://github.com/Staaaaaaaaaan/obsidian-custom-commands/compare/1.0.6…1.0.7

  • 007.
    Note Toolbar
    Version
    1.30.01
    released 18 hours ago by
    Chris Gurney
    favorite
    share
    Changelog

    New Features 🎉

    Hide Obsidian's top navigation (on phones)

    • Choose whether Obsidian's top navigation (view heading) is shown.
      • Actions cannot be individually hidden, but if there's enough demand for this I will consider adding this feature.
    • Settings for customizing navigation bars, including the ribbon button, has been moved to the Navigation bars section (only visible on phones).
    • Thanks @Xto-tT0 for the suggestion!

    Auto-hide style (on phones)

    When added to a toolbar, the auto-hide style transitions toolbars off screen when in the Top (fixed). (Toolbars in the Bottom position automatically auto-hide as part of the bottom navigation.)

    • Obsidian's Appearance → Full screen setting must be enabled.
    • This style does nothing when the toolbar is in the Below Properties position.
    • Not supported on tablets.
    • Use the no auto-hide style to disable auto-hide for Top toolbars, specifically on phones.
    • Note that the spacing used by Top-positioned toolbars does not disappear.

    Improvements 🚀

    • Item settings: Added a Move item to toolbar option.
    • Settings: Main settings that are not applicable to the current platform are no longer shown (e.g., phone settings not applicable to desktop are not shown on desktop, and vice-versa).
    • Context menu: Renamed the "Tab bar" position to "Top navigation".
    • Context menu: Removed Below Properties position for non-markdown files; re-ordered for phones.
    • Item settings: Added a link to the Note Toolbar API docs below the JavaScript script field.
    • Phones: The button style now uses floating nav styling by default.

    Fixes 🛠️

    Toolbars on phones

    • Top-positioned toolbars should now be properly positioned, for both floating and fixed appearance options.
    • Bottom-positioned toolbars are now properly positioned, for both floating and fixed appearance options. #522 Thanks @charliecm!
    • Non-markdown files: Top-positioned toolbars no longer creates extra spacing around content.
    • Floating buttons now animate in consistently with the Navbar.
    • The fade effect under Top (fixed) position toolbars should no longer cover the top of the note.

    Other fixes

    • Empty tab view (Launchpad): Item shadow was being clipped outside of Launchpad area (visible in light mode).
    • Phones: Tooltips were appearing on elements below tapped elements. (To fix this, all tooltips on phones are hidden.)
    • Phones: Callout card style: The left border of some cards was not being rendered on iOS.
    • Text toolbars with no visible items are no longer displayed. #525 Thanks @Moyf!
    • In Source mode, Below Properties is not shown in the context menu; this position setting now shows a disclaimer. #523 Thanks @mrcray92!

    API

    ntb.suggester() prefixes option

    • The prefixes option lets you provide prefixes that provide suggester results when typed.
      • In the example below: when # is typed, a list of tag suggestions will be shown; when [[ is typed, a list of files will be shown.
    • The values parameter is also now optional. If values are provided in this context, the allowCustomInput parameter is required so that prefixes can be triggered.
    • Using tab-completion, suggesters now return the corresponding key, if keys are provided.
    • Thanks @FelipeRearden for the suggestion!
    const values = ['cat', 'dog']; // or pass in `null` if you don't want any values
    const selected = await ntb.suggester(values, null, {
        allowCustomInput: true, // not required if values is `null`
        prefixes: {
            '#': () => Object.keys(this.ntb.app.metadataCache.getTags()),
            '[[': () => this.ntb.app.vault.getAllLoadedFiles().map(f => `[[${f.extension === 'md' ? f.basename : f.name}]]`)
        }
    });
    new Notice(selected);
    return selected;

    Other changes

    • Fixed: Dataview + JavaScript: Results should now be output to the editor if return is used in an executed script file.
    • Improved: Dataview: Script examples have been simplified to remove use of async wrappers; some scripts have been updated to handle errors better. Neko now only spawns one cat at most; running the script a second time removes it.
  • 008.
    Inline Admonitions
    Version
    1.8.0
    released 19 hours ago by
    Scott Tomaszewski
    favorite
    share
    Changelog

    1.7.0

    • Adds support for Regex Inline Admonitions
  • 009.
    Sync Vault CE
    Version
    1.12.2
    released 20 hours ago by
    Camus Qiu
    favorite
    share
    Changelog

    同步

    • 新增:VFS (虚拟文件系统) ,自动同步仅同步目录结构,按需打开文件。
    • 新增:1+N混合同步,云盘备份和实时协作结合,提升多设备体验。

    图像

    • 新增:放大、缩小、复原按钮。

    界面

    • 优化:实时同步控制看板实时展示协作成员的编辑状态,云盘同步状态等。
  • 010.
    Note Chain
    Version
    1.3.1
    released 20 hours ago by
    ZigHolding
    favorite
    share
    Changelog
    No Changelog was added
  • 011.
    Weread Plugin
    Version
    0.17.2
    released 20 hours ago by
    hank zhao
    favorite
    share
    Changelog

    🐛 Bug Fixes

    Fix Issue #412: Support books with special characters in titles

    Problem: Books with colons in titles (e.g., "GEO实战:AI时代的流量密码") failed to sync because colon is an illegal character in folder names on macOS and Windows.

    Solution: Applied sanitizeTitle() function to folder names in getSubFolderPath() method to remove special characters (colons, quotes, pipes, hashes) from folder paths.

    Changes:

    • src/fileManager.ts: Use sanitizeTitle() when creating folder names with book titles

    Files Changed:

    • manifest.json (version bump to 0.17.1)
    • package.json (version bump to 0.17.1)
    • src/fileManager.ts (bug fix)

    Merged PR: #414


    Full Changelog: https://github.com/zhaohongxuan/obsidian-weread-plugin/compare/v0.17.0…v0.17.1

  • 012.
    Learnie
    Version
    1.5.1
    released a day ago by
    tankh99
    favorite
    share
    Changelog
    • Added more models
    • Fixed incorrect model IDs listed
  • 013.
    Journal Review
    Version
    3.0.2
    released a day ago by
    Kageetai
    favorite
    share
    Changelog

    What's Changed

    Full Changelog: https://github.com/Kageetai/obsidian-plugin-journal-review/compare/3.0.0…3.0.2

  • 014.
    Disciples Journal
    Version
    0.12.0
    released a day ago by
    Scott Tomaszewski (Xentis)
    favorite
    share
    Changelog

    Adds cssclasses: hide-dj-passage-properties to passage notes to hide the noise

  • 015.
    CookLang Editor
    Version
    0.6.4
    released a day ago by
    death_au/cooklang
    favorite
    share
    Changelog
    No Changelog was added
  • 016.
    Vault LLM Assistant
    Version
    1.0.10
    released a day ago by
    Brians Tjipto
    favorite
    share
    Changelog

    New Features

    • Added support for Anthropic Claude models via direct API integration
    • Added visual option to include markdown images (Vault images) in requests to OpenAI, Gemini, and Claude vision-capable models

    Improvements

    • Updated predefined model list to include Claude 3 and Claude 3.5 series
  • 017.
    Open in Cursor
    Version
    1.0.11
    released a day ago by
    awaken233
    favorite
    share
  • 018.
    Note Companion AI
    Version
    3.6.14
    released a day ago by
    Benjamin Ashgan Shafii
    favorite
    share
    Changelog

    Extract & Organize: Effortless Note Creation

    This release introduces a powerful new feature: instantly extract selected text into a new note, complete with automatic linking. Plus, enjoy a more intuitive AI chat experience and improved accessibility throughout the plugin. Organizing your notes and ideas has never been easier!

    Technical Changes

    • Added a new command and context menu item: 'Extract selection to new note'. Select text in any note, run the command, and Note Companion will create a new note from your selection and replace it with a wikilink.
    • Integrated the extract-to-note feature into the AI chat interface, allowing users to trigger extraction via slash commands (/extract to new note).
    • Implemented a robust mechanism to track editor selections, even when the chat interface steals focus, ensuring reliable extraction from both live and frozen selections.
    • Added a dedicated tool handler for the extract-to-note action, providing clear feedback and error handling in the chat UI.
    • Significantly expanded and improved the plugin's CSS for better accessibility, visual clarity, and consistency across the sidebar and chat interface.
    • Enhanced the slash command system in the chat to support editor context and reliably remove trigger text after command execution.

    SHA-256 Checksums

    3847dbbd24d6df08c2eee35ad43c41ad61cea9a7ed6b6d4ddf6ac2ae612c8fb2 main.js
    2abae54b6d99077c530d08cff95de4b515a79a5430899149bd06fd75ca2a84d6 styles.css
    d038e36a8bfaa00b6e32f7c6c87ffee8bc11e6172956b9329ca5ad42fa8618dd manifest.json

  • 019.
    Quartz Syncer
    Version
    1.11.0
    released a day ago by
    Emile Bangma
    favorite
    share
    Changelog
    • Migrated compiler pipeline from regex-based transforms to AST-based transforms using remark-obsidian.
      • Obsidian comments (%% ... %%) are now stripped via AST instead of regex, correctly handling comments inside code blocks.
      • Vault path stripping for links and images is now handled via AST node visitors.
      • Wikilink pipe characters (|) inside table rows are automatically escaped for Quartz GFM compatibility.
      • Callout syntax (> [!INFO]) is preserved correctly through the AST round-trip.
    • Delegated rendering transforms to Quartz v5's build pipeline.
      • Wikilink resolution, transclusion expansion, SVG inlining, highlight syntax, and tag rendering are now handled by Quartz.
      • Compiler pipeline reduced from 8 steps to 4: frontmatter enrichment, integration pre-compilation, link targeting, and AST transform.
      • Compiler reduced from ~900 lines to ~500 lines.
    • Fixed image embeds blending with surrounding text when preceded by other content.
    • Removed transclusion and SVG embedding logic (now handled by Quartz v5).
    • Removed publish file cache system (cacheFilesMarkedForPublishing, clearPublishCache).
    • Simplified SyncerPageCompiler constructor (removed getFilesMarkedForPublishing parameter).
    • Removed dead settings: applyEmbeds (unused after Phase 3) and pathRewriteRules (never read by runtime code). Removed "Apply embeds" toggle from Quartz settings panel.
    • Simplified Excalidraw integration to pass-through (push files only, Quartz v5 handles rendering). Removed SVG conversion, SCSS styles, and ExcalidrawAutomate dependency.
    • Split Git connection status into separate read and write access checks. The settings panel now shows (read: ok/failed) and (write: ok/failed) independently, correctly identifying when a repository URL is valid but credentials lack push access.
    • Fixed canvas extractBlobLinks to only collect asset files (images, fonts, etc.) instead of all file nodes including markdown notes.

    What's Changed

    Full Changelog: https://github.com/saberzero1/quartz-syncer/compare/1.10.1…1.11.0

  • 020.
    KOI Sync
    Version
    1.1.3
    released 2 days ago by
    Luke Miller
    favorite
    share
    Changelog
    • added delay in knowledge handler to prevent potential network race conditions
  • 021.
    Open vault in VS Code
    Version
    1.4.2
    released 2 days ago by
    NomarCub
    favorite
    share
    Changelog

    What's Changed

    New Contributors

    Full Changelog: https://github.com/NomarCub/obsidian-open-vscode/compare/1.4.1…1.4.2

  • 022.
    Codeblock Customizer
    Version
    1.4.3
    released 2 days ago by
    mugiwara
    favorite
    share
    Changelog

    New:

    • Added customizable frontmatter syntax coloring in editing mode
  • 023.
    Datacore
    Version
    0.1.29
    released 2 days ago by
    Michael Brenan
    favorite
    share
    Changelog

    0.1.29

    New Contributors

    Full Changelog: https://github.com/blacksmithgu/datacore/compare/0.1.28…0.1.29

  • 024.
    Tldraw
    Version
    1.29.0
    released 2 days ago by
    Sam Alhaqab
    favorite
    share
    Changelog

    bump version

  • 025.
    Enhanced Canvas
    Version
    1.0.22
    released 2 days ago by
    RobertttBS
    favorite
    share
    Changelog
    No Changelog was added
  • 026.
    Ink Player
    Version
    1.2.1
    released 2 days ago by
    Uglyboy
    favorite
    share
    Changelog

    What's Changed

    Full Changelog: https://github.com/uglyboy-tl/obsidian-ink-player/compare/1.1.0…1.2.1

  • 027.
    OpenWords
    Version
    1.0.17
    released 2 days ago by
    insile
    favorite
    share
    Changelog
    No Changelog was added
  • 028.
    Day One Importer
    Version
    1.3.2
    released 2 days ago by
    Marc Donald
    favorite
    share
    Changelog

    What's Changed

    • Update funding links

    Full Changelog: https://github.com/MarcDonald/obsidian-day-one-importer/compare/1.3.1…1.3.2

  • 029.
    Startpage
    Version
    0.3.5
    released 2 days ago by
    kuzzh
    favorite
    share
    Changelog

    What's Changed

    Full Changelog: https://github.com/kuzzh/obsidian-startpage/compare/0.3.4…0.3.5

  • 030.
    Github Issues
    Version
    1.9.0
    released 2 days ago by
    LonoxX
    favorite
    share
    Changelog

    New Features

    • GitLab Support – Track GitLab Issues and Merge Requests directly in your vault
    • Sub-Issues for GitLab – Sub-issues are supported via the GitLab Work Items API
    • Self-hosted GitLab – Configure a custom URL for self-hosted GitLab instances
    • Multiple Providers – Use multiple GitLab accounts/instances simultaneously

    Full Changelog: https://github.com/LonoxX/obsidian-github-issues/compare/1.8.0…1.9.0

  • 031.
    Image Upload Toolkit
    Version
    1.6.0
    released 2 days ago by
    Addo Zhang
    favorite
    share
  • 032.
    Folder notes
    Version
    1.8.19
    released 3 days ago by
    Lost Paul
    favorite
    share
    Changelog
    • Option to hide folder note name in the path and only show the folder name when the folder note is currently open
    • Fix for #312
    • Fix for #306
    • Fix for #284
    • Fix for #304
  • 033.
    Shell Path Copy
    Version
    1.17.1
    released 3 days ago by
    Charles Kelsoe (ckelsoe)
    favorite
    share
    Changelog

    Fixed

    • Absolute path copy now works on Windows (#7) — replaced internal Obsidian API (getFullRealPath) unavailable on Windows with the public FileSystemAdapter.getBasePath() + path.join()
    • Windows file:// URLs no longer encode the drive letter colonC: was incorrectly encoded as C%3A, producing invalid URLs

    Removed

    • Dropped unreliable file-explorer DOM querying for command palette file detection — relied on internal Obsidian CSS class names that could silently break on Obsidian updates. Command palette commands now require an open file; a clear notice is shown if none is open.

    Technical

    • Extracted path-formatting logic into pure functions (path-utils.ts) with no Obsidian dependency
    • Added 37 unit tests covering all path-formatting functions
    • CI now runs the test suite on every push and pull request
    • CI now scans for known deprecated Obsidian API usage
    • Release workflow now runs tests before building — a failing test prevents a release from being created

    See CHANGELOG.md for full details.

  • 034.
    Notebook Navigator
    Version
    2.5.3
    released 3 days ago by
    Johan Sanneblad
    favorite
    share
    Changelog

    Improved

    • Calendar in the right pane now always shows 6 weeks.
    • Property pills in list pane now support custom URI schemes like "zotero://…" and "file://…".

    Fixed

    • Boolean and number properties are now shown as property pills in the list pane.
    • Metadata cleanup now removes stale property-key selections.
  • 036.
    Digital Garden
    Version
    2.74.0
    released 3 days ago by
    Ole Eskild Steensen
    favorite
    share
    Changelog

    What's Changed

    See supported featueres here: https://dg-docs.ole.dev/advanced/obsidian-bases/

    Also remember to update the template via the plugin settings for this to work

    Full Changelog: https://github.com/oleeskild/obsidian-digital-garden/compare/2.73.1…2.74.0

  • 037.
    Map View
    Version
    6.1.4
    released 3 days ago by
    esm
    favorite
    share
    Changelog
    No Changelog was added
  • 038.
    YOLO
    Version
    1.5.3
    released 3 days ago by
    Lapis0x0
    favorite
    share
    Changelog

    1.5.3 Multi-Window Mastery & Protocol Decoupling 🚀

    🪟 Multi-Window & Editor Context

    • 🌐 Native Multi-Window Support: You can now open multiple independent Chat instances in sidebars, new tabs, or separate windows.
    • 🎯 Precision Routing: Editor interactions—including text selections, file attachments, and "Continue" parameters—are now accurately routed to the specific target chat window.
    • ⚡ New Tab Entry: Added a shortcut to open a YOLO chat window directly from Obsidian’s blank "New Tab" page, with support for split-screen layout.
    • 📍 Floating UI Optimization:
      • Quick Ask pop-ups triggered by Cursor Chat now default to appearing below the selection to avoid obscuring the source text.
      • "Rewrite" mode is now clearly indicated in the Quick Ask header when active.

    ⚙️ Provider & Protocol Architecture

    • 🧩 API Protocol Decoupling: Formally separated Provider types from their underlying API protocols. You can now freely switch the API Type (OpenAI Compatible / OpenAI Responses / Gemini / Anthropic) for any provider.
    • 🔐 ChatGPT OAuth Support:
      • Integrated ChatGPT OAuth as a custom provider with support for a wider range of models.
      • Partially resolved the issue where Chain of Thought (CoT) summaries were unavailable via OAuth.
    • 🛡️ Safety & Cleanup:
      • Added a double-confirmation dialog when deleting a provider.
      • Removed deprecated "base model" logic to streamline the codebase.

    🔍 Search & AI Tools

    • 🌐 Built-in Web Search (OpenAI): Added a native GPT Tool type for Web Search. Both openai-responses and openai-compatible models can now enable official web search without manual parameter entry.
    • 🐞 Source Visibility Fix: Fixed a bug where search sources were invisible when using Web Search with certain GPT models.

    💄 UI/UX Refinements

    • 📏 Resizable Input: You can now manually adjust the chat input box height by dragging.
    • 🎨 Redesigned Model Settings: Overhauled the Model Settings section for a more logical and readable layout.
    • 🛠️ Window Styling:
      • Fixed a bug where the top bar style (narrow/wide) failed to toggle in independent windows.
      • Optimized conversation spacing and alignment for a cleaner look.

    1.5.3 多窗口联动与底层架构重构 🚀

    🪟 多窗口支持与编辑器联动

    • 🌐 原生多窗口 Chat:现在支持在侧栏、新标签页或独立窗口中同时打开多个 Chat 窗口,互不干扰。
    • 🎯 精准路由联动:重构了编辑器与对话框的通信逻辑。选区引用、文件添加、续写参数等操作现在可以准确地路由到目标 Chat 窗口。
    • ⚡ 新标签页入口:在 Obsidian 空白“新标签页”中新增了直接打开 YOLO 聊天的快捷入口,并支持右侧分屏打开。
    • 📍 悬浮窗体验优化
      • 优化了 Cursor Chat 触发的 Quick Ask 弹窗定位,默认显示在选区下方,避免遮挡原文。
      • 进入选区改写模式时,Quick Ask 状态位将明确显示为“改写”,消除歧义。

    ⚙️ 底层架构与 Provider 增强

    • 🧩 协议与 Provider 解耦:正式将 Provider 类型与底层 API 协议拆分。现在支持在 Provider 级别自由切换 API 类型(OpenAI Compatible / OpenAI Responses / Gemini / Anthropic)。
    • 🔐 ChatGPT OAuth 支持
      • 支持通过 ChatGPT OAuth 登录并作为自定义 Provider 使用。
      • 支持更多 OAuth 渠道模型,并部分修复了思维链(CoT)摘要获取不到的问题。
    • 🛡️ 安全与清理
      • 为删除 Provider 操作增加了二次确认机制,防止误删。
      • 移除了已过时的 base 模型相关冗余逻辑。

    🔍 搜索与 AI 工具

    • 🌐 内置联网搜索 (OpenAI):新增 GPT 工具类型并内置 Web Search 开关。OpenAI 官方及兼容协议模型无需手填参数即可直接启用联网搜索。
    • 🐞 引用来源修复:修复了 GPT 模型开启 Web Search 后 Source(来源)不可见的 Bug。

    💄 UI/UX 细节优化

    • 📏 输入框高度调整:支持通过拖拽直接调整输入框高度。
    • 🎨 设置面板优化:整体优化了“模型设置”分区的样式,内容呈现更加清晰、符合逻辑。
    • 🛠️ 独立窗口适配
      • 修复了独立窗口下宽/窄顶栏样式无法切换的 Bug。
      • 优化了对话间的间距与图表文字尺寸,视觉效果更统一。
  • 039.
    TODOseq
    Version
    0.12.1
    released 3 days ago by
    Stephen Cross
    favorite
    share
    Changelog
    • Fixed error when task line has no content causing task list to show no results for the affected page.
    • Fixed search filter from clicking task count in status bar not performing an exact file match.
  • 040.
    Obsidian markdown export
    Version
    1.0.39
    released 3 days ago by
    bingryan
    favorite
    share
    Changelog

    🐛 Bug Fix

    Authors: 1

  • 041.
    Tag Group Manager
    Version
    1.8.5
    released 3 days ago by
    Stargazer-cc
    favorite
    share
    Changelog

    🎉 三大核心功能全新上线

    🏷️ 多级标签适配 - 层级结构可视化

    全新多级标签树悬浮看板搭配更便捷的多级标签导入方式,让多级标签用户更方便完成迁移

    全新悬浮看板:

    • 智能显示策略
      • 设置页面:显示所有标签,可为所有标签设置颜色
      • 标签选择器/总览:所有多级标签单级末节点简化显示,并且隐藏自动展开的深层叶子节点,保持界面简洁
      • 悬浮看板:显示完整树形结构,支持访问所有节点

    更便捷的导入策略:

    • 灵活展开深度
      • 3级展开(默认):A/B/C/D → 组集=A,标签组=B,标签=C、C/D
      • 2级展开:A/B/C/D → 标签组=A,标签=B、B/C、B/C/D
    • 选择性展开:指定要展开的第一级标签,只处理需要的分类

    🔖 标签重命名 - 全库智能替换

    一键重命名标签,自动更新整个库中的所有引用,让标签管理更加灵活高效。

    核心特性:

    • 全面覆盖:自动更新YAML frontmatter、正文标签和Canvas文件中的所有标签引用
    • 层级智能:重命名父标签时,自动更新所有子标签(如 前端→frontend,则 前端/React→frontend/React)
    • 同步更新:自动更新插件内的标签组配置,保持数据一致性
    • 安全可靠:处理前检查标签是否存在,避免误操作

    🔄 标签自动添加 - 规则驱动管理

    根据自定义规则,自动将符合条件的标签添加到对应标签组,大幅提升标签整理效率。

    核心特性:

    • 规则配置:简单的 标签名:标签组名 格式,支持正则表达式,支持多条规则
    • 启动扫描:支持启动时自动扫描,无需手动操作

    ✨ 其他改进

    🎨 标签颜色支持增强

    • 正文标签颜色支持:标签颜色现在可以应用在正文的标签中
    • 整组修改颜色:现在可以快捷地整组调整颜色

    🎯 UI/UX优化

    • 多级标签图标:使用了更简约的图标代替之前的图标,增强了一致性
    • 更清晰的设置页面:调整了一些布局和显示顺序,更符合操作习惯
  • 042.
    Task List Kanban
    Version
    1.10.1
    released 3 days ago by
    Chris Kerr
    favorite
    share
    Changelog

    Bug Fixes

  • 043.
    Image Converter
    Version
    1.4.2
    released 4 days ago by
    xRyul
    favorite
    share
    Changelog

    New: option to restore pre-Obsidian 1.12-style image click behavior in Live Preview

    New Drag & scroll resize option: Disable Obsidian image selection on click

    From 1.12 default Obsidian behaviour makes you click on image and only then resize it. To show the link you have to click on image and then another on "Edit" button. That's a multi click process.
    Obsidian_y0l0QR1FCE

    What new option allows you to do is simply bring back the old behaviour: Click on image to show link. It hides edit-block icon from image. Removes image outline, and corner resizing.
    Obsidian_BoLHw3jdfW

    • Cursor placement. After clicking on image, it is possible to set where cursor is placed: at the front of the link or at the back. For that currently it reuses existing Cursor position after drop/paste setting.

    New: Skip folders in Process current note

    Added a new Skip folders option to Process current note, so you can exclude images in selected folders from conversion, compression, and resizing.

    Examples:

    • images, /images, or /images/ → skips that folder and everything inside it
    • images/* → skips only files directly inside that folder
    • images/** → skips that folder and all nested subfolders

    The new option supports plain folder paths, glob patterns, and regex matching. It also includes folder suggestions/autocomplete based on existing vault folders, it should make it easier to select valid paths and avoid typos.

    Other

    • Improved image annotation undo behaviour so arrow drawing creates a single undo step instead of multiple - https://github.com/xRyul/obsidian-image-converter/issues/168
    • Some new defaults when installing plugin from fresh:
      • Global preset Webp 75 will be the new default: this simply makes any new drop/pasted image to be converted into Webp format, and file naming will be set to {notename}-{timestamp}. The location where images are saved is not affected, your Obsidian defaults are still followed. It only affects fresh installs.
      • Captions are now disabled by default. Captions input field is no longer showing up inside Context menu when Caption is disabled.
      • "Lock the aspect ratio when dragging" is now ON by default.

    Full Changelog: https://github.com/xRyul/obsidian-image-converter/compare/1.4.1…1.4.2

  • 044.
    Simple Steam Auth
    Version
    1.0.9
    released 4 days ago by
    dreamscached
    favorite
    share
    Changelog
    • a9866f41d1067d5471d9a74441ebb5475b2b1eb6 Added German translation (@lucyb0207)
    • d7bbf5d2f32642d90a740acbed561d04bbddc9dd Added French translation (@lucyb0207)
  • 045.
    Live Background
    Version
    1.6.3
    released 4 days ago by
    Rememememe :3
    favorite
    share
    Changelog
    • Upgraded packages
  • 046.
    Pixel Pets
    Version
    1.5.0
    released 4 days ago by
    Lucas Jin
    favorite
    share
    Changelog

    Fixes:

    • Fixed problem with backwards names
    • Fixed problem with ball throwing getting stuck at top
    • Fixed problem with petting the pets (i.e. no flickering/switching effect)

    New features:

    • Can play with cats by changing mouse to a cat toy
    • Can change pets' playground from a modal to the entire obsidian vault (uses a transparent overlay; still allows full normal functionality)
  • 047.
    Pure Chat LLM
    Version
    2.0.3
    released 4 days ago by
    Justice Vellacott
    favorite
    share
    Changelog

    chore: update dependencies and modify constants

    • Updated @eslint/js from ^9.39.2 to ^9.30.1
    • Updated @typescript-eslint/parser from ^6.21.0 to ^8.56.1
    • Updated eslint from ^8.57.1 to ^9.30.1
    • Added 'think' property to alloptions in constants.ts
    • Commented out requestUrl call in LLMService.ts
  • 048.
    Quick Switcher++
    Version
    6.1.1
    released 4 days ago by
    darlal
    favorite
    share
    Changelog

    What's New

    • Minor bug fix for Standard mode showing null when restore previous input is enabled #234
  • 049.
    Current View
    Version
    1.5.0
    released 4 days ago by
    Lucas Ostmann
    favorite
    share
    Changelog

    1.5.0 (2026-03-21)

    Features

    • add tag rules for automatic view mode by tag (0ecae43), closes #38
  • 050.
    ABC Music Notation
    Version
    1.6.2
    released 4 days ago by
    Til Blechschmidt
    favorite
    share
  • 051.
    JupyMD
    Version
    1.5.1
    released 4 days ago by
    Deniz Terzioglu
    favorite
    share
    Changelog

    JupyMD 1.5.1

    Adds minor tweaks to settings page to abide by Obsidian's plugin guidelines and fixes an error on the code executor component not using the configured Python interpreter.

    Full Changelog: https://github.com/d-eniz/jupymd/compare/1.5.0…1.5.1

  • 052.
    BRAT
    Version
    2.0.4
    released 4 days ago by
    TfTHacker
    favorite
    share
    Changelog
    • ci: 🚸 implement betabuilds with sourcemap (dfa30e3815d86b548e4cca39fbef90cce2fbeedf)
    • fix: 🐛 normalize http response header keys (a62e6ea4aa8fc607ba9ad5e445eb6def95e41edd) (fixes #154)
    • ci: 🚑️ fix release-itactions (fcc12c13378afe0a4b7fd7f73e9e174c06c17651)
  • 053.
    Steward
    Version
    2.4.0
    released 4 days ago by
    Dang Nguyen
    favorite
    share
    Changelog

    Added

    • Revert multiple operations: Revert multiple operations from the latest user query.
    • SubAgent: New SubAgent system for spawning dedicated agents with specific capabilities.
    • SPAWN_SUBAGENT tool: Tool to spawn subagents for specialized tasks.
    • Conversation title in embed: Update embed title with generated conversation_title from frontmatter.

    Changed

    • Skills: Replaced use_skills tool with read_content—skills are now read on demand by path instead of being activated and persisted. Simpler flow with fewer moving parts.
    • Command input: Show current model and provider in the input for better visibility.
    • Guardrails: Refactored grep tool handling, moved existence checking to a separate tool (vaultExists).
    • History view: Enhanced history view with improved UI; don't show subagent notes in history.
    • VaultCreate: Can now create empty folders.
    • VaultList: Improved rendering and search behavior; block search if blocklist is set.
    • Dynamic handler: Handle no_stool_error more gracefully.
    • Edit review: Updated for generic use across different operations.
    • Help view: Now lists disabled rules and skills for better visibility.
    • Title agent: Added another channel to set conversation title via tool schemas.

    Fixed

    • Fixed conversation indicators using DOM events instead of file content to avoid mixing indicator and generating content.

    Full Changelog: https://github.com/googlicius/obsidian-steward/compare/2.3.0…2.4.0

  • 054.
    Data Fetcher
    Version
    1.1.4
    released 4 days ago by
    qf3l3k
    favorite
    share
    Changelog

    ## [1.1.4] - 2026-03-21

    Added

    • Cache browser entries now display alias-aware labels in the form - .
    • Cache browser filtering now matches alias, hash, type, and URL.

    Changed

    • Endpoint editor dialog now gives the URL field more horizontal space for long endpoints.
    • Cache browser list and preview panes now use more of the available dialog space.
    • New cache entries store lightweight query metadata so cache browser labels are easier to understand.
  • 055.
    Strapi Exporter AI
    Version
    3.0.248
    released 4 days ago by
    Cinquin Andy
    favorite
    share
    Changelog
    No Changelog was added
  • 056.
    HiWords
    Version
    0.5.7
    released 4 days ago by
    Kai
    favorite
    share
    Changelog

    新增单词释义 Tab 展示功能。

    现在你可以在单词文件中使用 --- 分隔不同内容块,并用 标题 作为每一段的名称。HiWords 会在侧边栏单词卡和悬停释义弹窗中,将这些内容自动渲染为可切换的 Tab。

    适合把一个单词整理成「释义 / 例句 / 笔记」等多分区内容,阅读和复习都更清晰。

    hiwords tab


    New word definition tab display feature.

    Now you can use --- to separate different content blocks in the word file, and use titles as the names of each section. HiWords will automatically render these contents as switchable tabs in the sidebar word card and hover definition pop-up.

    It is suitable to organize a word into multi-section content such as "definition / example sentences / notes", making reading and review clearer.

  • 057.
    Line Arrange
    Version
    1.7.0
    released 4 days ago by
    Chitwan Singh
    favorite
    share
    Changelog

    Fixed behaviour of ordered lists in Line and Block operations

    Ordered lists are now renumbered correctly after any sort, shuffle, or reverse operation. Previously, list items retained their original numbers after reordering, causing Obsidian to render the list starting from the wrong number. The plugin now detects when a selection is a complete ordered list and fixes the numbering automatically after reordering. The only case when this does not get handled automatically is when the text selection has other content apart from a valid numbered list.

    Blank line handling is also more consistent across the board

    • Block operations now ignore blank lines entirely rather than treating them as list items, which previously caused list detection to fail.
    • Line operations with "Preserve Blanks" off now discard blank lines cleanly instead of collecting them at the top of the output.
  • 058.
    Cliplet
    Version
    0.3.4
    released 4 days ago by
    namikaze-40p
    favorite
    share
    Changelog
    • Security Updates: Updated internal dependencies to resolve reported vulnerabilities.
  • 059.
    Command Tracker
    Version
    0.5.3
    released 4 days ago by
    namikaze-40p
    favorite
    share
    Changelog
    • Security Updates: Updated internal dependencies to resolve reported vulnerabilities.
  • 060.
    Bookmarks Caller
    Version
    0.6.5
    released 4 days ago by
    namikaze-40p
    favorite
    share
    Changelog

    Improvements

    • Native Highlighting: Added bold styling to matching text in the suggestion list for better visibility.
    • Security Updates: Updated internal dependencies to resolve reported vulnerabilities.
  • 061.
    Date Inserter
    Version
    0.6.8
    released 4 days ago by
    namikaze-40p
    favorite
    share
    Changelog
    • Security Updates: Updated internal dependencies to resolve reported vulnerabilities.
  • 062.
    Tab Selector
    Version
    0.9.0
    released 4 days ago by
    namikaze-40p
    favorite
    share
    Changelog

    Improvements

    • Smart Search Sorting: Exact string matches are now prioritized over scattered fuzzy matches for more intuitive results.
    • Native Highlighting: Added bold styling to matching text in the suggestion list for better visibility.
    • Security Updates: Updated internal dependencies to resolve reported vulnerabilities.
  • 063.
    Featured Image
    Version
    1.2.6
    released 5 days ago by
    Johan Sanneblad
    Changelog

    New

    • New setting: Run automatically while editing. Enable to update the featured image automatically when a note changes. Default: true.
    • New command: Update featured image in current file. Refresh the feature image in the active note from the command palette.
  • 064.
    Tick Tones
    Version
    1.6.5
    released 5 days ago by
    DontBlameMe
    favorite
    share
    Changelog

    What's Changed

    Full Changelog: https://github.com/DontBlameMe99/Tick-Tones/compare/1.6.4…1.6.5

  • 065.
    Hover Reveal
    Version
    1.0.11
    released 5 days ago by
    Shawn Yang
    favorite
    share
    Changelog
    No Changelog was added
  • 066.
    Quran Helper
    Version
    1.10.0
    released 5 days ago by
    Ammar Alakkad
    favorite
    share
    Changelog
    No Changelog was added
  • 067.
    PDF Printer
    Version
    1.1.3
    released 5 days ago by
    cubexy
    favorite
    share
    Changelog
  • 068.
    Inline Encrypter
    Version
    1.5.3
    released 5 days ago by
    Alexander Cheryomukhin
    favorite
    share
    Changelog

    Bump dependencies versions (vulnerability fixes).

  • 069.
    Easy Typing
    Version
    6.0.6
    released 5 days ago by
    yaozhuwa
    favorite
    share
    Changelog
    • V6.0.6 2026-03-20
      • 规则编辑与规则列表优化
      • 修复正则规则编辑显示时反斜杠被重复转义的问题
      • 修复内置规则描述显示异常,并调整编辑弹窗相关样式
      • 修复规则编辑面板中类型选择与触发模式按钮的颜色显示问题
      • 优化规则列表预览展示,信息层次更清晰
      • 设置面板与响应式适配
      • 优化设置面板间距与软空格说明文案
      • 删除自定义正则区块中的失效说明链接
      • 改进设置面板在窄宽度下的自适应布局,减少对固定断点样式的依赖
      • 优化移动端和小窗口场景下的设置项排版
      • Bug 修复
      • 修复删除空白行时误删引用与列表间空行的问题
      • 修复 IME 取消输入时误触发转换规则的问题
      • Rule Editor & Rule List Improvements
      • Fixed duplicated backslash escaping in regex rule editor display
      • Fixed built-in rule description display issues and adjusted related modal styling
      • Fixed color display issues for rule type and trigger mode buttons in the rule editor
      • Improved rule list preview display with clearer visual hierarchy
      • Settings UI & Responsive Layout
      • Improved settings panel spacing and soft-space helper copy
      • Removed the broken help link from the custom regex section
      • Improved adaptive behavior of the settings panel in narrow layouts, reducing reliance on fixed breakpoint styles
      • Optimized settings item layout for mobile and small-window scenarios
      • Bug Fixes
      • Fixed blank-line deletion incorrectly removing spacing between blockquotes and lists
      • Fixed conversion rules being triggered incorrectly when IME input was cancelled
  • 070.
    Metadata Auto Classifier
    Version
    1.12.3
    released 5 days ago by
    Beomsu Koh
    favorite
    share
    Changelog

    Release 1.12.3

    Summary

    • Automated release for 1.12.3.
  • 071.
    Messager
    Version
    1.1.8
    released 5 days ago by
    Rainyluo
    favorite
    share
    Changelog

    公号内容获取,改成生成新文件

  • 072.
    EasyLink
    Version
    1.2.1
    released 5 days ago by
    isitwho
    Changelog

    Bug Fixes

    • Fixed missing search results caused by punctuation not being stripped (e.g. "word." didn't match "word")
    • Fixed "Headers only" toggle overlapping the close (X) button
    • Fixed Cmd+Enter opening wrong note when "Headers only" mode was active

    Improvements

    • Duplicate result deduplication is now O(n) instead of O(n²)
  • 073.
    Copilot
    Version
    3.2.5
    released 6 days ago by
    Logan Yang
    favorite
    share
    Changelog

    Release v3.2.5

    A packed patch release with Composer V2 editing, Azure provider unification, drag-to-insert wikilinks, Obsidian Bases support, LM Studio Responses API, and a wave of agent, search, and UI improvements!

    • Composer V2: smarter file editing — The new editFile tool replaces replaceInFile as the primary targeted-edit tool, bringing more reliable and precise in-file edits. (@wenzhengjiang)
    • Drag relevant notes into your editor — Drag notes and sources from the Copilot chat panel directly into any editor to insert wikilinks instantly. (@logancyang)
    • Azure OpenAI and Azure Foundry unified — Both Azure providers are now merged into a single, cleaner Azure provider. (@logancyang)
    • Obsidian Bases support — base:create command, .base active note support, and a new read-only obsidianBases CLI tool. (@logancyang)
    • LM Studio: Responses API with KV cache reuse — Faster, more efficient conversations with local models. (@logancyang)
    • Gemini Embedding 2 preview support (@logancyang)
    • GitHub Copilot Chat supports tool calling (@Emt-lin)
    • Automatic file renaming to match topic titles (@somethingSTRANGE)
    • OpenRouter prompt caching via cache_control (@logancyang)
    • Miyo: customizable vault name, remote backend mobile re-indexing, license auth header (@wenzhengjiang)
    • CLI tool upgrades: daily/random read tools, reasoning summaries, enhanced instructions, daily note template fixes (@logancyang)
    • Agent & search fixes: inline citations, query dedup, answer source priority, expanded search limits (@logancyang)
    • UI & UX polish: Quick Ask panel positioning, LaTeX rendering, Ollama numCtx, "None" system prompt option (@Emt-lin, @logancyang)
    • Local model fixes: stripped leaked special tokens; vault.read in agent tool paths (@logancyang, @yu-zou)
    • YouTube transcript fix: both classic and modern DOM structures supported (@Emt-lin)
    • Tiktoken CDN timeout defense-in-depth fix (@logancyang)

    Generated by the release agent.

  • 074.
    Harper
    Version
    1.12.0
    released 6 days ago by
    Elijah Potter
    favorite
    share
    Changelog

    See the main release notes here.

  • 075.
    DaggerForge
    Version
    2.1.10
    released 6 days ago by
    Waleed Alnaimi
    favorite
    share
    Changelog
    • Added dice buttons inside cards, for quick dice rolling
  • 076.
    Note Status
    Version
    3.1.0
    released 6 days ago by
    Aleix Soler
    favorite
    share
  • 077.
    Ultimate Todoist Sync
    Version
    2.0.3
    released 6 days ago by
    HeroBlackInk
    favorite
    share
    Changelog
    No Changelog was added
  • 078.
    Pixel Perfect Image
    Version
    1.0.25
    released 6 days ago by
    Johan Sanneblad
    favorite
    share
    Changelog

    Fixed

    • Fixed duplicate context menus on images in Obsidian 1.12 and later.
    • Fixed local file actions opening the wrong image when multiple folders contain the same filename.
    • Fixed so that clicks in plugin windows no longer trigger Pixel Perfect Image actions.
  • 079.
    GitHub Stars
    Version
    1.4.0
    released 6 days ago by
    Flying Nobita
    favorite
    share
    Changelog

    Refine refresh behavior, add regression tests, and update project docs.

    Major changes:

    • refresh the current note from GitHub even when cache entries are still valid
    • update embedded star text without embedding plain links
    • update existing embedded stars on Reading View and Live Preview refresh paths when the setting is enabled
    • add refresh token warning controls and safer fallback behavior for failed refreshes
    • add unit tests covering cache bypass and embedded-star refresh regressions
  • 080.
    Granola Sync
    Version
    2.0.12
    released 6 days ago by
    Tom Elliot
    favorite
    share
    Changelog

    What's Changed

    Thanks @chrisweis, @kayacancode, @marlonvidal, @JacobHayes, @evanzi for issues and PRs

    Full Changelog: https://github.com/tomelliot/obsidian-granola-sync/compare/2.0.11…2.0.12

  • 081.
    Jump-to-Date
    Version
    1.0.23
    released 6 days ago by
    TfTHacker
    favorite
    share
    Changelog
    No Changelog was added
  • 082.
    HelpMate
    Version
    1.0.22
    released 6 days ago by
    TfTHacker
    favorite
    share
    Changelog
    No Changelog was added
  • 083.
    AI for Templater
    Version
    1.0.19
    released 6 days ago by
    TfTHacker
    favorite
    share
    Changelog
    No Changelog was added
  • 084.
    Excalidraw
    Version
    2.21.2
    released 6 days ago by
    Zsolt Viczian
    favorite
    share
    Changelog

    Fixed

    • The new ExcalidrawAutomate function ea.parseText() broke if the text was a transcluded image or PDF document, causing downstream paste issues in MindMap Builder.
    • Fix custom pen sloppiness not being saved to a template drawing #2715 🙏@sreedharsreeram
  • 085.
    Local REST API
    Version
    3.5.0
    released 6 days ago by
    Adam Coddington
    favorite
    share
    Changelog
    No Changelog was added
  • 086.
    Floating Search
    Version
    4.3.0
    released 6 days ago by
    Boninall
    Changelog

    feat(cmdk): add content search and preview scroll-to-position

  • 087.
    JW Library Linker
    Version
    0.12.1
    released 7 days ago by
    Martin Sakowski
    favorite
    share
    Changelog

    Patch Changes

  • 088.
    Periodic PARA
    Version
    1.23.7
    released 7 days ago by
    YiBing Lin
    favorite
    share
  • 089.
    Flowershow
    Version
    4.0.15
    released 7 days ago by
    Rufus Pollock
    favorite
    share
    Changelog

    Patch Changes

    • Remove info box about v4 from the plugin options page.
  • 090.
    Daily News Briefing
    Version
    1.11.5
    released 7 days ago by
    Adam Chen
    favorite
    share
    Changelog

    📋 Changelog

    v1.11.5

    • Fix daily news content cache. Now it only caches when news generation succeeds
    • Remove duplicate notification and add more failure info
    • Add schedule time
  • 091.
    Self-hosted LiveSync
    Version
    0.25.54
    released 7 days ago by
    vorotamoroz
    favorite
    share
    Changelog

    0.25.54

    18th March, 2026

    Fixed

    • Remote storage size check now works correctly again (#818).
    • Some buttons on the settings dialogue now respond correctly again (#827).

    Refactored

    • P2P replicator has been refactored to be a little more robust and easier to understand.
    • Delete items which are no longer used that might cause potential problems

    CLI

    • Fixed the corrupted display of the help message.
    • Remove some unnecessary code.

    WebApp

    • Fixed the issue where the detail level was not being applied in the log pane.
    • Pop-ups are now shown.
    • Add coverage for the test.
    • Pop-ups are now shown in the web app as well.
  • 092.
    File Ignore
    Version
    1.1.1
    released 7 days ago by
    Feng
    favorite
    share
    Changelog

    Bugfix and security release.

    • prevent Show/Restore from renaming originally dot-prefixed files unless they were hidden by the plugin
    • apply the same protection to single-file restore and batch planning
    • update minimatch to 5.1.8 and esbuild to 0.27.4

    Verification:

    • npm run build
    • npm audit --json (0 vulnerabilities)
  • 093.
    Google Calendar and Contacts Lookup
    Version
    1.8.1
    released 7 days ago by
    ntawileh
    favorite
    share
  • 094.
    Markitdown File Converter
    Version
    v2.1.0
    released 7 days ago by
    Ethan Troy
    favorite
    share
    Changelog

    Ground-up rewrite addressing security, architecture, and feature gaps.

    Security

    • Eliminated shell injection vulnerabilities — replaced exec() with spawn() using argument arrays and shell: false
    • Bundled Python wrapper scripts use argparse with no string interpolation of user input
    • Path traversal prevention in output folder, image directory, and image format handling
    • Prototype pollution protection in plugin arguments
    • Error messages sanitized to strip absolute paths before display

    Added

    • Image extraction from PDFs and EPUBs — base64 data URIs decoded to {filename}-images/ subfolder
    • Plugin arguments editor — key-value pair UI in settings for third-party Markitdown plugins
    • Context menu — right-click "Convert to Markdown" on supported file types in the file explorer
    • Setup wizard — guided modal for Python detection and Markitdown installation
    • Batch progress bar — visual progress indicator for folder conversions
    • Python path fallback — automatic python3 detection on macOS/Linux when python is unavailable
    • Live settings refresh — changing Python path immediately re-checks dependencies

    Changed

    • Decomposed monolithic main.ts (735 lines) into 12 focused modules under src/ and python/
    • Unicode support via PYTHONUTF8=1 environment variable
    • Async file I/O in modals (replaced writeFileSync/unlinkSync with fs.promises)
    • Updated build target to ES2020, TypeScript 5.x strict mode
    • Minimum Obsidian version remains 0.15.0

    Removed

    • Docling converter (deferred to a separate plugin)
    • child_process.exec() — zero imports remaining in codebase

    Manual Install

    Copy main.js, styles.css, manifest.json, and the python/ directory to your vault at .obsidian/plugins/markitdown/.

  • 095.
    Slides Extended
    Version
    2.3.3
    released 8 days ago by
    Erin Schnabel (original: MSzturc)
    favorite
    share
    Changelog

    2.3.3

    17 March 2026

    Fixes:

    • ✨ Additional scripts; 🐛 export css/js #97

    Commits:

    • ♻️ Change "theme dir" to assets dir (css, js, html) c80b3d8
    • 📝 Update docs w/ new settings f7ffb08
    • Bump immutable in the npm_and_yarn group across 1 directory 874e559
    • 🐛 spelling 12033ac
  • 096.
    Day Planner (OG)
    Version
    0.7.3
    released 8 days ago by
    James Lynch (continued by Erin Schnabel)
    favorite
    share
    Changelog

    0.7.3

    17 March 2026

    Commits:

    • 🎨 Improved handling of mode changes 5a00212
    • 🔊 log current plan when plugin enabled 5b42a5a
  • 097.
    GridExplorer
    Version
    3.1.9
    released 8 days ago by
    Devon22
    favorite
    share
    Changelog
    • Fixed: Chinese input method gets unexpectedly cut off when typing search tags. #79
  • 098.
    Time Bullet
    Version
    1.2.0
    released 8 days ago by
    pedrogdn
    favorite
    share
    Changelog

    What's Changed

    New Contributors

    Full Changelog: https://github.com/pedrogdn/obsidian-time-bullet-plugin/compare/1.1.0…1.2.0

  • 099.
    Bible Reference
    Version
    26.03.17
    released 9 days ago by
    tim-hub
    favorite
    share
    Changelog

    What's Changed

    Full Changelog: https://github.com/tim-hub/obsidian-bible-reference/compare/26.02.01…26.03.17

  • 100.
    NoteMover shortcut
    Version
    0.7.1
    released 9 days ago by
    Lars Bücker
    favorite
    share
    Changelog

    What's Changed

    Features

    • Template-based destinations: Destinations can now include tag and property placeholders such as {{tag.tasks/personal}} and {{property.status}} to dynamically build target folders from note metadata.
    • Template suggestions in destination inputs: Destination inputs use an enhanced suggester that offers completions for {{tag.*}} and {{property.*}} placeholders based on tags and properties discovered in your vault.

    Improvements

    • Rule editor UX: Updated desktop and mobile rule editor destination inputs, descriptions, and placeholders to highlight template support and provide clearer examples.
    • Changelog rendering: The in-app update modal now renders changelog list entries as Markdown, so formatting and links from the changelog are displayed correctly.

    Full Changelog: https://github.com/bueckerlars/obsidian-note-mover-shortcut/compare/0.7.0…0.7.1

  • 101.
    Auto Keyword Linker
    Version
    3.2.0
    released 9 days ago by
    Daniel Rhodes
    favorite
    share
    Changelog

    ✨ Features

    • No new features

    🐛 Bug Fixes

    • No bug fixes

    📝 Documentation

    • No documentation changes

    🔧 Other Changes

    • No other changes
  • 102.
    Pandoc Extended Markdown
    Version
    1.5.0
    released 9 days ago by
    ErrorTzy
    favorite
    share
    Changelog

    Syntax feature toggles.

  • 103.
    Workout Planner
    Version
    1.3.5
    released 9 days ago by
    Rares Spatariu
    favorite
    share
  • 104.
    Open Editors
    Version
    0.2.1
    released 9 days ago by
    4Source
    favorite
    share
  • 106.
    Better Link Clicker
    Version
    1.3.2
    released 9 days ago by
    Eniverz
    Changelog
    No Changelog was added
  • 107.
    MathLive in Editor Mode
    Version
    0.4.0
    released 9 days ago by
    MizarZh
    favorite
    share
    Changelog

    Features:

    • "Arrow key navigation between MathLive and editor" setting. This allows the cursor moving inward/outward between the editor and MathLive equations.
    • MathLive inline equations now have a maximum length.

    Bugfix:

    • "Hide original equation" setting now does not hide the equations in callouts.
    • collapse buttons now present in all tabs of virtual keyboard
    • fix strange behaviour at the end of the document
  • 108.
    Bookshelf
    Version
    0.19.1
    released 9 days ago by
    Philip Weinke
    favorite
    share
    Changelog

    Fixed

    • Fixed broken chart view (#47)
  • 109.
    UseSemaLogic
    Version
    2.3.1
    released 9 days ago by
    SemaLogic UG
    favorite
    share
    Changelog

    New knowledgegraph version 0.2

    • new beta functionality "Edit SL" in Knowledge graph
    • new beta functionality "Interprete SL" with AI and edit in Knowledgegraph
  • 110.
    Markmind
    Version
    3.4.6
    released 9 days ago by
    Mark
    favorite
    share
    Changelog

    important

    Hello everyone, I have make some tutorial videos and you can take a look

    Youtube Vedio

    v3.4.6

    1. fix add node when open mobile style in setting tab

    2. fix move node setboard bug in html rendered mode

    3. fix presentation mode bug when have summary

      How to use presentation mode of markmind

    demonstration mode

    Buy a active code


    v3.4.6

    1. 修复开启手机样式,添加兄弟节点的问题
    2. 修复拖动导图的问题,现在会自动隐藏节点设置框
    3. 修复演示模式问题,尤其是存在归纳的情况

    演示模式使用如下:

    ctrl p , 进入演示模式
    ctrl p , 一键计算演示范围
    ctrl p , 退出演示模式


    演示模式

    购买激活码


    另外 微信群和 QQ 群已经加满,大家可以加入 QQ 频道

    QQ 频道(推荐加入频道)

    或者 QQ 群 3


    4

  • 111.
    Fix Math
    Version
    1.0.18
    released 9 days ago by
    Vladislav Sorokin
    favorite
    share
    Changelog

    Fix: preserve nested brackets inside converted block math (1.0.18)

    When a multiline block like:

    [
    \mathbf{X} = [\mathbf{1}\ \mathbf{S}]
    ]

    was converted, the inner [\mathbf{1}\ \mathbf{S}] was mistakenly converted to a separate display math block, breaking the formula. Now the outer block becomes a single dollar-dollar block and inner brackets are left intact.

  • 112.
    Daily Note Navbar
    Version
    0.2.1
    released 10 days ago by
    Karsten Finderup Pedersen
    favorite
    share
  • 113.
    Smart Templates
    Version
    2.0.0
    released 10 days ago by
    🌴 Brian Petro
    favorite
    share
    Changelog

    Smart Templates v2.0.0 Release Notes

    Smart Templates v2 is the new shared core for context-first templating in Obsidian.

    Highlights

    • New context-first request flow
      • Open Smart Templates from the command palette or ribbon icon.
      • Current note is used as the starting context.
      • Editor selection overrides the active note when text is highlighted.
    • Shared Template Context modal
      • Build or refine context on the left.
      • Select one or more templates on the right.
      • Add optional instructions and copy a ready-to-run prompt.
    • Works with your existing templates
      • Configured template folders
      • Obsidian Templates folder fallback
      • Frontmatter flag: smart template: true
      • Configured filename via template_name
      • Matching block headings via template_headings
    • Built-in defaults remain available even when no vault template matches
      • Add tags
      • Create summary
      • Research paper
      • Diagram
      • Mermaid diagram
    • Multi-template merge
      • Templates are merged in stable selection order.
    • Shared prompt assembly
      • template.actions.template_build_prompt(...)
      • build_prompt_text(...)
    • Template reload listeners
      • Reloads when matching sources are created, renamed, modified, or deleted.
    • Settings + release notes wiring now match the Smart Plugin standard flow.

    Core scope

    Core stays clipboard-first.

    • Build prompts from template + context
    • Copy prompts to the clipboard
    • Use any external AI chat without API setup

    Pro scope

    Pro extends the shared modal with in-Obsidian generation.

    • Generate directly from the same request panel
    • Review output in TemplateOutputModal
    • Copy, insert, or create a note from generated output
    • Choose a Smart Templates generate model in Pro settings
  • 114.
    Syncthing Integration
    Version
    2.4.0
    released 10 days ago by
    LBF38
    favorite
    share
    Changelog

    2.4.0 (2026-03-15)

    Bug Fixes

    • project: :adhesive_bandage: small issue fixes (c399c1e)
    • ui: update modal when no conflicts found (#280) (2bb8d62)

    Features

  • 115.
    Task Collector (TC)
    Version
    1.1.14
    released 10 days ago by
    ebullient
    favorite
    share
    Changelog

    1.1.12

    20 February 2026

    Commits:

  • 116.
    Large Language Models
    Version
    0.23.0
    released 10 days ago by
    eharris128, r-mahoney, & jsmorabito
    favorite
    share
    Changelog

    What's New

    Features

    • Updated ninja cat icon — Fresh new ninja cat design

    Model & Provider Updates

    • Claude 4.5/4.6 models — Added Claude Sonnet 4.6, Opus 4.6, and Haiku 4.5
    • Updated provider docs — Refreshed provider support info for Ollama, Mistral, and new models

    Bug Fixes

    • Ollama model registration — Models now register globally after refresh, with request timeout support
    • Settings persistence — Deep-merge view settings so contextSettings persists across sessions
    • Header bar redesign — Implemented header bar design changes from #167

    Maintenance

    • Removed deprecated features — Removed OpenAI Assistants feature
    • Removed deprecated models — Removed Gemini 1.5 Flash, Gemini 2.0 Flash exp/thinking, and Claude 3.5 Sonnet June
    • Pinned agent SDK — Pinned @anthropic-ai/claude-agent-sdk to 0.2.73
    • Security — npm audit fix
    • Cleanup — Removed unused DRY refactoring snapshot files