Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoichi Kawasaki committed Aug 18, 2019
1 parent 1f68cf9 commit 92e433d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All notable changes to the "jwt-debugger" extension will be documented in this file.

## 0.3.0
- Disable a command shortcut key (`Ctrl+shift+d` or `Cmd+shift+d` for Mac) when editor has no text selection

## 0.2.0
- Add a new keybind to execute the command `JWT Debugger Decocde`. Now you can execute the command either in `Command Palette` or with keybind `Ctrl+Shift+d` (Mac: `Cmd+Shift+d`)

Expand Down
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,19 @@ vscode-jwt-debugger allows you to decode JWT. You simply needt to select JWT enc

![](assets/vscode-jwt-debugger.gif)


## Installation
- Open the `Command Palette` of VS Code with `Ctrl + P` or `Cmd + P`(MacOS)
- And type: `ext install yokawasa.jwt-debugger`

or find at [Marketplace](https://marketplace.visualstudio.com/)

## Commands
- `JWT Debugger Decocde`
## Command & Shortcut
| Command | Shortcut | Description |
| --- | --- | --- |
| `JWT Debugger Decocde` | `Ctrl+Shift+d` <br> (Mac: `Cmd+Shift+d`) | Decode selected JWT Token text |

> [NOTE] You can execute the command above either in `Command Palette` or with keybind `Ctrl+Shift+d` (Mac: `Cmd+Shift+d`)
> NOTE: The command `JWT Debugger Decocde` and its shortcut key are NOT available when there is no selected text.
## Change Log
See [Change Log](CHANGELOG.md)
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "jwt-debugger",
"displayName": "JWT Debugger",
"description": "JWT tokens decoder - VS Code version of jwt.io debugger",
"version": "0.2.0",
"version": "0.3.0",
"license": "MIT",
"publisher": "yokawasa",
"repository": {
Expand Down Expand Up @@ -37,7 +37,7 @@
"command": "extension.jwtdebugger.decode",
"key": "ctrl+shift+d",
"mac": "cmd+shift+d",
"when": "editorTextFocus"
"when": "editorHasSelection"
}
],
"menus": {
Expand Down

0 comments on commit 92e433d

Please sign in to comment.