From 808ea71164e4726996657aad7e139941f13be1ea Mon Sep 17 00:00:00 2001 From: Carlo Zottmann Date: Mon, 24 Jun 2024 14:29:13 +0200 Subject: [PATCH] [REL] Release 1.2.2 --- CHANGELOG.md | 9 +++++++++ manifest.json | 2 +- package.json | 2 +- src/plugin-info.json | 4 ++-- src/plugin-info.ts | 4 ++-- versions.json | 3 ++- 6 files changed, 17 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87aa160..ab78007 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Release history +## 1.2.2, 2024-06-24 + +### New + +Adds settings tab where you can configure how much time Mononote gives to Obsidian to load a file and do its thing, before Mononote's tab switching kicks in. + +By default, the plugin waits for 100ms before applying its own tab switching rules. However, depending on your machine and your vault size, that might not be enough time. If it isn't, then Mononote would switch tabs *before* Obsidian is done internally, and then Obsidian would add *another* switch on top. So now you can adjust this delay if necessary. + + ## 1.2.1, 2024-06-20 I've rewritten the entire internal logic of Mononote (again) to be more robust and reliable. This should fix a lot of the issues that have been reported with endless flickering and tabs being closed prematurely, and make the plugin more stable overall. It's been a journey. 😅 diff --git a/manifest.json b/manifest.json index fce6102..9c6ec82 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "mononote", "name": "Mononote", - "version": "1.2.1", + "version": "1.2.2", "minAppVersion": "1.5.0", "description": "Ensures each note occupies only one tab. If a note is already open, its existing tab will be focussed instead of opening the same file in the current tab.", "author": "Carlo Zottmann", diff --git a/package.json b/package.json index ef4b63a..9473532 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mononote", - "version": "1.2.1", + "version": "1.2.2", "description": "Ensures each note occupies only one tab. If a note is already open, its existing tab will be focussed instead of opening the same file in the current tab.", "main": "main.js", "scripts": { diff --git a/src/plugin-info.json b/src/plugin-info.json index aa182f9..67db744 100644 --- a/src/plugin-info.json +++ b/src/plugin-info.json @@ -1,4 +1,4 @@ { - "pluginVersion": "1.2.1", - "pluginReleasedAt": "2024-06-20T17:27:03+0200" + "pluginVersion": "1.2.2", + "pluginReleasedAt": "2024-06-24T14:29:11+0200" } diff --git a/src/plugin-info.ts b/src/plugin-info.ts index 82a92f4..66fe7a9 100644 --- a/src/plugin-info.ts +++ b/src/plugin-info.ts @@ -1,5 +1,5 @@ /* File will be overwritten by bin/release.sh! */ export const PLUGIN_INFO = { - "pluginVersion": "1.2.1", - "pluginReleasedAt": "2024-06-20T17:27:03+0200" + "pluginVersion": "1.2.2", + "pluginReleasedAt": "2024-06-24T14:29:11+0200" } diff --git a/versions.json b/versions.json index ba0f1e4..cf72954 100644 --- a/versions.json +++ b/versions.json @@ -13,5 +13,6 @@ "1.1.0": "1.4.0", "1.1.1": "1.4.0", "1.2.0": "1.5.0", - "1.2.1": "1.5.0" + "1.2.1": "1.5.0", + "1.2.2": "1.5.0" }