惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
爱范儿
爱范儿
博客园 - 三生石上(FineUI控件)
Vercel News
Vercel News
M
MIT News - Artificial intelligence
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Microsoft Azure Blog
Microsoft Azure Blog
J
Java Code Geeks
Recent Announcements
Recent Announcements
Stack Overflow Blog
Stack Overflow Blog
人人都是产品经理
人人都是产品经理
IT之家
IT之家
F
Fortinet All Blogs
博客园 - 聂微东
U
Unit 42
Martin Fowler
Martin Fowler
腾讯CDC
博客园_首页
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
量子位
阮一峰的网络日志
阮一峰的网络日志
博客园 - Franky

Obsidian Changelog

Obsidian 1.13.0 Mobile (Early access) Obsidian 1.13.0 Desktop (Early access) Obsidian 1.12.7 Mobile (Public) Obsidian 1.12.7 Desktop (Public) Obsidian 1.12.6 Mobile (Early access) Obsidian 1.12.6 Desktop (Early access) Obsidian 1.12.5 Mobile (Early access) Obsidian 1.12.5 Desktop (Early access) Obsidian 2026.02.27 (Public) Obsidian 1.12 Mobile (Public) Obsidian 1.12 Desktop (Public) Obsidian 1.12.4 Mobile (Early access) Obsidian 1.12.4 Desktop (Early access) Obsidian 1.12.3 Mobile (Early access) Obsidian 1.12.3 Desktop (Early access) Obsidian 1.12.2 Mobile (Early access) Obsidian 1.12.2 Desktop (Early access) Obsidian 1.12.1 Mobile (Early access) Obsidian 1.12.0 Mobile (Early access) Obsidian 1.12.1 Desktop (Early access) Obsidian 1.12.0 Desktop (Early access) Obsidian 1.11.7 Mobile (Public) Obsidian 1.11.7 Desktop (Public) Obsidian 1.11.7 Mobile (Early access) Obsidian 1.11.7 Desktop (Early access) Obsidian 1.11.6 Mobile (Early access) Obsidian 1.11.6 Desktop (Early access) Obsidian 1.11.5 Mobile (Public) Obsidian 1.11.5 Desktop (Public) Obsidian 1.11.5 Mobile (Early access)
Obsidian 0.11.0 Desktop (Public)
2021-02-09 · via Obsidian Changelog
Shiny new things You can divide nodes in graph view into groups based on queries, and customize the color of each group. Color all the nodes! Folding is now persisted for edit mode and preview mode. You can now create a new note with an optional content using the Obsidian URI. More details. There is now an official Hook integration using the Obsidian URI. You are now allowed to use more special characters on MacOS and Linux, such as ? and * . Keep in mind that if you synchronize your files with a Windows machine, those will not work. When right clicking a link, there is now an option to rename the target file. You can now hover search results, backlinks, and unlinked mentions to preview the match using the page preview plugin. There's now an option to automatically open your daily note whenever you open your vault. Improvements Folding is now persisted for folders in file explorer. Folding is now persisted for graph control sections. Folding is now persisted for nested tags. You can now use file:/// absolute paths to embed images and iframes from your local machine. You can now hold Alt to drop a file anywhere on a pane to open it there, rather than having to drop it in the header. Graph filters will now automatically apply after you finish typing. Block references to list items now scrolls and highlights the exact list item, instead of the whole list. Clicking on link to notes that don't yet exist will now open the newly created note in edit mode. No longer broken Playing a video in a hover preview no longer causes the video to continue playing after the preview is closed. Preview panes will now attempt to keep your scroll location when you resize or split the pane. Clicking on a search result now scrolls all linked panes to the result location. Word count now properly counts Tamil letters. Developers There is now an API available to handle URI actions using the obsidian:// protocol. Look for the function Plugin.registerObsidianProtocolHandler(action, handler) . You can now use App.fileManager to rename files and update links. You can now use Workspace.onLayoutReady(callback) to have a callback run if and when the app's layout is ready. This replaces the previous pattern if (workspace.layoutReady) { callback(); } else { workspace.on('layout-ready', callback); }