Skip to content
This repository was archived by the owner on Apr 8, 2023. It is now read-only.

Commit 9220e2b

Browse files
committed
v0.2.0 Changed logo and display name
1 parent 57ae6a8 commit 9220e2b

File tree

5 files changed

+87
-62
lines changed

5 files changed

+87
-62
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to this extension will be documented in this file.
44

55
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
66

7+
## [0.2.0] - 2021-08-20
8+
9+
### Changed
10+
11+
- Changed logo.
12+
- Changed displayName to "Humane JavaScript Snippets".
13+
14+
## Fixed
15+
16+
- Added missing screenshot with snippet list.
17+
718
## [0.1.0] - 2021-08-20
819

920
### Added

README.md

+14-6
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
<img align="center" src="img/logo.png" width="200">
44
<br>
55
<br>
6-
JavaScript Snippets for Humans
6+
Humane JavaScript Snippets
77
<br>
88
<br>
99
</h1>
1010
<h4 align="center">Descriptive, easy to find JavaScript snippets, without nonsense abbreviations.</h4>
11-
11+
<br/>
1212
<p align="center">
1313
<img src="https://img.shields.io/static/v1?logo=visual-studio-code&label=made%20for&message=VS%20Code&color=0000ff" alt="Made for VSCode">
1414
<img src="https://img.shields.io/visual-studio-marketplace/v/robole.javascript-snippets?logo=visual-studio-code&color=ffa500" alt="Visual Studio Marketplace Version">
15-
<img src="https://img.shields.io/static/v1?logo=visual-studio-code&label=size&message=11KB&color=008000"
15+
<img src="https://img.shields.io/static/v1?logo=visual-studio-code&label=size&message=13KB&color=008000"
1616
alt="Extension file size in bytes">
1717
<img src="https://img.shields.io/visual-studio-marketplace/r/robole.javascript-snippets?logo=visual-studio-code&color=yellow" alt="Visual Studio Marketplace Rating">
1818
<img src="https://img.shields.io/visual-studio-marketplace/d/robole.javascript-snippets?logo=visual-studio-code&color=blue" alt="downloads"/>
@@ -21,15 +21,18 @@ alt="Extension file size in bytes">
2121
<a href="https://ko-fi.com/roboleary"><img src="https://img.shields.io/badge/Buy%20me%20a%20coffee-$4-orange?logo=buy-me-a-coffee" alt="Buy me a coffee"></a>
2222
</p>
2323

24-
Most snippet collections resemble bash aliases. You have a list of abbreviations such as "imp", "clg", "fre", and so on. You must learn these to use them. 🤕
24+
Most snippet collections resemble bash aliases. You have a list of abbreviations such as: "imp", "clg", "fre". You must learn these to use them. 🤕
2525

2626
There is a better way!
2727

2828
Snippets are not confined to using a single word as the trigger (prefix). We can be more descriptive, and make them easier to discover.
29-
For example, you want to find an array function, but not sure which to use, just type "arr" and you get a list with descriptions:
29+
30+
For example, you want to find an array function, but you're not sure which to use. Just type "arr" and you get a list of array functions with descriptions:
3031

3132
![example with suggested array functions](img/array-functions.gif)
3233

34+
In future, you know you want to use the `find` function, just type "fi" and you will get that as the first suggestion. 🔥
35+
3336
## Activation
3437

3538
These snippets are available for the follow [language identifiers](https://code.visualstudio.com/docs/languages/identifiers):
@@ -47,6 +50,8 @@ I didn't repeat any of the builtin JavaScript snippets.
4750

4851
Here is an excerpt:
4952

53+
<img src="img/snippets-list.png" alt="list of snippets" loading="lazy">
54+
5055
## Installation
5156

5257
1. The extension is listed in the [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=robole.javascript-snippets) and [Open VSX Marketplace](https://open-vsx.org/extension/robole/markdown-snippets) where you can download or install it directly.
@@ -83,7 +88,6 @@ Run the command `Preferences: Open Settings (UI)` to open the keyboard shortcuts
8388
"name": "arrow function"
8489
}
8590
}
86-
8791
]
8892
```
8993

@@ -100,3 +104,7 @@ If you are happy with the extension, please star the repo, and leave a review to
100104
You can [buy me a coffee](https://ko-fi.com/roboleary) if you would like to enable me to make more great open-source software and tutorials. ☕🙏
101105

102106
[![buy me a coffee on kofi](img/buymeacoffee.png)](https://ko-fi.com/roboleary)
107+
108+
## Image Attribution
109+
110+
Logo inspired by [Brain by Nithinan Tatah from the Noun Project](https://thenounproject.com/search/?q=brain&i=2452319).

img/logo.png

-30.3 KB
Loading

img/logo.svg

+52-53
Loading

package.json

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "javascript-snippets",
3-
"displayName": "JavaScript Snippets for Humans",
3+
"displayName": "Humane JavaScript Snippets",
44
"publisher": "robole",
55
"author": {
66
"name": "Rob O'Leary"
77
},
88
"description": "Descriptive, easy to find JavaScript snippets, without nonsense abbreviations.",
99
"icon": "img/logo.png",
10-
"version": "0.1.0",
10+
"version": "0.2.0",
1111
"engines": {
1212
"vscode": ">=1.0.0"
1313
},
@@ -28,12 +28,19 @@
2828
},
2929
"keywords": [
3030
"javascript",
31+
"vue",
32+
"svelte",
33+
"typescript",
34+
"react",
3135
"snippets",
3236
"javascript snippets",
3337
"es6",
3438
"ES6 snippets",
39+
"ecmascript snippets",
40+
"svelte snippets",
41+
"vue snippets",
3542
"typescript snippets",
36-
"typescript"
43+
"react snippets"
3744
],
3845
"contributes": {
3946
"snippets": [

0 commit comments

Comments
 (0)