Skip to content

Commit 855eb14

Browse files
Apply fixes from plugin guidelines
Version numbers, tooltip, desktop only
1 parent 8be7309 commit 855eb14

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"id": "anki-link",
33
"name": "Anki Link",
4-
"version": "1.0.4",
4+
"version": "1.0.5",
55
"minAppVersion": "0.15.0",
66
"description": "Links obsidian notes with Anki using callouts.",
77
"author": "Jesse",
8-
"isDesktopOnly": false
8+
"isDesktopOnly": true
99
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "anki-link",
3-
"version": "1.0.0",
3+
"version": "1.0.5",
44
"description": "Turn your Obsidian notes into synced Anki flashcards.",
55
"main": "main.js",
66
"type": "module",

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default class AnkiLink extends Plugin {
1313
async onload() {
1414
await this.loadSettings();
1515

16-
this.addRibbonIcon(ANKI_LINK_ICON, "Sample", async (_evt: MouseEvent) => {
16+
this.addRibbonIcon(ANKI_LINK_ICON, "Sync Anki cards", async (_evt: MouseEvent) => {
1717
await this.runSyncAndNotify();
1818
});
1919

versions.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
{
2-
"1.0.0": "0.15.0"
2+
"1.0.0": "0.15.0",
3+
"1.0.4": "0.15.0",
4+
"1.0.5": "0.15.0"
35
}

0 commit comments

Comments
 (0)