From 1fc27ab1b6cb91912eb8fb280a12f7fa1e7affa4 Mon Sep 17 00:00:00 2001 From: ClaudiaFang Date: Tue, 14 Jul 2026 13:21:08 +0000 Subject: [PATCH] fix: don't mark the symlink-pull fix as notable in 1.3.0 changelog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Keep it in the list but drop the highlight — it's a bug fix, not a feature worth calling out alongside the multi-language and faster sync-status-check highlights. --- src/changelog.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/changelog.ts b/src/changelog.ts index 3c9b60e..50cc06c 100644 --- a/src/changelog.ts +++ b/src/changelog.ts @@ -25,7 +25,7 @@ export const CHANGELOG: ChangelogRelease[] = [ entries: [ { text: 'The plugin now speaks multiple languages — English, Traditional Chinese, and Simplified Chinese. It follows your Obsidian display language automatically, or you can pick one in Settings.', notable: true }, { text: 'Checking sync status is now much faster, especially in vaults with lots of files.', notable: true }, - { text: 'Fixed a bug where a linked (symlinked) folder could be pulled incorrectly instead of being treated as a link.', notable: true }, + { text: 'Fixed a bug where a linked (symlinked) folder could be pulled incorrectly instead of being treated as a link.' }, { text: 'Added a setting to keep specific files or folders out of sync, in addition to what your repo\'s .gitignore already excludes.' }, { text: 'Settings now show your connection status at a glance, so you can tell right away if something needs attention.' }, { text: 'The conflict resolution window can now be resized to see more content at once.' },