Skip to content

Commit c9912b9

Browse files
committed
starting 0.0.29
1 parent 7ba7517 commit c9912b9

File tree

2 files changed

+53
-52
lines changed

2 files changed

+53
-52
lines changed

CHANGELOG.md

+52-51
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
1-
<!-- Keep a Changelog guide -> https://keepachangelog.com -->
2-
1+
<!-- Keep a Changelog guide -> https://keepachangelog.com -->
2+
33
# wgsl plugin Changelog
44

55
## [Unreleased]
6+
- update for 2023.2.3
67

78
## [0.0.28]
8-
### Added
9-
- code fixes from @Uriopass
9+
### Added
10+
- code fixes from @Uriopass
1011
- added support for `bindind_array` - #67
1112

1213
## [0.0.27]
1314
### Added
14-
- better code completion from @rosingrind - closes #53
15-
- code fixes from @rosingrind
15+
- better code completion from @rosingrind - closes #53
16+
- code fixes from @rosingrind
1617
- updated for 2023.2 based IDEs
1718

1819
## [0.0.26]
@@ -21,18 +22,18 @@
2122

2223
## [0.0.25]
2324
### Added
24-
- fix for nested array references - #55
25+
- fix for nested array references - #55
2526
- updated grammar kit dependencies
2627

2728
## [0.0.24]
2829
### Added
29-
- updated max version of IntelliJ to 2023.1
30+
- updated max version of IntelliJ to 2023.1
3031
- added preprocessor stuff to the top level in the parser
3132

3233
## [0.0.23]
3334
### Added
34-
- updated max version of IntelliJ to 2022.3
35-
- updated to JDK 17
35+
- updated max version of IntelliJ to 2022.3
36+
- updated to JDK 17
3637
- added examples
3738

3839
## [0.0.22]
@@ -41,15 +42,15 @@
4142

4243
## [0.0.21]
4344
### Added
44-
- fix for i32 and u32 code completions - #47
45+
- fix for i32 and u32 code completions - #47
4546
- fixed highlighting of `texture_2d`
4647

4748
## [0.0.20]
4849
### Added
49-
- fix for f16 and f32 code completions - #43
50-
- added support for const and override expressions - #44
51-
- added a warning for old global constant syntax - disable with
52-
- `\\+ old-global-constant-decl` on the first line of the file
50+
- fix for f16 and f32 code completions - #43
51+
- added support for const and override expressions - #44
52+
- added a warning for old global constant syntax - disable with
53+
- `\\+ old-global-constant-decl` on the first line of the file
5354
- fixed sized arrays - #45
5455

5556
## [0.0.19]
@@ -58,14 +59,14 @@
5859

