Skip to content

Commit

Permalink
Release v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
benji300 committed Feb 23, 2021
1 parent 08db5bb commit b048932
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
1 change: 0 additions & 1 deletion src/favorites.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ export const FavoriteDesc: IFavoriteDesc[] = [
* - Then work on this._tabs array.
*/
export class Favorites {

private _settings: Settings;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 0 additions & 1 deletion src/panel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { Favorites } from './favorites';
import { Settings } from './settings';

export class Panel {

private _panel: any;
private _favs: Favorites;
private _settings: Settings;
Expand Down

0 comments on commit b048932

Please sign in to comment.