Skip to content

Commit

Permalink
[REL] Release 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
czottmann committed Jun 24, 2024
1 parent 0e3ebc7 commit 808ea71
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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. 😅
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": "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",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
4 changes: 2 additions & 2 deletions src/plugin-info.json
Original file line number Diff line number Diff line change
@@ -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"
}
4 changes: 2 additions & 2 deletions src/plugin-info.ts
Original file line number Diff line number Diff line change
@@ -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"
}
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

0 comments on commit 808ea71

Please sign in to comment.