Skip to content

Commit

Permalink
Addressing feedback from plugin review
Browse files Browse the repository at this point in the history
- Remove styles.css from release
- Using sentence case in settings UI titles
  • Loading branch information
Talal-A committed Sep 12, 2024
1 parent 3d9393c commit 2e8da70
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
gh release create "$tag" \
--title="$tag" \
--draft \
main.js manifest.json styles.css
main.js manifest.json
6 changes: 3 additions & 3 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 2e8da70

Please sign in to comment.