Skip to content

Commit

Permalink
release: 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RyotaUshio committed Dec 7, 2023
1 parent 1b1cbda commit 34ce9db
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand Down
2 changes: 1 addition & 1 deletion src/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.');
Expand Down

0 comments on commit 34ce9db

Please sign in to comment.