Skip to content

Commit

Permalink
Merge pull request #8 from RyoJerryYu/chore-fix-id-for-compliance
Browse files Browse the repository at this point in the history
chore: fix id for compliance
  • Loading branch information
RyoJerryYu authored May 27, 2024
2 parents 4598109 + 1e6b776 commit f36fd0d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-memos-sync",
"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",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
6 changes: 3 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
});
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

0 comments on commit f36fd0d

Please sign in to comment.