Skip to content

Commit

Permalink
[MRG] Merges release '1.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
czottmann committed Jun 20, 2024
2 parents 1427f19 + 3c687f3 commit 7e796ad
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
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.0",
"version": "1.2.1",
"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.0",
"version": "1.2.1",
"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/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,11 @@ export default class Mononote extends Plugin {
if (hasEphemeralState) {
targetToFocus.setEphemeralState(ephemeralState);
}
}, 10);
}, 100);

// Resolve the promise.
resolve();
}, 50);
}, 100);
});
}

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.0",
"pluginReleasedAt": "2024-06-20T17:13:33+0200"
"pluginVersion": "1.2.1",
"pluginReleasedAt": "2024-06-20T17:27:03+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.0",
"pluginReleasedAt": "2024-06-20T17:13:33+0200"
"pluginVersion": "1.2.1",
"pluginReleasedAt": "2024-06-20T17:27:03+0200"
}
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@
"0.1.9": "1.2.0",
"1.1.0": "1.4.0",
"1.1.1": "1.4.0",
"1.2.0": "1.5.0"
"1.2.0": "1.5.0",
"1.2.1": "1.5.0"
}

0 comments on commit 7e796ad

Please sign in to comment.