Skip to content

Commit

Permalink
chore: release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aidenlx committed Oct 1, 2022
1 parent f0d3ad4 commit 582d49b
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 4 deletions.
27 changes: 27 additions & 0 deletions app/obsidian/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@


# [0.2.0](https://github.com/aidenlx/obsidian-zotero-plugin/compare/0.1.1...0.2.0) (2022-10-01)


### Bug Fixes

* **lib/database:** fix attchament and annotation query ([daf4803](https://github.com/aidenlx/obsidian-zotero-plugin/commit/daf4803fa619b5b6294c1488e32277f26887ecf8))
* **lib/database:** itemKeyIndex now store key generated by getItemKeyGroupID ([a68a15e](https://github.com/aidenlx/obsidian-zotero-plugin/commit/a68a15e2e2e11acb818b51be211e8cd18aeb7fd0))
* **lib/zotero-type:** fix type def for creator; remove redundant type in @obzt/database ([45d609f](https://github.com/aidenlx/obsidian-zotero-plugin/commit/45d609fa536e7220ede59d6d6a17f0f5bbefa7b7))
* **obsidian:** downgrade to react 17 to avoid freeze on unmount while suspensing ([8fcebf5](https://github.com/aidenlx/obsidian-zotero-plugin/commit/8fcebf5afeab9e6f1f93928d96550a0e18c2b27c))
* **obsidian:** fix annot side panel failed to load on start ([8225497](https://github.com/aidenlx/obsidian-zotero-plugin/commit/8225497dd95f723395eaad408dcd3d1d56f46a0e))
* **obsidian:** fix annot view only get partially refreshed ([1d0df2c](https://github.com/aidenlx/obsidian-zotero-plugin/commit/1d0df2c7d5199b50c62a624edd8ca169ee06c03a))
* **obsidian:** fix inconsistent use of getItemKeyGroupID ([f4a8d17](https://github.com/aidenlx/obsidian-zotero-plugin/commit/f4a8d17b3e39424f2bff1c677171db178fd4f72b))


### Features

* **lib/database:** add function to get item with id or key ([98a5854](https://github.com/aidenlx/obsidian-zotero-plugin/commit/98a5854b213bbe425c6b42fa4d9b9a86b6348f48))
* **lib/database:** add function to get tags ([042165d](https://github.com/aidenlx/obsidian-zotero-plugin/commit/042165d265b11c1c3ec19ca242fe739ebab1b204))
* **lib/database:** add functions to getAnnotations and getAttachments ([55d9d90](https://github.com/aidenlx/obsidian-zotero-plugin/commit/55d9d90887d0719c12658eb3685d026e4b98db1c))
* **lib/database:** annotation now return attachment's id and key ([39ae46f](https://github.com/aidenlx/obsidian-zotero-plugin/commit/39ae46ff788eede27a24deb8ed954675c583fe79))
* **obsidian/annot-view:** improve handling case where active file not literature note ([eca6d95](https://github.com/aidenlx/obsidian-zotero-plugin/commit/eca6d95249bca7a0792231739fe7b609905a2051))
* **obsidian:** add file-itemkey map to note-index ([52cf5b0](https://github.com/aidenlx/obsidian-zotero-plugin/commit/52cf5b07a10e0a8eb1cbc26207148ac13109e725))
* **obsidian:** add modals to import annotations from zotero ([402c16f](https://github.com/aidenlx/obsidian-zotero-plugin/commit/402c16f08b6fc938099f99b2c62e3dd4343d8ba8))
* **obsidian:** add quick switcher to create literature note ([34d6135](https://github.com/aidenlx/obsidian-zotero-plugin/commit/34d6135e48d124b750b6ca550347d60e9d9e1f18))
* **obsidian:** click on page of annot header can now jump to zotero ([3017f33](https://github.com/aidenlx/obsidian-zotero-plugin/commit/3017f33899c6c1dd83b9b0c31ab54480c16f9589))
* **obsidian:** zotero annotation side panel ([0de85c6](https://github.com/aidenlx/obsidian-zotero-plugin/commit/0de85c640972d7e1e636f9bdb1554ac8dae6ac5a))

## [0.1.1](https://github.com/aidenlx/obsidian-zotero-plugin/compare/0.1.0...0.1.1) (2022-09-26)


Expand Down
2 changes: 1 addition & 1 deletion app/obsidian/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Obsidian.md plugin to integrate with Zotero, create literature notes and insert

## Compatibility

The required API feature is only available for Obsidian v0.15.9+.
The required API feature is only available for Obsidian v0.16.0+.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion app/obsidian/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-zotero-plugin",
"name": "Zotero Plugin",
"version": "0.1.1",
"version": "0.2.0",
"minAppVersion": "0.16.0",
"description": "Plugin to integrate with Zotero, create literature notes and insert citations from a Zotero library.",
"author": "AidenLx",
Expand Down
2 changes: 1 addition & 1 deletion app/obsidian/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-zotero-plugin",
"version": "0.1.1",
"version": "0.2.0",
"description": "Obsidian.md plugin to integrate with Zotero, create literature notes and insert citations from a Zotero library.",
"scripts": {
"dev": "cross-env BUILD=development node esbuild.config.mjs",
Expand Down
3 changes: 2 additions & 1 deletion app/obsidian/versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"0.1.0": "0.15.9",
"0.1.1": "0.15.9"
"0.1.1": "0.15.9",
"0.2.0": "0.16.0"
}

0 comments on commit 582d49b

Please sign in to comment.