From b0489322697093e80f8dd6ed8e8c9e4bcffdca65 Mon Sep 17 00:00:00 2001 From: benji300 Date: Tue, 23 Feb 2021 23:33:01 +0100 Subject: [PATCH] Release v1.2.1 --- CHANGELOG.md | 4 ++++ package-lock.json | 2 +- package.json | 2 +- src/favorites.ts | 1 - src/manifest.json | 2 +- src/panel.ts | 1 - 6 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28e1eb7..b5abcdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +- None + +## [1.2.1] - 2021-02-23 + ### Fixed - Issue that caused infinite message loop between plugin and app ([#7](https://github.com/benji300/joplin-note-tabs/issues/7)) diff --git a/package-lock.json b/package-lock.json index 4af2a2f..8523421 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "joplin-plugin-benji-favorites", - "version": "1.2.0", + "version": "1.2.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 606fd51..bfd66f9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "joplin-plugin-benji-favorites", - "version": "1.2.0", + "version": "1.2.1", "description": "Save any notebook, note, to-do, tag, or search as favorite in an extra panel view for quick access.", "author": "Benji300", "homepage": "https://github.com/benji300/joplin-favorites", diff --git a/src/favorites.ts b/src/favorites.ts index 4831628..c3e86cc 100644 --- a/src/favorites.ts +++ b/src/favorites.ts @@ -50,7 +50,6 @@ export const FavoriteDesc: IFavoriteDesc[] = [ * - Then work on this._tabs array. */ export class Favorites { - private _settings: Settings; /** diff --git a/src/manifest.json b/src/manifest.json index 3832d12..160ab4d 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 1, "id": "joplin.plugin.benji.favorites", "app_min_version": "1.6.5", - "version": "1.2.0", + "version": "1.2.1", "name": "Favorites", "description": "Save any notebook, note, to-do, tag, or search as favorite in an extra panel view for quick access.", "author": "Benji300", diff --git a/src/panel.ts b/src/panel.ts index 3e19843..1f4e5b1 100644 --- a/src/panel.ts +++ b/src/panel.ts @@ -3,7 +3,6 @@ import { Favorites } from './favorites'; import { Settings } from './settings'; export class Panel { - private _panel: any; private _favs: Favorites; private _settings: Settings;