Skip to content

Commit 21e8380

Browse files
committed
Release 1.3.0
1 parent e18349a commit 21e8380

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ Following conversions are available
2929
|-----------|---------------|------------------------|
3030
| text | base64 | transform-text-base64 |
3131
| base64 | text | transform-base64-text |
32+
| text | base85 | transform-text-base85 |
33+
| base85 | text | transform-base85-text |
3234
| text | ROT13 | transform-text-rot13 |
3335
| ROT13 | text | transform-rot13-text |
3436
| text | atbash | transform-text-atbash |
@@ -51,6 +53,10 @@ dGhpcyBpcyBhIHRleHQgdG8gZW5jb2Rl
5153

5254
## Version History
5355

56+
### 1.3.0
57+
- Refactorings in main.js for more dynamic bindings
58+
- Added base85 conversion
59+
5460
### 1.2.1
5561
- Added atbash conversion
5662

@@ -75,6 +81,5 @@ Upcoming changes for this plugin:
7581
- Hex encoder/decoder
7682
- Base16 encoder/decoder
7783
- Base32 encoder/decoder
78-
- Base85 encoder/decoder
7984
- Morse encoder/decoder
8085
- Text to ascii art (based on https://www.npmjs.com/package/figlet)

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.2.1",
4+
"version": "1.3.0",
55
"minAppVersion": "0.15.0",
6-
"description": "Converts texts into other formats (base64, ROT13, atbash) and vice versa",
6+
"description": "Converts texts into other formats (base64, base85, ROT13, atbash) 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
@@ -6,4 +6,5 @@
66
"1.1.0": "0.15.0"
77
"1.2.0": "0.15.0"
88
"1.2.1": "0.15.0"
9+
"1.3.0": "0.15.0"
910
}

0 commit comments

Comments
 (0)