diff --git a/manifest.json b/manifest.json index 83922e4..0477a27 100644 --- a/manifest.json +++ b/manifest.json @@ -1,9 +1,9 @@ { - "id": "enhanced-link-suggestions", - "name": "Enhanced Link Suggestions", - "version": "0.3.3", + "id": "quick-preview", + "name": "Quick Preview", + "version": "0.4.0", "minAppVersion": "1.3.5", - "description": "Upgrade Obsidian's built-in link suggestions with quick preview & block markdown rendering.", + "description": "Quickly preview a suggestion before selecting it in link suggestions & quick swicher.", "author": "Ryota Ushio", "authorUrl": "https://github.com/RyotaUshio", "fundingUrl": "https://www.buymeacoffee.com/ryotaushio", diff --git a/package-lock.json b/package-lock.json index c491d9c..876c1ef 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { - "name": "obsidian-enhanced-link-suggestions", - "version": "0.3.3", + "name": "obsidian-quick-preview", + "version": "0.4.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "obsidian-enhanced-link-suggestions", - "version": "0.3.3", + "name": "obsidian-quick-preview", + "version": "0.4.0", "license": "MIT", "dependencies": { "monkey-around": "^2.3.0" diff --git a/package.json b/package.json index 733e437..fb73624 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "obsidian-enhanced-link-suggestions", - "version": "0.3.3", - "description": "Upgrade Obsidian's built-in link suggestions with quick preview & block markdown rendering.", + "name": "obsidian-quick-preview", + "version": "0.4.0", + "description": "An Obsidian.md plugin to quickly preview a suggestion before selecting it in link suggestions & quick swicher.", "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ diff --git a/src/settings.ts b/src/settings.ts index 83a7729..7c32c04 100644 --- a/src/settings.ts +++ b/src/settings.ts @@ -77,7 +77,7 @@ export class EnhancedLinkSuggestionsSettingTab extends PluginSettingTab { this.addDropdowenSetting('modifierToPreview', ['Mod', 'Ctrl', 'Meta', 'Shift', 'Alt'], getModifierNameInPlatform) .setName('Modifier key for quick preview') - .setDesc('Hold down this key to preview the link without clicking.'); + .setDesc('Hold down this key to preview a suggestion before selecting it.'); this.addToggleSetting('lazyHide') .setName("Don't close the current preview until the next preview is ready") .setDesc('If turned on, pressing arrow keys or hovering the mouse over the suggestions while holding the modifier key will not immediately close the preview, but instead wait for the preview for the newly selected suggestion to load.');