Skip to content

Commit 1e2dee9

Browse files
committed
Version 1.6.0
1 parent 88d839c commit 1e2dee9

File tree

4 files changed

+38
-10
lines changed

4 files changed

+38
-10
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,7 @@ All notable changes to the "discord-py-snippets" extension will be documented in
7979
### [1.5.4]
8080

8181
- Fix `!grpcmd` snippet
82+
83+
### [1.6.0]
84+
85+
- Add `!embpagere` snippet

README.md

+32-8
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,16 @@ This extension contributes the following settings:
7474

7575
### Embed Snippets
7676

77-
| Name | Prefix | Description |
78-
|---------------------------------------------|--------------|------------------------------|
79-
| Embed Template | `!emb` | Makes a Embed |
80-
| Embed Field Template | `!embfield` | Adds a field to a embed |
81-
| Embed Footer Template | `!embfoot` | Adds a footer to a embed |
82-
| Embed Author Template | `!embauthor` | Adds a author to a embed |
83-
| Embed Thumbnail Template | `!embthumb` | Adds a image to a embed |
84-
| Embed Image Template | `!embimg` | Adds a thumbnail to a embed |
77+
| Name | Prefix | Description |
78+
|---------------------------------------------|---------------|-------------------------------------|
79+
| Embed Template | `!emb` | Makes a Embed |
80+
| Embed Field Template | `!embfield` | Adds a field to a embed |
81+
| Embed Footer Template | `!embfoot` | Adds a footer to a embed |
82+
| Embed Author Template | `!embauthor` | Adds a author to a embed |
83+
| Embed Thumbnail Template | `!embthumb` | Adds a image to a embed |
84+
| Embed Image Template | `!embimg` | Adds a thumbnail to a embed |
85+
| Embed Page Reaction Template | `!embpagere` | Makes a embed with page navigation |
86+
8587

8688
### Check Snippets
8789

@@ -183,6 +185,28 @@ I suggest seeing the [vscode snippets documentation](https://code.visualstudio.c
183185

184186
- Added a `on_ready` event in the `!dpstrt` snippet
185187

188+
### 1.5.1
189+
190+
- Added a `on_ready` event in the `!dpstrt` snippet
191+
- Fix LICENSE year
192+
193+
### 1.5.2
194+
195+
- Small fix
196+
197+
### 1.5.3
198+
199+
- Fix `!grpcmd` snippet
200+
201+
### 1.5.4
202+
203+
- Fix `!grpcmd` snippet
204+
205+
### 1.6.0
206+
207+
- Add `!embpagere` snippet
208+
209+
186210
### Extensions in the screenshots
187211

188212
- [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": "Code snippets for the discord.py package in python",
5-
"version": "1.5.4",
5+
"version": "1.6.0",
66
"publisher": "WasiMaster",
77
"repository": {
88
"type": "git",

snippets/snippets.code-snippets

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@
257257
"discord.py embed page reaction template": {
258258
"prefix": "!embpagere",
259259
"body": [
260-
"# note : variable per page can be taken from the parameter command that you created",
260+
"# Variable per page can be taken from the parameter command that you created",
261261
"emoji_nextpage = discord.utils.get(${1|bot,client,self.bot|}.emojis, name=\"$2\")",
262262
"emoji_backpage = discord.utils.get(${1|bot,client,self.bot|}.emojis, name=\"$4\")",
263263
"emoji_firstpage = discord.utils.get(${1|bot,client,self.bot|}.emojis, name=\"$5\")",

0 commit comments

Comments
 (0)