Skip to content

Commit

Permalink
Merge pull request #2 from yamajyn/add-license-1
Browse files Browse the repository at this point in the history
Create License
  • Loading branch information
yamajyn authored Jul 9, 2019
2 parents e567d90 + edc3e5e commit 934807a
Show file tree
Hide file tree
Showing 6 changed files with 94 additions and 41 deletions.
19 changes: 14 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
# Change Log
# Changelog
All notable changes to this project will be documented in this file.

All notable changes to the "commandlist" extension will be documented in this file.

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

- Initial release
## [0.1.0] - 2019-07-10
### Added
- Basic command explorer
- command executer
- license
- README
- icon

[Unreleased]: https://github.com/yamajyn/commandlist/compare/v0.1.0...HEAD
[0.1.0]: https://github.com/yamajyn/commandlist/releases/tag/v0.1.0
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2019 Junya Yamamoto

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
53 changes: 17 additions & 36 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
# commandlist README
# Command List

This is the README for your extension "commandlist". After writing up a brief description, we recommend including the following sections.
[![CircleCI](https://circleci.com/gh/yamajyn/commandlist/tree/master.svg?style=shield)](https://circleci.com/gh/yamajyn/commandlist/tree/master)
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=9RLWXDPUFZC56&currency_code=JPY&source=url)
![GitHub release](https://img.shields.io/github/release/yamajyn/commandlist.svg?style=flat)
![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat)

## Features

Describe specific features of your extension including screenshots of your extension in action. Image paths are relative to this README file.

For example if there is an image subfolder under your extension project workspace:

\!\[feature X\]\(images/feature-x.png\)
![commandlist](resources/dark/icon.svg)
![commandlist](resources/light/icon.svg)

> Tip: Many popular extensions utilize animations. This is an excellent way to show off your extension! We recommend short, focused animations that are easy to follow.
Run and Save commands in WorkSpace or Global

## Requirements
## Features

If you have any requirements or dependencies, add a section describing those and how to install and configure them.
- Save and display command like File Explorer
- Select and execute command in terminal

## Extension Settings

Expand All @@ -27,39 +26,21 @@ This extension contributes the following settings:
* `myExtension.enable`: enable/disable this extension
* `myExtension.thing`: set to `blah` to do something

## Known Issues

Calling out known issues can help limit users opening duplicate issues against your extension.

## Release Notes

Users appreciate release notes as you update your extension.

### 1.0.0

Initial release of ...

### 1.0.1

Fixed issue #.

### 1.1.0

Added features X, Y, and Z.
Initial release of commandlist

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

## Working with Markdown

**Note:** You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts:

* Split the editor (`Cmd+\` on macOS or `Ctrl+\` on Windows and Linux)
* Toggle preview (`Shift+CMD+V` on macOS or `Shift+Ctrl+V` on Windows and Linux)
* Press `Ctrl+Space` (Windows, Linux) or `Cmd+Space` (macOS) to see a list of Markdown snippets
## Changelog

### For more information
see [here](CHANGELOG.md)

* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown)
* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/)
## License
MIT

**Enjoy!**
**Happy Coding!**  😎
22 changes: 22 additions & 0 deletions resources/dark/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions resources/light/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/test/commandExplorer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,9 @@ export const commandExplorerTest = () => {
test('isJson', () => {
assert.equal(true, provider.isJson(file.fsPath));
});

test('deleteFile', () => {
provider.delete(dir, { recursive : true });
});
});
};

0 comments on commit 934807a

Please sign in to comment.