5960
## [0.0.18]
6061
### Added
61-
- fix for nested types - #37
62-
- allow older syntax deprecation warnings to be turned off - #38
63-
- adding a comment as the first line in the file like the following will allow deprecation warnings to be disabled
64-
```
65-
\\+ old-attribute-syntax old-struct-syntax old-attributes
66-
```
67-
- old-attribute-syntax disables the warning on the old bracket style attributes
68-
- old-struct-syntax disable the warning for semicolons separating `stuct` members
62+
- fix for nested types - #37
63+
- allow older syntax deprecation warnings to be turned off - #38
64+
- adding a comment as the first line in the file like the following will allow deprecation warnings to be disabled
65+
```
66+
\\+ old-attribute-syntax old-struct-syntax old-attributes
67+
```
68+
- old-attribute-syntax disables the warning on the old bracket style attributes
69+
- old-struct-syntax disable the warning for semicolons separating `stuct` members
6970
- old-attributes disables the warning for old deprecated attributes such as `stage`
7071
7172
## [0.0.17]
@@ -78,32 +79,32 @@
7879
7980
## [0.0.15]
8081
### Added
81-
- updating grammar to handle the latest spec changes
82-
- while
83-
- staticAssert
82+
- updating grammar to handle the latest spec changes
83+
- while
84+
- staticAssert
8485
- vec and mat without type when used as a constructor see #32
8586
8687
## [0.0.14]
8788
### Added
88-
- reserved words list update from vibernation
89-
- IDE comment action support
89+
- reserved words list update from vibernation
90+
- IDE comment action support
9091
- preprocessor changes from Arc-blroth
9192
9293
## [0.0.13]
9394
### Added
94-
- Added missing attribute docs
95+
- Added missing attribute docs
9596
- Added simple support for Bevy WGSL preprocessor declarations
9697
9798
## [0.0.12]
9899
### Added
99-
- All currently defined attributes are supported
100-
- Added warnings for deprecated stage attribute
101-
- Added hover documentation for all defined attributes
100+
- All currently defined attributes are supported
101+
- Added warnings for deprecated stage attribute
102+
- Added hover documentation for all defined attributes
102103
- Added warnings for deprecated attribute syntax
103104
104105
## [0.0.11]
105106
### Added
106-
- Updated to support comma instead of semicolon in struct definitions
107+
- Updated to support comma instead of semicolon in struct definitions
107108
- Updated syntax highlighting example to use more modern syntax
108109
109110
## [0.0.10]
@@ -112,26 +113,26 @@
112113
113114
## [0.0.9]
114115
### Added
115-
- Changes from HolgerGottChristensen
116-
- Initial code folding implementation
117-
- A bracket matcher that matches common bracket types
118-
- Updated annotator to annotate reserved keywords
119-
- Added keyword completion contributor that allows for completing all built-in keywords.
116+
- Changes from HolgerGottChristensen
117+
- Initial code folding implementation
118+
- A bracket matcher that matches common bracket types
119+
- Updated annotator to annotate reserved keywords
120+
- Added keyword completion contributor that allows for completing all built-in keywords.
120121
- Added built-in completion handler that completes all built-in functions.
121122
122123
## [0.0.8]
123124
### Added
124-
- Changes from HolgerGottChristensen
125-
- Updated the colour for built in types to be Keyword rather than class name
126-
- Colour struct fields
127-
- Colour attributes
128-
- Colour built in functions
129-
- Add error when a fragment only function is used outside of a fragment stage
125+
- Changes from HolgerGottChristensen
126+
- Updated the colour for built in types to be Keyword rather than class name
127+
- Colour struct fields
128+
- Colour attributes
129+
- Colour built in functions
130+
- Add error when a fragment only function is used outside of a fragment stage
130131
- Colour function declarations
131132
132133
## [0.0.7]
133134
### Added
134-
- support for proposed new `@attribute` syntax
135+
- support for proposed new `@attribute` syntax
135136
- hover documentation for attributes
136137
137138
## [0.6.0]
@@ -148,9 +149,9 @@
148149
149150
## [0.0.3]
150151
### Added
151-
- added hover documentation for functions and some help for the builtin functions
152-
- added doc comment support for functions
153-
- implemented rename refactor for variables and references
152+
- added hover documentation for functions and some help for the builtin functions
153+
- added doc comment support for functions
154+
- implemented rename refactor for variables and references
154155
- better `++` and `--` in the parser
155156
156157
## [0.0.2]
@@ -159,7 +160,7 @@
159160
160161
## 0.0.1
161162
### Added
162-
- Colour settings page
163-
- Syntax highlighting using the output from the parser
164-
- Lexer and parser for WGSL
163+
- Colour settings page
164+
- Syntax highlighting using the output from the parser
165+
- Lexer and parser for WGSL
165166
- Initial scaffold created from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template)

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
pluginGroup = wgslplugin
55
pluginName = wgsl
66
# SemVer format -> https://semver.org
7-
pluginVersion = 0.0.28
7+
pluginVersion = 0.0.29
88

99
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
# for insight into build numbers and IntelliJ Platform versions.

0 commit comments

Comments
 (0)