Skip to content

Commit a252411

Browse files
committed
[pre-release] v3.4.1-beta-2
- Grammars for `enum` types added. - Typo fixed in built-in function snippets.
1 parent 2d9e595 commit a252411

File tree

10 files changed

+179
-109
lines changed

10 files changed

+179
-109
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
# Change Log
2+
#### **3.4.1**
3+
4+
*27.06.2024 **Update***
5+
- Grammars for `enum` types added.
6+
- Typo fixed in built-in function snippets.
7+
8+
---
29
#### **3.4.0**
310

411
*06.06.2024 **Update***

README.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,11 @@
44
## Language support for Pine Script V5 with Syntax Highlighting & Snippets
55

66
## Release Notes
7-
#### **3.4.0**
7+
#### **3.4.1**
88

9-
*06.06.2024 **Update***
10-
- Snippets for built-in variables, functions and constants updated to Pinescript release June 2024.
11-
- Rework of hover popup presentation.
12-
- Built-in types for hover popup added.
13-
- Popup window border become more visible in several dark themes.
14-
- Choices and default values for snippets updated.
15-
- Typo and bug fixes for snippets and hover popups.
9+
*27.06.2024 **Update***
10+
- Grammars for `enum` types added.
11+
- Typo fixed in built-in function snippets.
1612

1713
---
1814

@@ -150,4 +146,4 @@ This extension is released under the [MIT License](./LICENSE.md).
150146

151147
---
152148

153-
*Version 3.4.0*
149+
*Version 3.4.1*

SNIPPET-LIST.md

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*Version 3.4.0*
1+
*Version 3.4.1*
22
# Snippet's Prefix's
33

44
- [Snippet's Prefix's](#snippets-prefixs)
@@ -7,6 +7,7 @@
77
- [Built-In\_Constants](#built-in_constants)
88
- [Built-In\_Scripts](#built-in_scripts)
99
- [Operators](#operators)
10+
- [Keywords](#keywords)
1011
- [Comments](#comments)
1112
- [Added\_Functions\_|\_scripts](#added_functions__scripts)
1213
- [Unicode](#unicode)
@@ -73,12 +74,12 @@
7374
|`session.ispostmarket` |
7475
|`session.ispremarket` |
7576
|`strategy.account_currency` |
76-
|`strategy.avg_losing_trade` _**new!**_ |
77-
|`strategy.avg_losing_trade_percent` _**new!**_ |
78-
|`strategy.avg_trade` _**new!**_ |
79-
|`strategy.avg_trade_percent` _**new!**_ |
80-
|`strategy.avg_winning_trade` _**new!**_ |
81-
|`strategy.avg_winning_trade_percent` _**new!**_ |
77+
|`strategy.avg_losing_trade` |
78+
|`strategy.avg_losing_trade_percent`|
79+
|`strategy.avg_trade` |
80+
|`strategy.avg_trade_percent` |
81+
|`strategy.avg_winning_trade` |
82+
|`strategy.avg_winning_trade_percent`|
8283
|`strategy.closedtrades` |
8384
|`strategy.equity` |
8485
|`strategy.eventrades` |
@@ -339,6 +340,7 @@
339340
|`input` |
340341
|`input.bool` |
341342
|`input.color` |
343+
|`input.enum` _**new!**_ |
342344
|`input.float` |
343345
|`input.float.options` |
344346
|`input.int` |
@@ -885,6 +887,12 @@
885887
| `>=` |
886888
| `?:` |
887889
| `=` |
890+
891+
-----
892+
893+
## Keywords
894+
| |
895+
| --- |
888896
| `and` |
889897
| `else` |
890898
| `else if` |
@@ -907,6 +915,7 @@
907915
| `false` |
908916
| `continue` |
909917
| `break` |
918+
| `enum` _**new!**_ |
910919

911920
-----
912921

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"icon": "images/pineicon.png",
66
"publisher": "salbert11",
77
"license": "MIT",
8-
"version": "3.4.0",
8+
"version": "3.4.1-beta-2",
99
"engines": {
1010
"vscode": "^1.62.0"
1111
},

0 commit comments

Comments
 (0)