From f48cd63a028a42cea80b2af6ae45832016860a1a Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Mon, 10 Apr 2023 13:11:15 +1000 Subject: [PATCH] chore: bump version to 0.2.1 --- README.md | 7 +++---- main.js | 7 +++++-- manifest.json | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 2eb3d09..1f94935 100644 --- a/README.md +++ b/README.md @@ -17,10 +17,9 @@ toggle app window visibility and can create quick notes from anywhere in your op | Create tray icon | Add an icon to your system tray/menubar to bring hidden Obsidian windows back into focus on click or force a full quit/relaunch of the app through the right-click menu. _Changing this option requires a restart to take effect._ | Enabled | | Toggle window focus hotkey | This hotkey is registered globally and will be detected even if Obsidian does not have keyboard focus. Format: [Electron accelerator](https://www.electronjs.org/docs/latest/api/accelerator) | CmdOrCtrl+Shift+Tab | -> **Note** -> The `Relaunch Obsidian` action can be triggered from the tray/menubar context menu, or with the in-app -> command palette (search for "Tray: Relaunch Obsidian"). Hotkeys can be assigned to the command via -> Obsidian's built-in hotkey manager. +The `Relaunch Obsidian` action can be triggered from the tray/menubar context menu, or with the in-app +command palette (search for "Tray: Relaunch Obsidian"). Hotkeys can be assigned to the command via +Obsidian's built-in hotkey manager. ### Quick notes diff --git a/main.js b/main.js index f736fe9..fbead13 100644 --- a/main.js +++ b/main.js @@ -1,5 +1,8 @@ -/* obsidian-tray v0.2.0 - by @dragonwocky */ +/** + * obsidian-tray v0.2.1 + * (c) 2023 dragonwocky (https://dragonwocky.me/) + * (https://github.com/dragonwocky/obsidian-tray/) under the MIT license + */ "use strict"; diff --git a/manifest.json b/manifest.json index d7c0cd8..81986a1 100644 --- a/manifest.json +++ b/manifest.json @@ -4,7 +4,7 @@ "author": "dragonwocky", "authorUrl": "https://dragonwocky.me/", "description": "Launch Obsidian on startup and run it in the background from the system tray.", - "version": "0.2.0", + "version": "0.2.1", "isDesktopOnly": true, "minAppVersion": "1.0.0" }