Skip to content

Commit

Permalink
Merge pull request #43 from yamajyn/release/1.1.0
Browse files Browse the repository at this point in the history
release 1.1.0
  • Loading branch information
yamajyn authored Aug 15, 2022
2 parents 09462de + 801dffe commit 200375d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 23 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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🙏🏻
Expand Down Expand Up @@ -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
Expand Down
23 changes: 4 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

-----------------------------------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Save and display shell commands like File Explorer",
"publisher": "yamajyn",
"icon": "resources/[email protected]",
"version": "1.0.5",
"version": "1.1.0",
"license": "MIT",
"galleryBanner": {
"color": "#ffffff",
Expand Down
4 changes: 2 additions & 2 deletions src/commandExplorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,11 +177,11 @@ export class FileSystemProvider implements vscode.TreeDataProvider<Entry>, 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
Expand Down

0 comments on commit 200375d

Please sign in to comment.