Skip to content

Commit ed6c61c

Browse files
committed
Updated files for build
1 parent 3f417a4 commit ed6c61c

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
This is a plugin for [Obsidian](https://obsidian.md) to encode / decode texts.
44

5-
The first version supports only a text to base64 encoding.
6-
7-
The library used for the encoding is [base64-js](https://github.com/beatgammit/base64-js).
8-
5+
Currently supported algorithms are:
6+
- Base64
7+
- ROT13
98

109
## Installation
1110
### From within Obsidian
@@ -28,6 +27,7 @@ Following conversions are available
2827
| Source | Destination | Markdown keyword |
2928
|-----------|---------------|------------------------|
3029
| text | base64 | transform-text-base64 |
30+
| base64 | text | transform-base64-text |
3131
| text | ROT13 | transform-text-rot13 |
3232
| ROT13 | text | transform-rot13-text |
3333

@@ -48,6 +48,9 @@ dGhpcyBpcyBhIHRleHQgdG8gZW5jb2Rl
4848

4949
## Version History
5050

51+
### 1.2.0
52+
- Added Base64 Decoder
53+
5154
### 1.1.0
5255
- Added ROT13 conversion
5356

@@ -59,11 +62,9 @@ dGhpcyBpcyBhIHRleHQgdG8gZW5jb2Rl
5962

6063
Upcoming changes for this plugin:
6164

62-
- Base64 to text
6365
- Text to Vigenere
6466
- Vigenere to text
6567
- ROT13 to text
6668
- Text to hex
6769
- Hex to text
6870
- Text to ascii art (based on https://www.npmjs.com/package/figlet)
69-
-

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"id": "coder",
33
"name": "Encoder/Decoder",
4-
"version": "1.1.0",
4+
"version": "1.2.0",
55
"minAppVersion": "0.15.0",
6-
"description": "Converts text into other formats (base64, ROT13)",
6+
"description": "Converts texts into other formats (base64, ROT13) and vice versa",
77
"author": "Rudi Häusler",
88
"isDesktopOnly": false
99
}

versions.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44
"1.0.2": "0.15.0",
55
"1.0.3": "0.15.0",
66
"1.1.0": "0.15.0"
7+
"1.2.0": "0.15.0"
78
}

0 commit comments

Comments
 (0)