Skip to content

Commit 8a76ffe

Browse files
committed
some cosmetic changes and few bug fixes
1 parent 5eb2e06 commit 8a76ffe

File tree

5 files changed

+582
-605
lines changed

5 files changed

+582
-605
lines changed

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
# PewPew Snippets
2-
A Visual Studio Code extension that has useful snippets to enhance level creation for PewPew Live.
2+
A Visual Studio Code extension that has useful snippets for PewPew Live custom level making.
3+
34
## Usage:
45
Download this extension:
5-
* VSIX extension: [Github Releases](https://github.com/Tasty-Kiwi/Pewhelp-vscode/releases)
6-
* VSCode marketplace: Not available
6+
* `.vsix` extension: [GitHub Releases](https://github.com/Tasty-Kiwi/Pewhelp-vscode/releases)
7+
* Visual Studio Code marketplace: Not available
78

89
## Building it
910
You need to have node.js and vsce ( `npm install -g vsce` ).
1011

11-
Then just do `vsce package` to package it to get VSIX extension.
12+
Then just do `vsce package` to build an extension.
1213

1314
## Contributing:
1415
Feel free to do it! Useful resources for making them:

assets/icon.png

58.9 KB
Loading

package.json

+27-25
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,33 @@
33
"displayName": "PewPew Snippets",
44
"description": "A Visual Studio Code extension that has useful snippets to enhance level creation for PewPew Live.",
55
"publisher": "Tasty-Kiwi",
6-
"version": "1.0.2",
6+
"version": "1.0.3",
77
"badges": [{
8-
"url": "https://img.shields.io/badge/Come%20to%20see%20our-GitHub%20repository-success?style=for-the-badge&logo=github",
9-
"href": "https://github.com/Tasty-Kiwi/PewPewSnippets",
10-
"description": "Come to see our GitHub repository"
8+
"url": "https://img.shields.io/badge/Come%20to%20see%20our-GitHub%20repository-success?style=for-the-badge&logo=github",
9+
"href": "https://github.com/Tasty-Kiwi/PewPewSnippets",
10+
"description": "Come to see our GitHub repository"
1111
}],
12-
"engines": {
13-
"vscode": "^1.53.0"
14-
},
15-
"license": "MIT",
16-
"repository": {
17-
"type": "git",
18-
"url": "https://github.com/Tasty-Kiwi/PewPewSnippets"
19-
},
20-
"homepage": "https://github.com/Tasty-Kiwi/PewPewSnippets/blob/master/README.md",
21-
"bugs": {
22-
"url": "https://github.com/Tasty-Kiwi/PewPewSnippets/issues"
23-
},
24-
"categories": ["Snippets"],
25-
"contributes": {
26-
"snippets": [
27-
{
28-
"language": "lua",
29-
"path": "./snippets/snippets.code-snippets"
30-
}
31-
]
12+
"engines": {
13+
"vscode": "^1.53.0"
14+
},
15+
"license": "MIT",
16+
"repository": {
17+
"type": "git",
18+
"url": "https://github.com/Tasty-Kiwi/PewPewSnippets"
19+
},
20+
"homepage": "https://github.com/Tasty-Kiwi/PewPewSnippets/blob/master/README.md",
21+
"bugs": {
22+
"url": "https://github.com/Tasty-Kiwi/PewPewSnippets/issues"
23+
},
24+
"categories": ["Snippets"],
25+
"icon": "assets/icon.png",
26+
"contributes": {
27+
"snippets": [
28+
{
29+
"language": "lua",
30+
"path": "./snippets/snippets.code-snippets"
31+
}
32+
]
33+
}
3234
}
33-
}
35+

0 commit comments

Comments
 (0)