Skip to content

Commit

Permalink
v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshinorin committed Feb 11, 2021
1 parent da930d9 commit 9c18055
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 9 deletions.
19 changes: 14 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
# Change Log

## v3.1.0 - 2021-02-11

### New features

* (refs [#151](https://github.com/YoshinoriN/vscode-current-file-path-extension/pull/151)): Support copy feature on the remote-host [@dlguswo333](https://github.com/dlguswo333)
* e.g. Remote-WSL, Remote-Linux
* replace `clipboardy` with `vscode.env.clipboard`

### Misc

* [f735692](https://github.com/YoshinoriN/vscode-current-file-path-extension/commit/f735692fd2ae51f8c317664716c86a731e501b41): update some devDependencies

## v3.0.0 - 2020-05-29
---

### Breaking change

Expand All @@ -13,12 +24,11 @@

### Misc

* [#144](https://github.com/YoshinoriN/vscode-current-file-path-extension/pull/144), [f56d3fde](https://github.com/YoshinoriN/vscode-current-file-path-extension/commit/f56d3fde4855902d8f54aefd4a10e4f62d8c90b7), [339b2400](https://github.com/YoshinoriN/vscode-current-file-path-extension/commit/339b240067e161b292da25160a4223278539a313): Add unit test
* [#143](https://github.com/YoshinoriN/vscode-current-file-path-extension/pull/143): Add CI (GitHub Action)
* (refs [#144](https://github.com/YoshinoriN/vscode-current-file-path-extension/pull/144)), [f56d3fde](https://github.com/YoshinoriN/vscode-current-file-path-extension/commit/f56d3fde4855902d8f54aefd4a10e4f62d8c90b7), [339b2400](https://github.com/YoshinoriN/vscode-current-file-path-extension/commit/339b240067e161b292da25160a4223278539a313): Add unit test
* (refs [#143](https://github.com/YoshinoriN/vscode-current-file-path-extension/pull/143)): Add CI (GitHub Action)
* Update some dependencies

## v2.0.0 - 2018-09-04
---

### Breaking change

Expand All @@ -39,6 +49,5 @@
* Improve wording

## v1.0.0 - 2018-05-16
---

* Initial release
21 changes: 18 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Current File Path for Visual Studio Code

![](https://img.shields.io/badge/Release-v3.0.0-blue.svg?style=flat-square)
![](https://img.shields.io/badge/Release-v3.1.0-blue.svg?style=flat-square)
![](https://img.shields.io/badge/vscode-^1.40.0-blue.svg?style=flat-square)
![GitHub Action](https://img.shields.io/github/workflow/status/YoshinoriN/vscode-current-file-path-extension/CI/master?label=GitHub%20Action)

Expand All @@ -17,6 +17,8 @@ Visual Studio Code extension. This extension displays a current file path from a
* You can change it with QuickPick or command palette.
* Copy a current file path to clipboard.
* Copy a current file name to clipboard.
* Support copy feature on the remote-host.
* e.g. Remote-WSL, Remote-Linux
* You can set a display priority in the StatusBar by setting.

## Images
Expand All @@ -43,6 +45,19 @@ Visual Studio Code extension. This extension displays a current file path from a

## Release Notes

### v3.1.0
---

#### New features

* (refs [#151](https://github.com/YoshinoriN/vscode-current-file-path-extension/pull/151)): Support copy feature on the remote-host [@dlguswo333](https://github.com/dlguswo333)
* e.g. Remote-WSL, Remote-Linux
* replace `clipboardy` with `vscode.env.clipboard`

#### Misc

* [f735692](https://github.com/YoshinoriN/vscode-current-file-path-extension/commit/f735692fd2ae51f8c317664716c86a731e501b41): update some devDependencies

### v3.0.0
---

Expand All @@ -56,8 +71,8 @@ Visual Studio Code extension. This extension displays a current file path from a

#### Misc

* [#144](https://github.com/YoshinoriN/vscode-current-file-path-extension/pull/144), [f56d3fde](https://github.com/YoshinoriN/vscode-current-file-path-extension/commit/f56d3fde4855902d8f54aefd4a10e4f62d8c90b7), [339b2400](https://github.com/YoshinoriN/vscode-current-file-path-extension/commit/339b240067e161b292da25160a4223278539a313): Add unit test
* [#143](https://github.com/YoshinoriN/vscode-current-file-path-extension/pull/143): Add CI (GitHub Action)
* (refs [#144](https://github.com/YoshinoriN/vscode-current-file-path-extension/pull/144)), [f56d3fde](https://github.com/YoshinoriN/vscode-current-file-path-extension/commit/f56d3fde4855902d8f54aefd4a10e4f62d8c90b7), [339b2400](https://github.com/YoshinoriN/vscode-current-file-path-extension/commit/339b240067e161b292da25160a4223278539a313): Add unit test
* (refs [#143](https://github.com/YoshinoriN/vscode-current-file-path-extension/pull/143)): Add CI (GitHub Action)
* Update some dependencies


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "current-file-path",
"displayName": "Current File Path",
"description": "Display current file's path from absolute (root directory) or workspace highest directory in StatusBar by Unix style or Windows style.",
"version": "3.0.0",
"version": "3.1.0",
"publisher": "YoshinoriN",
"repository": {
"type": "git",
Expand Down

0 comments on commit 9c18055

Please sign in to comment.