Browse Source

prep for release

pull/147/head
Cleon 2 years ago
parent
commit
98f05a79ce
  1. 24
      README.md
  2. 2
      manifest.json
  3. 2
      package.json
  4. 3
      versions.json

24
README.md

@ -25,6 +25,11 @@ You can install the plugin via the Community Plugins tab within Obsidian by sear @@ -25,6 +25,11 @@ You can install the plugin via the Community Plugins tab within Obsidian by sear
> Please report any bugs or feature requests [here](https://github.com/meld-cp/obsidian-encrypt/issues).
### 2.3.4
- add missing ability to indent when editing encrypted whole-notes ([#108](https://github.com/meld-cp/obsidian-encrypt/issues/108))
- fix incorrect rendering of markdown for in-place encrypted notes in reading view ([#132](https://github.com/meld-cp/obsidian-encrypt/issues/132))
### 2.3.3
- fix broken consecutive in-place markers in reading view ([#102](https://github.com/meld-cp/obsidian-encrypt/issues/102))
- fix bottom text is hidden when editing encrypted whole-notes ([#124](https://github.com/meld-cp/obsidian-encrypt/issues/124))
@ -34,15 +39,6 @@ You can install the plugin via the Community Plugins tab within Obsidian by sear @@ -34,15 +39,6 @@ You can install the plugin via the Community Plugins tab within Obsidian by sear
- add key-bindable command to toggle reading view for encrypted notes ([#116](https://github.com/meld-cp/obsidian-encrypt/issues/116))
- change to using `.mdenc` file extensions for encrypted notes ([#117](https://github.com/meld-cp/obsidian-encrypt/issues/117))
### 2.3.1
- fix encrypt/decrypt of notes don't update links ([#118](https://github.com/meld-cp/obsidian-encrypt/issues/118))
### 2.3.0
- add encrypt/decrypt of `.md` or `.encrypted` notes [#68](https://github.com/meld-cp/obsidian-encrypt/issues/68) (via file context menu, ribbon icon or command palette, helps with [#91](https://github.com/meld-cp/obsidian-encrypt/issues/91), [#103](https://github.com/meld-cp/obsidian-encrypt/issues/103), [#108](https://github.com/meld-cp/obsidian-encrypt/issues/108), [#114](https://github.com/meld-cp/obsidian-encrypt/issues/114))
- fix double blank line [#107](https://github.com/meld-cp/obsidian-encrypt/issues/107)
- fix offline decrypt tool [#111](https://github.com/meld-cp/obsidian-encrypt/issues/111) (found in `/tools/decrypt.html`)
- ribbon icon changes
- code refactor and clean up
**(See more at the bottom of this page)**
@ -150,6 +146,16 @@ Thank you for your support 😊 @@ -150,6 +146,16 @@ Thank you for your support 😊
## ⚜ Previous changes
### 2.3.1
- fix encrypt/decrypt of notes don't update links ([#118](https://github.com/meld-cp/obsidian-encrypt/issues/118))
### 2.3.0
- add encrypt/decrypt of `.md` or `.encrypted` notes [#68](https://github.com/meld-cp/obsidian-encrypt/issues/68) (via file context menu, ribbon icon or command palette, helps with [#91](https://github.com/meld-cp/obsidian-encrypt/issues/91), [#103](https://github.com/meld-cp/obsidian-encrypt/issues/103), [#108](https://github.com/meld-cp/obsidian-encrypt/issues/108), [#114](https://github.com/meld-cp/obsidian-encrypt/issues/114))
- fix double blank line [#107](https://github.com/meld-cp/obsidian-encrypt/issues/107)
- fix offline decrypt tool [#111](https://github.com/meld-cp/obsidian-encrypt/issues/111) (found in `/tools/decrypt.html`)
- ribbon icon changes
- code refactor and clean up
### 2.2.0
- stronger encryption (thanks @brycx)
- fix [#92](https://github.com/meld-cp/obsidian-encrypt/issues/92) - Enable selection text in Reading view

2
manifest.json

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
{
"id": "meld-encrypt",
"name": "Meld Encrypt",
"version": "2.3.3",
"version": "2.3.4",
"minAppVersion": "1.0.3",
"description": "Hide secrets in your vault",
"author": "meld-cp",

2
package.json

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
{
"name": "obsidian-sample-plugin",
"version": "2.3.3",
"version": "2.3.4",
"description": "Hide secrets in your vault",
"main": "main.js",
"scripts": {

3
versions.json

@ -31,5 +31,6 @@ @@ -31,5 +31,6 @@
"2.3.0": "1.0.3",
"2.3.1": "1.0.3",
"2.3.2": "1.0.3",
"2.3.3": "1.0.3"
"2.3.3": "1.0.3",
"2.3.4": "1.0.3"
}
Loading…
Cancel
Save