diff --git a/README.md b/README.md index 958d76d..6136855 100644 --- a/README.md +++ b/README.md @@ -59,15 +59,18 @@ You can make a [pull request](https://github.com/elias-sundqvist/obsidian-annota ## Changelog -### 0.0.3 (2021-05-04) *Plugin Size Reduction* +### 0.0.4 (2021-08-26) *Chinese File name support* +* Added support for chinese file names. (See issue #4) + +### 0.0.3 (2021-08-26) *Plugin Size Reduction* * Removed some unnecessary files to reduce plugin size. -### 0.0.2 (2021-05-04) *Minor fixes* +### 0.0.2 (2021-08-26) *Minor fixes* * Removed logging, * Simplified link handling * viewer height is now 100% instead of fixed to 1000px. -### 0.0.1 (2021-05-04) *First Release* +### 0.0.1 (2021-08-25) *First Release* * Basic functionality of the plugin implemented ## License diff --git a/manifest.json b/manifest.json index aad9201..dd8d24d 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-annotator", "name": "Annotator", - "version": "0.0.3", + "version": "0.0.4", "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 af11c65..4a8cd73 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-annotator", - "version": "0.0.3", + "version": "0.0.4", "description": "This is a sample plugin for Obsidian (https://obsidian.md)", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index e4d8c84..cd94d6e 100644 --- a/versions.json +++ b/versions.json @@ -1,5 +1,6 @@ { "0.0.1": "0.9.12", "0.0.2": "0.9.12", - "0.0.3": "0.9.12" + "0.0.3": "0.9.12", + "0.0.4": "0.9.12" }