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

推荐订阅源

V
V2EX
C
Check Point Blog
博客园_首页
B
Blog
D
Docker
U
Unit 42
量子位
I
InfoQ
有赞技术团队
有赞技术团队
Martin Fowler
Martin Fowler
GbyAI
GbyAI
L
LangChain Blog
云风的 BLOG
云风的 BLOG
博客园 - Franky
美团技术团队
T
The Blog of Author Tim Ferriss
阮一峰的网络日志
阮一峰的网络日志
月光博客
月光博客
Vercel News
Vercel News
Recent Announcements
Recent Announcements
雷峰网
雷峰网
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
Google DeepMind News
Google DeepMind News

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 1.9.2 Desktop (Early access)
2025-06-05 · via Obsidian Changelog
Breaking changes This release has major breaking changes to Bases. We have updated the Bases formula syntax and the file format to make formulas and filters more expressive and powerful. If you use Obsidian on multiple devices, we recommend upgrading all devices at the same time to avoid issues syncing base files with different syntax. The new formula syntax The new formula syntax is more flexible, easier to use, and better suited to extensibility. For those familiar with Javascript, the new syntax should feel familiar. New functions and types are described in our docs . Some highlights include: Functions are now object-oriented. Instead of contains(file.name, "Books") , the formula would be file.name.contains("Books") . Functions can now be chained. e.g. property.split(' ').sort()[0].lower() Property names are no longer wrapped in backticks (`). Instead, to reference properties with spaces or special characters, the syntax is note["Property Name"] There is a new type system which provides greater control when writing formulas. New functions, such as link , date and list for converting a value to a different type. New file properties: file.path , file.links (a list of all internal links in this file), and file.tags (a list of all tags in this file, including frontmatter). Some functions have been replaced by comparison operators. For example, dateBefore(date1, date2) is now date1 < date2 . Date modifications are now much simpler. Instead of dateModify(date, string) , you can use date + string , for example, date("01/01/2025") + "1 year" For help migrating existing Bases to the new syntax, take a look at the migration guide . File format changes The Bases ( .base ) file format has been updated for greater extensibility. There is a new properties section for all property configurations, such as displayName . Learn about the full syntax in our docs . Improvements Bases Shows number of results in the current view. Bases: Operator dropdown for filters is now searchable. Bases: Table cells with long text now expand to show the entire content when selected. No longer broken Tags view: Fixed "Show nested tags" showing the full tag name (e.g. #parent/child ) File explorer: Fixed "Move folder to..." menu item not showing in context menu. Bases: Fixed view not closing after deleting the file. Bases: Fixed codeblock not rendering when "Indent with tabs" is enabled.