Skip to content

Commit

Permalink
Merge branch 'release/0.0.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
DominusKelvin committed Aug 11, 2020
2 parents 97448cd ea81c5c commit 84320a2
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 15 deletions.
9 changes: 9 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 1,9 @@
MIT License

Copyright (c) 2020 Kelvin Omereshone

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.
24 changes: 16 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 1,29 @@
# sailboat README
# Sailboat ⛵

Sails tooling for vscode
Sails tooling for vscode. I daily use Sailboat features in my workflow with [sails](https://sailsjs.com). I believe it can make you also more productive with Sails.

## Features
## Demo time 😌
![sailboat](images/demo.gif)

## Features ⌛
- Commands to get to Sails docs
- Commands to lift sails in all 3 modes (default, verbose and silly)
- Jump to Action
- Jump to Action (Ctrl|Cmd click to navigate from a route to a respective action file.)

### Coming Soon
### Coming Soon
- Jump to helper
- Intellisense

### Accessing Sailboat commands

### Accessing Sailboat commands 💪
Press ctrl shift p or cmd shift p to access VSCode command pallette. Then type 'sailboat' to see the list of available commands

## Release Notes
## Release Notes 📝

### v0.0.4
* House cleaning and optimization for visibility of the extension
* Add extension icon
* Add extension demo gif
* Add MIT license

### v0.0.3
* Commands to lift sails app in all 3 modes (default, verbose and silly)
Expand Down
Binary file added images/demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 28 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 2,45 @@
"name": "sailboat",
"displayName": "Sailboat",
"description": "Sails tooling for vscode.",
"version": "0.0.3",
"version": "0.0.4",
"publisher": "dominuskelvin",
"author": {
"name": "Kelvin Omereshone",
"email": "[email protected]",
"url": "https://dominuskelvin.dev"
},
"engines": {
"vscode": "^1.44.0"
},
"categories": [
"Languages"
"Programming Languages",
"Other"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#071C20",
"theme": "light"
},
"keywords": [
"node",
"nodejs",
"sails",
"sailsjs",
"sailboat"
],
"activationEvents": [
"onLanguage:javascript",
"onLanguage:typescript"
"onLanguage:javascript"
],
"repository": {
"type": "git",
"url": "https://github.com/DominusKelvin/sailboat"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/DominusKelvin/sailboat/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/DominusKelvin/sailboat/blob/master/README.md",
"main": "./out/extension.js",
"contributes": {
"commands": [
Expand Down Expand Up @@ -68,4 91,4 @@
"typescript": "^3.8.3",
"vscode-test": "^1.3.0"
}
}
}

0 comments on commit 84320a2

Please sign in to comment.