diff --git a/CHANGELOG.md b/CHANGELOG.md index cc3456f..2484eca 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 +### Added +- 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