Skip to content

Commit

Permalink
feat: review
Browse files Browse the repository at this point in the history
  • Loading branch information
codeonquer committed Mar 28, 2024
1 parent ab95c6c commit 5bec950
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"id": "sync-config-folder-to-common-folder",
"name": "Sync ConfigFolder to CommonFolder",
"description": "Sync ConfigFolder to CommonFolder",
"author": "Codeonquer",
"description": "Sync ConfigFolder to CommonFolder",
"author": "codeonquer",
"authorUrl": "https://github.com/codeonquer",
"isDesktopOnly": true,
"version": "1.0.0",
"version": "1.0.1",
"minAppVersion": "0.15.0"
}
4 changes: 2 additions & 2 deletions modules/SyncPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ export class SyncPlugin extends Plugin {

this.addCommand({
id: 'sync-config-folder-to-common-folder',
name: 'Sync ConfigFolder to CommonFolder',
name: 'Sync',
callback: () => {
new SyncModal(this.app, SyncModel.Sync, this).open();
}
});

this.addCommand({
id: 'restore-config-folder-from-common-folder',
name: 'Restore ConfigFolder from CommonFolder',
name: 'Restore',
callback: () => {
new SyncModal(this.app, SyncModel.Restore, this).open();
}
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-sync-config-folder-to-common-folder",
"version": "1.0.0",
"version": "1.0.1",
"description": "Obsidian Sync ConfigFolder to CommonFolder",
"keywords": [],
"author": "codeonquer",
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"1.0.0": "0.15.0"
"1.0.0": "0.15.0",
"1.0.1": "0.15.0"
}

0 comments on commit 5bec950

Please sign in to comment.