From b83884c6d67658a7f54498270fffc762297086bc Mon Sep 17 00:00:00 2001 From: Ryo <36154873+RyoJerryYu@users.noreply.github.com> Date: Mon, 27 May 2024 15:50:29 +0800 Subject: [PATCH 1/2] chore: fix plugin id for compliance --- manifest.json | 4 ++-- src/main.ts | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/manifest.json b/manifest.json index ea862f4..a522bdb 100644 --- a/manifest.json +++ b/manifest.json @@ -1,5 +1,5 @@ { - "id": "obsidian-memos-sync", + "id": "memos-sync", "name": "Memos Sync", "version": "0.3.2", "minAppVersion": "0.15.0", @@ -8,4 +8,4 @@ "authorUrl": "https://github.com/RyoJerryYu", "isDesktopOnly": true, "js": "main.js" -} \ No newline at end of file +} diff --git a/src/main.ts b/src/main.ts index 037f21e..d3b09f5 100644 --- a/src/main.ts +++ b/src/main.ts @@ -56,17 +56,17 @@ export default class MemosSyncPlugin extends Plugin { loadDailyMemos = async () => { this.dailyMemos = new DailyMemos(this.app, this.settings); this.addCommand({ - id: "obsidian-memos-sync-daily-memos", + id: "memos-sync-daily-memos", name: "Sync daily memos", callback: this.dailyMemos.sync, }); this.addCommand({ - id: "obsidian-memos-force-sync-daily-memos", + id: "memos-force-sync-daily-memos", name: "Force sync daily memos", callback: this.dailyMemos.forceSync, }); this.addCommand({ - id: "obsidian-memos-sync-force-current-daily-memos", + id: "memos-sync-force-current-daily-memos", name: "Force sync current daily memos", callback: this.dailyMemos.syncForCurrentFile, }); From 1e6b7760fb1bb82fee18d38d231c12d0efd3cacf Mon Sep 17 00:00:00 2001 From: Ryo <36154873+RyoJerryYu@users.noreply.github.com> Date: Mon, 27 May 2024 15:50:41 +0800 Subject: [PATCH 2/2] v0.3.3 --- manifest.json | 4 ++-- package.json | 2 +- versions.json | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/manifest.json b/manifest.json index a522bdb..cafa4ba 100644 --- a/manifest.json +++ b/manifest.json @@ -1,11 +1,11 @@ { "id": "memos-sync", "name": "Memos Sync", - "version": "0.3.2", + "version": "0.3.3", "minAppVersion": "0.15.0", "description": "Syncing memos from a [Memos](https://github.com/usememos/memos) server to Obsidian daily note. Fully compatible with official Daily Notes plugin, Calendar plugin and Periodic Notes plugin.", "author": "RyoJerryYu", "authorUrl": "https://github.com/RyoJerryYu", "isDesktopOnly": true, "js": "main.js" -} +} \ No newline at end of file diff --git a/package.json b/package.json index f0ce776..61bb289 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-memos-sync", - "version": "0.3.2", + "version": "0.3.3", "description": "Syncing Memos to Obsidian daily note.", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index 8241778..df25f20 100644 --- a/versions.json +++ b/versions.json @@ -2,5 +2,6 @@ "1.0.0": "0.15.0", "0.3.0": "0.15.0", "0.3.1": "0.15.0", - "0.3.2": "0.15.0" + "0.3.2": "0.15.0", + "0.3.3": "0.15.0" } \ No newline at end of file