From 2e8da700c8aa071bd4581ad9c6506ed1d5e3bffd Mon Sep 17 00:00:00 2001 From: Talal Abou Haiba Date: Thu, 12 Sep 2024 15:09:14 -0700 Subject: [PATCH] Addressing feedback from plugin review - Remove styles.css from release - Using sentence case in settings UI titles --- .github/workflows/release.yml | 2 +- main.ts | 6 +++--- manifest.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3221f2c..6c6e6b3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,4 +31,4 @@ jobs: gh release create "$tag" \ --title="$tag" \ --draft \ - main.js manifest.json styles.css + main.js manifest.json diff --git a/main.ts b/main.ts index 51e85f2..40f1a11 100644 --- a/main.ts +++ b/main.ts @@ -144,7 +144,7 @@ class SettingTab extends PluginSettingTab { await this.plugin.saveSettings(); })); new Setting(containerEl) - .setName('Immich API Key') + .setName('Immich API key') .setDesc('Obtained from {IMMICH_URL}/user-settings?isOpen=api-keys.') .addText(text => text .setValue(this.plugin.settings.immichApiKey) @@ -153,7 +153,7 @@ class SettingTab extends PluginSettingTab { await this.plugin.saveSettings(); })); new Setting(containerEl) - .setName('Immich Album ID') + .setName('Immich album ID') .setDesc('UUID for the `obsidian` album in immich.') .addText(text => text .setValue(this.plugin.settings.immichAlbum) @@ -162,7 +162,7 @@ class SettingTab extends PluginSettingTab { await this.plugin.saveSettings(); })); new Setting(containerEl) - .setName('Immich Album Share Key') + .setName('Immich album share key') .setDesc('Share key which shows up in the URL of your album.') .addText(text => text .setValue(this.plugin.settings.immichAlbumKey) diff --git a/manifest.json b/manifest.json index 374d4c1..434dc80 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "immich", "name": "Immich", - "version": "0.0.6", + "version": "0.0.7", "minAppVersion": "0.15.0", "description": "Link your Immich images within your vault.", "author": "Talal Abou Haiba",