Skip to content

Commit d38eb61

Browse files
committed
Fix a issue in the !emb snippet where there was a : where there shouldn't be one
1 parent a599856 commit d38eb61

File tree

6 files changed

+21
-6
lines changed

6 files changed

+21
-6
lines changed

.gitignore

+5-2
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,11 @@ dmypy.json
127127
# VSIX File
128128
*.vsix
129129

130-
# vscode settings
131-
.vscode/settings.json
130+
# vscode history folder
131+
.history/
132+
133+
# vscode settings folder
134+
.vscode
132135

133136
# .py files used for testing
134137
*.py

.vscodeignore

+4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
# vscode files
22
.vscode/**
33
.vscode-test/**
4+
45
# github files
56
.github/**
67
.gitignore
78
.gitattributes
9+
810
# testing files
911
*.py
1012
*.vsix
13+
1114
# examples
1215
examples/**
16+
1317
# markdown files
1418
vsc-extension-quickstart.md
1519
LICENSE

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,7 @@ All notable changes to the "discord-py-snippets" extension will be documented in
2929
### [1.2.1]
3030

3131
- Fix a issue in the `!emb` snippet where there were double commas
32+
33+
### [1.2.2]
34+
35+
- Fix a issue in the `!emb` snippet where there was a : where there shouldn't be one

README.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Fix some bugs
9797
Add 3 new snippets, `!gbchk`, `cgchk` & `!embedhelp` <br>
9898
Add more info in the readme file
9999

100-
### [1.2.0]
100+
### 1.2.0
101101

102102
- Add not shadowing command snippets (for function names for commands that are already defined)
103103
- Add embed snippets
@@ -108,10 +108,14 @@ Add more info in the readme file
108108
- image
109109
- thumbnail
110110

111-
### [1.2.1]
111+
### 1.2.1
112112

113113
- Fix a issue in the `!emb` snippet where there were double commas
114114

115+
### 1.2.2
116+
117+
- Fix a issue in the `!emb` snippet where there was a : where there shouldn't be one
118+
115119
### Extensions in the screenshots
116120

117121
- [Monokai Pro](https://marketplace.visualstudio.com/items?itemName=monokai.theme-monokai-pro-vscode) by [monokai](https://marketplace.visualstudio.com/publishers/monokai)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "discord-py-snippets",
33
"displayName": "discord.py Code Snippets",
44
"description": "Some code snippets for the discord.py package in python",
5-
"version": "1.2.1",
5+
"version": "1.2.2",
66
"publisher": "WasiMaster",
77
"repository": {
88
"type": "git",

snippets/snippets.code-snippets

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
"discord.py Embed Template":{
136136
"prefix": "!emb",
137137
"body": [
138-
"embed = discord.Embed(${1:title=\"$2\",} ${3:description=\"$4\",} ${5:color=$6:,} ${7:timestamp=$8,})"
138+
"embed = discord.Embed(${1:title=\"$2\",} ${3:description=\"$4\",} ${5:color=$6,} ${7:timestamp=$8,})"
139139
],
140140
"description": "Makes a Embed"
141141
},

0 commit comments

Comments
 (0)