From 2f85de2ef521fb00da254cc5dc3b06c3fcf8e476 Mon Sep 17 00:00:00 2001 From: yamajyn Date: Mon, 15 Aug 2022 16:02:50 +0900 Subject: [PATCH 1/2] chore: write release note & release 1.1.0 --- CHANGELOG.md | 8 +++++++- README.md | 23 ++++------------------- package.json | 2 +- src/commandExplorer.ts | 4 ++-- 4 files changed, 14 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc3456f..fac7e78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.0] - 2022-08-15 + +- Enabled to open the destination JSON files. +- [BETA] Show progress bar + ## [1.0.5] - 2022-04-14 ### Fixed - not changed explorer data๐Ÿ™๐Ÿป @@ -48,7 +53,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - README - icon -[Unreleased]: https://github.com/yamajyn/commandlist/compare/v1.0.3...HEAD +[Unreleased]: https://github.com/yamajyn/commandlist/compare/v1.1.0...HEAD +[1.1.0]: https://github.com/yamajyn/commandlist/releases/tag/v1.1.0 [1.0.5]: https://github.com/yamajyn/commandlist/releases/tag/v1.0.5 [1.0.4]: https://github.com/yamajyn/commandlist/releases/tag/v1.0.4 [1.0.3]: https://github.com/yamajyn/commandlist/releases/tag/v1.0.3 diff --git a/README.md b/README.md index 779c0dd..19f32c5 100644 --- a/README.md +++ b/README.md @@ -40,27 +40,12 @@ right-click on command -## Release Notes +## Release Note -### 1.0.2 +### 1.1.0 -Put commands in alphabetical order - -### 1.0.1 - -Fix light theme icon. - -### 1.0.0 - -Initial release of commandlist. - -### 0.2.0 - -Function addition of command group. - -### 0.1.0 - -create command explorer and command executer. +- Enabled to open the destination JSON files. +- [BETA] Show progress bar ----------------------------------------------------------------------------------------------------------- diff --git a/package.json b/package.json index 268aa55..1c69a62 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Save and display shell commands like File Explorer", "publisher": "yamajyn", "icon": "resources/icon@128.png", - "version": "1.0.5", + "version": "1.1.0", "license": "MIT", "galleryBanner": { "color": "#ffffff", diff --git a/src/commandExplorer.ts b/src/commandExplorer.ts index 55082b7..9b2713f 100644 --- a/src/commandExplorer.ts +++ b/src/commandExplorer.ts @@ -177,11 +177,11 @@ export class FileSystemProvider implements vscode.TreeDataProvider, vscod async add(selected?: Entry){ const script = await vscode.window.showInputBox({ - placeHolder: 'E.g.: echo "We Support Ukraine ๐Ÿ‡บ๐Ÿ‡ฆ"', + placeHolder: "e.g.: rm -rf '~/.aggression/russian in Ukraine'", prompt: '๐Ÿ“ Enter a new command script' }); const label = await vscode.window.showInputBox({ - placeHolder: 'E.g.: We Support Ukraine ๐Ÿ‡บ๐Ÿ‡ฆ', + placeHolder: 'e.g.: Want peace between Ukraine๐Ÿ‡บ๐Ÿ‡ฆ and Russia๐Ÿ‡ท๐Ÿ‡บ.', prompt: '๐Ÿ”– Enter command label name', value: script, validateInput: this.validateLabelName From 801dffe24d12fe27965fe66c4f6b2f8cc0ec5f48 Mon Sep 17 00:00:00 2001 From: yamajyn Date: Mon, 15 Aug 2022 16:05:27 +0900 Subject: [PATCH 2/2] fix: changelog section --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fac7e78..2484eca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [1.1.0] - 2022-08-15 - +### Added - Enabled to open the destination JSON files. - [BETA] Show progress bar