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

推荐订阅源

V
Visual Studio Blog
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
D
Docker
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 聂微东
MyScale Blog
MyScale Blog
H
Help Net Security
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
M
MIT News - Artificial intelligence
大猫的无限游戏
大猫的无限游戏
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
P
Proofpoint News Feed
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
Microsoft Security Blog
Microsoft Security Blog
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏

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.10.2 Desktop (Early access)
2020-12-21 · via Obsidian Changelog
Shiny new things You can now embed search queries in the page using the fenced code block syntax with query as the language, similar to how mermaid works. Note that this syntax does not work in Obsidian Publish. Obsidian Publish now has a "Show search bar" option, which will add a search bar inside the navigation pane. This can be used to search for pages and headings. Improvements A layout independent mode has been introduced for hotkeys, which should work consistently across different keyboard layouts. This mode uses the virtual key code that's assigned to each physical key instead of the resulting character that's inputted when the combination is pressed. Drag and drop links will no longer create a Markdown link if the link title is identical to the URL. Improved behavior of Ctrl/Cmd+Click and Alt+Enter for links in the editor. Holding Shift while dropping text will drop it in plaintext mode, similar to Ctrl/Cmd+Shift+V to paste in plaintext mode. No longer broken Closing the vault or quitting the app within 2 seconds of editing a file will no longer lose the modifications done within that last 2 seconds. The bug where file explorer gains unusual whitespace has been caught and squashed. Fixed window size and developer tools were not properly saved when quitting app. Toggling highlight will no longer remove bold ** signs. Developers Exposed WorkspaceItem.getRoot() which returns one of Workspace.leftSplit , Workspace.rightSplit , or Workspace.rootSplit . This can be used to distinguish whether a WorkspaceLeaf is in the center area or the sidebars. A new event has been added to Workspace.on('quit', callback: (tasks: Tasks) => any) . This takes a callback with a Tasks object. You can perform any cleanup tasks in here. For any async/promise-based cleanups, such as saving files, add your task to the execution queue using Tasks.add(async () => { ... }) or Tasks.addPromise(promise) so that the app waits until your task is finished before quitting. The rendering lifecycle has been tweaked to allow plugins to add sub-components in the renderer post process step. Look for MarkdownPostProcessorContext.addChild for more details.