diff --git a/README.md b/README.md index b0b2c2c..1b4ee39 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,17 @@ You can make a [pull request](https://github.com/elias-sundqvist/obsidian-annota ## Changelog +### 0.0.8 (2021-09-02) *Added Pre/Postfix setting toggles, Fixed scrolling issue, More size reductions.* +* The plugin is now available in the community plugins list! +* The Pre- and Postfix parts of the annotation markdown can now be disabled in the settings. (See #30) +* Clicking a PDF annotation link now causes an immediate jump to the annotation. No more glitchy scrolling. (See #21) +* Potential fix to the memory leak mentioned in #28 added. +* Added core-js. Will hopefully mean that the plugin works with older versions of node (see #34) +* Disabled global WebSocket override. Should resolve issues with Obsidian Sync (see #36) +* Further size reductions of the plugin + * React is now built in 'production' mode. + * All the embedded resources now use the highest zip compression ratio. + ### 0.0.7 (2021-09-01) *Added Custom Default Path setting, Page notes fix, Slight JSON size reduction, etc.* * Added a new setting called `Custom Default Path`. See [this comment on #19](https://github.com/elias-sundqvist/obsidian-annotator/issues/19#issuecomment-909549603) for more info. * Top-level values in the annotation JSON will now be ommited if their values are "unsurprising". See #24 diff --git a/manifest.json b/manifest.json index b5345dd..ed97567 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-annotator", "name": "Annotator", - "version": "0.0.7", + "version": "0.0.8", "minAppVersion": "0.9.12", "description": "This is a sample plugin for Obsidian. It allows you to open and annotate PDF and EPUB files.", "author": "Obsidian", diff --git a/package.json b/package.json index 617da03..e5e7c0c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-annotator", - "version": "0.0.7", + "version": "0.0.8", "description": "This is a sample plugin for Obsidian (https://obsidian.md)", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index 679ac1d..4e5e877 100644 --- a/versions.json +++ b/versions.json @@ -5,5 +5,6 @@ "0.0.4": "0.9.12", "0.0.5": "0.9.12", "0.0.6": "0.9.12", - "0.0.7": "0.9.12" + "0.0.7": "0.9.12", + "0.0.8": "0.9.12" }