Retry-After header parsing (seconds format)Full Changelog: https://github.com/uppinote20/obsidian-auto-note-importer/compare/0.5.3…0.5.4
Full Changelog: https://github.com/mnaoumov/obsidian-refresh-any-view/compare/3.5.18…3.5.19
Beta release 2.2.0-beta.2
Starting in 2.2.0, feed data is migrated from JSON storage to SQLite for better performance.
data.json.backup is written in the plugin folder during migrationrss-dashboard.sqlite stores bulk feed/article datausersettings.json stores plugin settingsIf something looks wrong after migration:
Fresh installs are not affected by this migration path.
Full Changelog: https://github.com/mnaoumov/obsidian-new-note-fixer/compare/2.0.4…2.0.5
Full Changelog: https://github.com/mnaoumov/obsidian-frontmatter-markdown-links/compare/2.6.30…2.6.31
Full Changelog: https://github.com/mnaoumov/obsidian-edit-link-alias/compare/1.0.3…1.0.4
Full Changelog: https://github.com/mnaoumov/obsidian-codescript-toolkit/compare/11.7.0…11.7.1
Full Changelog: https://github.com/mnaoumov/obsidian-advanced-debug-mode/compare/1.9.4…1.9.5
Full Changelog: https://github.com/mnaoumov/obsidian-backlink-cache/compare/2.12.0…2.12.1
Full Changelog: https://github.com/mnaoumov/obsidian-smart-rename/compare/2.2.0…2.2.1
Full Changelog: https://github.com/mnaoumov/obsidian-root-folder-context-menu/compare/1.4.34…1.4.35
Full Changelog: https://github.com/dy-sh/obsidian-consistent-attachments-and-links/compare/3.33.3…3.33.4
Full Changelog: https://github.com/mnaoumov/obsidian-better-markdown-links/compare/3.4.3…3.4.4
Full Changelog: https://github.com/mnaoumov/obsidian-backlink-full-path/compare/1.6.1…1.6.2
Full Changelog: https://github.com/mnaoumov/obsidian-external-rename-handler/compare/3.0.39…3.0.40
Full Changelog: https://github.com/mnaoumov/obsidian-insert-multiple-attachments/compare/1.3.6…1.3.7
Full Changelog: https://github.com/mnaoumov/obsidian-advanced-note-composer/compare/3.26.2…3.26.3
Closes #44
Full Changelog: https://github.com/mokkiebear/heatmap-tracker/compare/2.1.5…2.1.6
SettingGroup API introduced in Obsidian 1.11+SettingGroup API 重构设置页面Example of displaying the date with a dynamic block in an orgmode file:
#+BEGIN: getDate
#+END:
Rendered:
The function needs to be defined in the javascript definition file:
function getDate() {
return new Date().toISOString()
}
.base Templates Become Reusable QuickAdd Building BlocksQuickAdd now supports .base files as first-class Template choices, which
opens up a much bigger workflow than “new file type supported.”
You can now:
.base files directly from Template choices.base templates inside Capture formats to insert Base content into{{TEMPLATE:...}}This is especially useful when you want to keep a reusable Base definition in
Templates/ and stamp it into the current note on demand. For example, you can
keep a Related Notes.base template and use a Capture choice to insert that
Base block into an MOC, so the query resolves in the context of the note you
are currently editing.
Example:
## Related Notes
```base
{{TEMPLATE:Templates/MOC Related Notes.base}}
```
Important distinction:
.base files directly.base files as.base template content into MarkdownQuickAdd now supports two Canvas capture workflows:
.canvas fileSupported targets:
To use it, either enable Capture to active file while a Canvas card is
selected, or, with Capture to active file off, point Capture To at a
.canvas file and choose Target canvas node. Canvas supports Top,
Bottom, and After line write modes. Cursor-based modes are still not
valid there, and QuickAdd now tells you exactly why if the current setup is
unsupported.
When QuickAdd updates a configured Canvas text node, it now preserves
Obsidian’s tab-indented .canvas formatting, reducing noisy
whitespace-only diffs. (#1124, #1125)
QuickAdd now registers native Obsidian CLI handlers on supported Obsidian
versions, making shell scripts and automation workflows much cleaner.
New commands:
quickadd / quickadd:runquickadd:listquickadd:checkExamples:
obsidian vault=dev quickadd choice="Daily log"obsidian vault=dev quickadd:list type=Captureobsidian vault=dev quickadd:check choice="Daily log"Variables can be passed with value-<name>=..., extra key=value params, or
vars='{"project":"QuickAdd"}'. By default, CLI runs are non-interactive: if
required inputs are missing, QuickAdd returns structured JSON instead of
opening prompts. Multi choices are still interactive and cannot be run or
checked via CLI, but quickadd:list includes nested choices inside multis.
Requires Obsidian 1.12.2+. (#1129)
{{VALUE:...}} option lists now support |text: so you can decouple what
users see in the suggester from what QuickAdd actually inserts.
Example:
{{VALUE:🔼,⏫,🔽,⏬|text:3-Normal,2-High,4-Low,1-Urgent}}
This is useful when you want readable labels in the picker but prefer compact
symbols, codes, or machine-friendly values in the final note. If you also use
|custom, custom typed input is inserted as-is. Current limitation: commas and
pipes inside individual labels/items are not supported yet. (#1127)
Macros now include four new editor commands:
These make editor automation easier to compose, especially when combined with
paste, selection, and formatting steps. (#1113)
If you build AI-powered QuickAdd workflows, quickAddApi.ai now exposes recent
in-memory request logs with request IDs, prompts, model info, duration, usage,
and errors.
New helpers:
getRequestLogs(limit?)getLastRequestLog()getRequestLogById(id)clearRequestLogs()QuickAdd also reduces assistant progress-noise when assistant messages are
disabled. (#1110)
When Create in folder is off, Template choices no longer duplicate folder
prefixes if your File name format already contains a vault-relative path.
This fixes notes being created in the wrong place when the formatted name was
already fully qualified. (#1118)
Repeated captures into the end of a section now behave correctly even when the
file ends with blank lines or the capture format does not end with a newline.
This fixes both collapsed spacing and out-of-order insertions. (#1119, #1120)
When inline scanning is enabled, QuickAdd can now include Dataview-style inline
fields from specific fenced block types that you explicitly allow, for example
{{FIELD:Id|inline:true|inline-code-blocks:ad-note}}. Default behavior is
unchanged unless you opt in. (#1128)
Capture now preserves explicit supported extensions like .md and .canvas,
normalizes titles properly for non-Markdown targets, and gives a clear error if
you try to use .base as a direct capture destination. (#1122)
QuickAdd is now more reliable when reusing an already open tab for a file,
especially when equivalent paths differ slightly in shape or formatting.
(#1108)
This release adds experimental MCP (Model Context Protocol) server integration with HTTP transport and OAuth support, letting you connect external tools to your agent. The new agent skills system allows extensible AI capabilities following the agentskills.io spec. Your API key is now stored securely via Obsidian's SecretStorage (OS keychain). File attachments have been unified with smart classification for text, media, and binary files. The default chat model is now Flash for better compatibility with free API keys.
Minimum Obsidian version: 1.11.4
Full Changelog: https://github.com/allenhutchison/obsidian-gemini/compare/4.4.0…4.5.0
Sorry for the update. Update manifest.json manually.
⚡ Performance Optimizations
@ mentioning multiple files (#149).✍️ Refined Editing & Review Experience
\) during precise replacements (#158).<smtcmp_block> rendering to prevent occasional blockquote nesting failures.🧠 Skills & Agent Intelligence
YOLO/skills/**/SKILL.md). It features automatic ID fallback and stricter file identification to prevent accidental document loading (#162).@ Filtering: The @ reference menu now supports instant filtering for files, folders, and assistants as you type, with a cleaner layout and improved placeholder hints.⚡ 性能改进
@ 引用多个文件时点击发送后的界面卡顿现象 (#149)。✍️ 创作与审阅体验重构
\)的解析错误 (#158)。🧠 Skills 与 Agent 智能
YOLO/skills/**/SKILL.md)。增强了 ID 识别逻辑,仅加载含有效名称的技能,避免误读普通文档 (#162)。@ 筛选:优化了引用菜单,支持输入即刻筛选文件、文件夹或助手,并改进了下拉列表的布局与交互反馈。obsidian://notepix/<path> to v2 format after successful repo resolution only.· 包裹为行内代码·Long time no seen :)
In this update, I added things that, in my opinion, were most lacking.
In the top right corner, you can see the "Share" button.
You can select one of 3 options:
Go ahead and share your progress with friends! Here's mine:
Another long-awaited feature. Just double click on any of you're visited countries and yo will see the next pop-up:
Now you have the opportunity to attach specific notes to a specific country. After attaching, you can see related notes for this country in the tooltip:
Also, you can go to the statistics view and see them here as well (you can link notes here, too!):
In addition to the features described above, many UI bugs have been fixed, such as the lack of tooltips on MacOS. I also tried to update the UI for phones, as after the last update of Obsidian, it became impossible to use the plugin. The plugin is still mainly designed for PC users, but nevertheless, I am trying to provide minimal support for phones.
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| lucide-react (source) | dependencies | minor | ^0.576.0 -> ^0.577.0 |
lucide-icons/lucide (lucide-react)
v0.577.0: Version 0.577.0ellipse icon by @KISHORE-KUMAR-S in https://github.com/lucide-icons/lucide/pull/3749Full Changelog: https://github.com/lucide-icons/lucide/compare/0.576.0…0.577.0
📅 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.
This PR has been generated by Renovate Bot.
The previous release did not account for the Obsidian comment being offset/not at the start of the html/text on the clipboard. This change should handle that. There are also some other minor fixes and a wording update to clarify a little about how Re-Index Footnotes works.
Move Footnotes to Bottom Adding Blank Line in Files with No Footnotes by @pjkaufman in https://github.com/platers/obsidian-linter/pull/1482Re-Index Footnotes Description and Fix a Couple of Old Bold and Italic Word Formatting by @pjkaufman in https://github.com/platers/obsidian-linter/pull/1484Full Changelog: https://github.com/platers/obsidian-linter/compare/1.31.1…1.31.2
Full Changelog: https://github.com/Vinzent03/obsidian-git/compare/2.37.1…2.38.0
Full Changelog: https://github.com/FabianUntermoser/obsidian-neighbouring-files-plugin/compare/1.1.2…1.1.3
Thanks to @angelo-daumas and his #83
Full Changelog: https://github.com/Ssentiago/image-zoom-drag/compare/6.1.2…6.1.3
^h{highlight_id}).Full Changelog: https://github.com/Instapaper/obsidian-instapaper/compare/1.1.5…1.2.0
🎉 This is a stable release
Version: 2.0.1
Full Changelog: https://github.com/Raven-Pensieve/obsidian-ace-code-editor/compare/2.0.0…2.0.1
tag-version-prefix="v" in .npmrc causing incorrect version format in package.json (e.g. v2.8.1 instead of 2.8.1)Page preview functionality should now be restored.
A patch release with Gemini stability fixes, Miyo improvements, and mobile/UI polish.
🤖 Generated with Claude Code
Obsidan 1.11 and above use a SettingGroup for their plugin list filtering, which broke some of HH's advanced features (e.g. highlighting plugin hotkey conflicts, remembering your last search, opening the plugin catalog with a search when you hit Enter, etc.)
b2647b0 Thanks @msakowski! - Add Croatian language support (Hrvatski) with bible book names sourced from jw.org#195 78b53af Thanks @msakowski! - Fix trailing whitespace in template variables breaking Markdown formatting. The plugin now trims whitespace from {bibleRef}, {bibleRefLinked}, and {quote} variables before substitution, preventing issues with bold/italic formatting in custom quote templates.
#217 63c8809 Thanks @msakowski! - Cache enriched bible books in getBibleBooks to avoid creating new arrays on every call.
#215 09cdeb9 Thanks @msakowski! - Deep merge nested bibleQuote settings so new default properties are preserved for existing users on upgrade.
#212 84bf468 Thanks @msakowski! - Add defensive checks to parseBibleReferenceFromUrl to prevent crashes on malformed jwpub:// URLs.
#218 1cc57ec Thanks @msakowski! - Replace fragile regex-based HTML parsing in BibleTextFetcher with DOMParser for more resilient and maintainable Bible text extraction.
#200 d07b3fc Thanks @schoenwaldnils! - Add build step to test workflow
#205 9bd47e9 Thanks @msakowski! - Fix Bible reference detection for book names with accented characters (e.g., Génesis, Éxodo, Levítico) by using Unicode letter matching instead of ASCII-only character classes
#209 dcd6bec Thanks @msakowski! - Update minimatch to patch ReDoS vulnerability in matchOne()
#199 d81fccf Thanks @schoenwaldnils! - Add more logging for development
#214 f723a2f Thanks @msakowski! - Always pass through error and warn calls in the logger regardless of debug mode, so real errors are visible in production.
#216 e4a1b0c Thanks @msakowski! - Remove duplicate BibleReferenceSuggester instantiation in plugin onload.
#213 11a9eee Thanks @msakowski! - Remove unnecessary spoofed User-Agent headers from BibleTextFetcher. Obsidian's requestUrl runs in Electron without CORS restrictions.
#210 6175e94 Thanks @msakowski! - Rewrite README with clearer structure, supported languages table, and concise feature documentation
#211 288449e Thanks @msakowski! - Use DOMParser instead of innerHTML for HTML entity decoding in cleanHtmlText, improving safety of HTML-to-text conversion.
Full Changelog: https://github.com/IshizuEitaro/obsidian-wayback-archiver/compare/1.1.2…1.1.3
Full Changelog: https://github.com/adrianlyjak/obsidian-aloud-tts/compare/0.14.2…0.14.4
7th March, 2026: we have a problem with #813, so the manifest is not pointing to this version.
3rd March, 2026
Note: 0.25.49 has been skipped because of too verbose logging (credentials are logged in verbose level, but I realised that could lead to unexpected exposure on issue reporting). Please bump to 0.25.50 to get the fix if you are on 0.25.49. (No expected behaviour changes except the logging).
When replication is initiated manually via the command palette or ribbon, a dialogue box will open to address this. to make it clear that the user can fix the issue by themselves.ModuleRedFlag has been refactored to serviceFeatures/redFlag and also tested.ModuleInitializerFile has been refactored to lib/serviceFeatures/offlineScanner and also tested.Full Changelog: https://github.com/salockhart/obsidian-bbcode/compare/1.2.0…1.3.0
## [1.1.1] - 2026-03-03
Full Changelog: https://github.com/nitishkhurana/obsidian-move-files-plugin/compare/1.2.0…1.3.0
Update minimum version to 1.11.0 and remove backwards compatibility for SettingGroup.
Update minimum version to 1.11.0 and remove backwards compatibility for SettingGroup.
7dd4079: Add Python packaging (pyproject.toml, uv.lock) and Python tests.
tests/test_docstrings.py andtests/test_module_exports.py.64a2f23: Fix Option key for Scandinavian/German keyboards on macOS by adding macOptionKeyPassthrough setting. (GH#92 by @jsade)
25a8a10: Introduce a new global Font Family setting that acts as a fallback for
all terminal profiles. Per‑profile terminalOptions.fontFamily still
overrides this value. Changes propagate immediately to any open terminal
instances. (GH#102 by @ChornyiDev)
939b1bd: Add a new "Profile defaults" settings section and store global
terminalOptions that apply to every terminal instance unless a
profile overrides them. A modal is used for editing options, and real-time
updates propagate to open terminals. The previous single fontFamily setting
has been removed in favor of this more flexible system.
ab83e53: Refactor src/terminal/unix_pseudoterminal.py to replace ad-hoc selector callbacks
with small, well-documented context-manager handler classes and tighten type
annotations.
_SelectorHandler, _PipePty, _PipeStdin, and _ProcessCmdIO toee93ddb: Restore focus to previous non-terminal pane when unfocusing terminal.
When using the toggle focus hotkey or unfocus command, focus now returns to the last active non-terminal pane (e.g., your note) instead of just blurring the terminal. This improves the workflow when using the terminal in a side panel. (GH#85 by @Mendi23)
54f5990: Add a default profile setting and command to open a selected profile directly from the ribbon button or command palette. (GH#83 by @archedark)
c922f59: Fix profile name display in profile list
Updated profile-name-formats and profile-list.namer- in all translation files to use {{info.nameOrID}} for proper fallback to profile ID when name is empty. Improved format to "Type: Name" style for better readability. Resolves GH#63.
89eea3e: Added helper to apply shallow diffs to xterm options and wire live
updates when terminal options change. Includes tests.
2d95186: Emit ESC+CR when the user presses Shift+Enter in the terminal emulator. This
matches the behavior expected by Claude Code and other TUI applications and
prevents modified enters from being interpreted as plain CR. (GH#89 by @davidszp)
Publish 0.8.0 assets to match manifest/version index and fix community install failure.
This update brings a smoother, more visually consistent experience to Note Companion, along with a streamlined license validation process for the Organizer tab. Enjoy a more modern, accessible, and responsive interface throughout the plugin, making it easier and more pleasant to organize your notes and files.
b0c9411f5a22b2b7b12eed91bc897abfaf41580349169ceb467a54e19569c870 main.js
2abae54b6d99077c530d08cff95de4b515a79a5430899149bd06fd75ca2a84d6 styles.css
b97616d241bcbf52c61074576369abcf40dfc3092b48636dc70bd06e600028b0 manifest.json
Full Changelog: https://github.com/dvcrn/obsidian-filename-heading-sync/compare/1.10.3…1.11.0
Full Changelog: https://github.com/rnaidenov/obsidian-ai-nutrition-tracker-plugin/compare/2.0.0…2.0.1
Bugfix release - Fixing the issue where some users were unable to launch the token retrieval wizard.
Fit to parent width option has been abolished, and Fit to note width has been introduced. Set the value WIDTH to the page.Use replace all option has been introduced.Apply processor to MathJax has been added to Advanced Settings. When this is enabled, {CODE} will be replaced even in a processor where all MathJax engines are enabled.UI
Bump dependencies versions (vulnerability fixes).
Milestone roadmap : https://github.com/tu2-atmanand/Task-Board/milestones.
A big shout-out to the following contributors for helping me with testing the bugs, suggesting improvements and keeping the community active :
And thank you to all those who had reached out to me on other platforms for improvement of this plugin.❤
Full Changelog: https://github.com/tu2-atmanand/Task-Board/compare/1.9.6…1.9.7
60e8515: feat: show publish progress in a Notice instead of the status bar
Progress is now displayed via a self-updating Notice ("⌛ Publishing (X/N)…") that works on both desktop and mobile. The status bar 💐 icon is kept on desktop as a shortcut to open the publish panel. PublishStatusBar class has been removed.
Each note command now has its own sidebar side selector — choose left or right per command (defaults to right). The "Open new sidebar tab" command has been split into two:
Configured note commands now display as "Open [Title] in [left/right] sidebar" for clarity.
Auto-pin now correctly pins tabs opened via links within the sidebar. Previously, clicking a link in a sidebar note could replace the tab content instead of opening in a new tab. Now any file opened in either sidebar is automatically pinned when the setting is enabled.
Thanks to @nitero for reporting the auto-pin issue and submitting a fix, as well as suggesting left sidebar support.
const snippet = {trigger: "", replacement: "$$0$", options: "t", triggerKey: "Ctrl-m"}
where you use Ctrl-m to turn on math mode. Both the triggerKey and trigger will be checked and format needs to be in cm6 format. For more examples see https://github.com/artisticat1/obsidian-latex-suite/issues/439.
(there needs to be no other hotkey, plugin or vim keymap taking priority over latex suite).
\mathrm from text environments. (https://github.com/artisticat1/obsidian-latex-suite/pull/385)()/ becomes \frac{$0}{$1}$2 now (https://github.com/artisticat1/obsidian-latex-suite/pull/436).( snippet. const snippet = {trigger: "npp", replacement: "import numpy as np", options: "c", language: "python"}
{ nesting level (https://github.com/artisticat1/obsidian-latex-suite/pull/507)./a|b/) don't have to encapsulated with a group anymore (https://github.com/artisticat1/obsidian-latex-suite/pull/448).\frac| when \frac was at the beginning of the line (https://github.com/artisticat1/obsidian-latex-suite/pull/458).Snippetleaf (the overleaf port) will have the ones related to latex at a later time.
Full Changelog: https://github.com/rekby/obsidian-paste-transform/compare/0.2.1…1.0.1
Full Changelog: https://github.com/julzerinos/spellcheck-toggler-obsidian-plugin/compare/1.4.3…1.4.4
window.MindMapBuilderAPI. See MindMap Builder API documentation for more. Essentially, the API allows mindmaps to be created using the Obsidian CLI.try copy/pasting this into Excalidraw:
skill, junior, medior, senior
business_analysis, 2, 6, 9
business_writing, 3, 7, 9
stakeholder_mgmt, 1, 6, 10
skipScriptRestore(scriptName?: string): boolean function to the API. This allows scripts to queue a one-time skip marker so sidepanel persisted restoration will not re-run the script. Intended for startup race conditions where a script is started from the Command Palette/hotkey before the sidepanel has opened. If scriptName is omitted, the function uses ea.activeScript.obsidian://open URL instead of the new obsidian://simple-anki-sync deep link upon their first sync.Hello everyone, I have make some tutorial videos and you can take a look
- [ ] todo in nodeadd node in mobile style- [ ] todo这是今年第一次更新,提前祝大家元宵节快乐!
另外 微信群和 QQ 群已经加满,大家可以加入 QQ 频道
QQ 频道(推荐加入频道)
或者 QQ 群 3
What's in this release:
Full Changelog: https://github.com/NomarCub/obsidian-copy-url-in-preview/compare/1.12.0…1.12.1
• More fixes for recursive folder opening and for opening items in collapsed File Explorer folders.
• FIXED: Typewriter scrolling via the arrow keys was broken.
• FIXED: The “Disable all warnings” setting did not in fact disable all warnings.
• ADDED: New command: “Toggle navigate in place.”
• IMPROVED: Rearranged settings for clarity.
Fixed version in manifest file
Full Changelog: https://github.com/mfarr/obsidian-archive/compare/0.5.1…0.5.2
Full Changelog: https://github.com/Klojer/obsidian-emacs-text-editor/compare/0.8.0…0.8.1
Added support for highlighter names with spaces.
Fixed issues with the formatting of phone numbers.
✨ New Features:
🐛 Bug Fixed:
Full Changelog: https://github.com/dromse/obsidian-gamified-tasks/compare/1.10.1…1.11.0
Add setting to skip contact sync in case if contact has no name (or company name)
[!note]
New Features
- feat(block-editor): add CM6 inline block editor with side-by-side editing in Live Preview
- feat(block-editor): support drag-and-drop to reposition/dissolve blocks
- feat(block-editor): add context menu (submenu) with dissolve and delete block actions
- feat(block-editor): cross-group overlay positioning for multiple same-side blocks
- feat(draw-editor): add SVG drawing editor with pen, line, rect, ellipse, arrow, eraser, and text tools
- feat(draw-editor): add SVG serialization and auth gate for reading mode
- feat: support Templify share via Cloudflare
Improvements
- refactor: migrate settings to SettingGroup API
- feat: support inline editor with height listener
- feat: block sub-editor detection via CM6 StateField for editor-menu integration
Fixes
- fix(block-editor): skip hidden lines when computing padded ranges for overlapping BL/BR blocks
- fix(block-editor): padding left issue
- fix: cannot paste file in block editor
[!note]
新功能
- 新增(块编辑器):CM6 内联块编辑器,支持实时预览中的并排编辑
- 新增(块编辑器):支持拖拽重新定位/释放块
- 新增(块编辑器):右键菜单(子菜单)支持释放块和删除块操作
- 新增(块编辑器):跨组叠加定位,支持多个同侧块
- 新增(绘图编辑器):SVG 绘图编辑器,支持画笔、直线、矩形、椭圆、箭头、橡皮擦和文本工具
- 新增(绘图编辑器):SVG 序列化和阅读模式认证门控
- 新增:通过 Cloudflare 支持 Templify 分享
改进
- 重构:迁移设置到 SettingGroup API
- 新增:支持内联编辑器高度监听
- 新增:通过 CM6 StateField 检测块子编辑器,用于编辑器菜单集成
修复
- 修复(块编辑器):计算重叠 BL/BR 块的填充范围时跳过隐藏行
- 修复(块编辑器):左侧填充问题
- 修复:无法在块编辑器中粘贴文件
Full Changelog: https://github.com/dannns/obsidian-table-checkbox-renderer/compare/1.0.1…1.0.2
parseLinktext does not properly handle links with display text, e.g. [[file|display]].query.file.hasProperty() and query.file.property() by @claremacrae in https://github.com/obsidian-tasks-group/obsidian-tasks/pull/3776Full Changelog: https://github.com/obsidian-tasks-group/obsidian-tasks/compare/7.23.0…7.23.1
1.406.0 to 1.434.026.2.6 版本重点修复多项同步相关问题,并优化状态反馈与 Quartz 主题构建性能。
1. 这种格式命名文件夹时可能导致异常的问题同步进度条
Quartz 主题 1.1 发布
提示消息优化
状态栏样式优化
v26.2.6 focuses on fixing multiple sync-related issues, improving status feedback, and enhancing Quartz theme build performance.
1.Sync progress bar
Quartz Theme 1.1 released
Notification improvements
Status bar UI enhancements
#Release 1.3.6
New features: MediaType enum, centralized detectMediaType() with caching, and remote URL media detection via HTTP headers
Bug fixes:
#22 — keyboard navigation no longer hijacks arrow keys globally (file rename, sidebar, contentEditable)
#22 — slider properly deactivates when clicking outside
Local file rendering regression from the merged PR (resource path query string breaking regex detection)
Technical changes: consolidated type detection, async thumbnails, scoped keyboard handling
Full Changelog: https://github.com/lhansford/obsidian-checklist-reset/compare/1.4.1…1.4.2
Thank you to @AD4MANTIS for adding support for Mobile
Fix heading caching bug when switching files
Don't miss all the new features in v1.29. Obsidian 1.11 is required.
ntb.suggester() custom input classntb-is-custom-input is added to the custom suggestion in the list, when allowCustomInput is used..prompt.note-toolbar-ui[data-ntb-ui-type="suggester"]:has(.suggestion-item.is-selected.ntb-is-custom-input) .ntb-suggester-input-icon {
color: green;
}
Thank you @FelipeRearden for the idea!
Full Changelog: https://github.com/chrisgurney/obsidian-note-toolbar/compare/1.29.22…1.29.24
New ChatGPT export format not recognised
OpenAI recently changed their export structure — conversations are now split across multiple
numbered files (conversations-XXX.json) instead of a single file. The plugin didn't recognise
this new format and failed silently, with nothing imported and no error shown. This patch adds
support for the new format. Older exports are unaffected.
Memory safety for large archives
In previous versions, export archives are loaded entirely in memory. This could potentially lead
to RAM saturation and a crash in case of an archive bigger than available RAM. This patch
addresses this risk.
⚠️ The new format fix is based on community reports — not yet personally tested. Feedback
welcome in issue #45.
Full Changelog: https://github.com/cberane/obsidian-material-symbols/compare/0.1.0…1.0.0
getFullRealPath) unavailable on Windows with the public FileSystemAdapter.getBasePath() + path.join()C: was incorrectly encoded as C%3A, producing invalid URLspath-utils.ts) with no Obsidian dependencySee CHANGELOG.md for full details.
Full Changelog: https://github.com/nhaouari/obsidian-textgenerator-plugin/compare/0.7.52…0.8.1
Full Changelog: https://github.com/pranavmangal/obsidian-single-file-daily-notes/compare/1.4.0…1.4.1
Full Changelog: https://github.com/ckt1031/obsidian-tinypng-plugin/compare/0.3.0…0.4.0
Fixed: Plugin now loads on Obsidian mobile
The 0.5.1 release re-enabled mobile support but the plugin still failed to load on mobile devices because the task dispatch module imports Node.js-only modules (child_process, fs, path) that don't exist in the mobile runtime.
This release fixes that by:
import() for TaskDispatchService so Node.js modules are only loaded on desktopPlatform.isMobile so they don't appear in the command palette on mobiledetectTmuxPath in the settings tab to avoid pulling in Node.js at startupTask dispatch remains fully functional on desktop. On mobile, context gathering, note processing, and all AI-powered features work as expected — only the desktop-only task dispatch commands are hidden.
https://github.com/bitsofchris/openaugi-obsidian-plugin/compare/0.5.1…0.5.2
Added support for SFEN/BOD/CSA support. You can use
hoge
and so on.
added ability to use left and right shift separately