Skip to content

Commit

Permalink
[pre-release] v3.4.1-beta-2
Browse files Browse the repository at this point in the history
- Grammars for `enum` types added.
- Typo fixed in built-in function snippets.
  • Loading branch information
salbert11 committed Jun 26, 2024
1 parent 2d9e595 commit a252411
Show file tree
Hide file tree
Showing 10 changed files with 179 additions and 109 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# Change Log
#### **3.4.1**

*27.06.2024 **Update***
- Grammars for `enum` types added.
- Typo fixed in built-in function snippets.

---
#### **3.4.0**

*06.06.2024 **Update***
Expand Down
14 changes: 5 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,11 @@
## Language support for Pine Script V5 with Syntax Highlighting & Snippets

## Release Notes
#### **3.4.0**
#### **3.4.1**

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

---

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

---

*Version 3.4.0*
*Version 3.4.1*
23 changes: 16 additions & 7 deletions SNIPPET-LIST.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*Version 3.4.0*
*Version 3.4.1*
# Snippet's Prefix's

- [Snippet's Prefix's](#snippets-prefixs)
Expand All @@ -7,6 +7,7 @@
- [Built-In\_Constants](#built-in_constants)
- [Built-In\_Scripts](#built-in_scripts)
- [Operators](#operators)
- [Keywords](#keywords)
- [Comments](#comments)
- [Added\_Functions\_|\_scripts](#added_functions__scripts)
- [Unicode](#unicode)
Expand Down Expand Up @@ -73,12 +74,12 @@
|`session.ispostmarket` |
|`session.ispremarket` |
|`strategy.account_currency` |
|`strategy.avg_losing_trade` _**new!**_ |
|`strategy.avg_losing_trade_percent` _**new!**_ |
|`strategy.avg_trade` _**new!**_ |
|`strategy.avg_trade_percent` _**new!**_ |
|`strategy.avg_winning_trade` _**new!**_ |
|`strategy.avg_winning_trade_percent` _**new!**_ |
|`strategy.avg_losing_trade` |
|`strategy.avg_losing_trade_percent`|
|`strategy.avg_trade` |
|`strategy.avg_trade_percent` |
|`strategy.avg_winning_trade` |
|`strategy.avg_winning_trade_percent`|
|`strategy.closedtrades` |
|`strategy.equity` |
|`strategy.eventrades` |
Expand Down Expand Up @@ -339,6 +340,7 @@
|`input` |
|`input.bool` |
|`input.color` |
|`input.enum` _**new!**_ |
|`input.float` |
|`input.float.options` |
|`input.int` |
Expand Down Expand Up @@ -885,6 +887,12 @@
| `>=` |
| `?:` |
| `=` |

-----

## Keywords
| |
| --- |
| `and` |
| `else` |
| `else if` |
Expand All @@ -907,6 +915,7 @@
| `false` |
| `continue` |
| `break` |
| `enum` _**new!**_ |

-----

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"icon": "images/pineicon.png",
"publisher": "salbert11",
"license": "MIT",
"version": "3.4.0",
"version": "3.4.1-beta-2",
"engines": {
"vscode": "^1.62.0"
},
Expand Down
Loading

0 comments on commit a252411

Please sign in to comment.