Skip to content

Commit

Permalink
version 1.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
racz16 committed Jul 8, 2023
1 parent 32421e0 commit f641e7b
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,23 @@

For new feature plans see the [GitHub Projects](https://github.com/racz16/WebGL-GLSL-Editor/projects) page.

## [1.3.6] - 2023.07.09.

### Improved

* Added a new configuration to control if you like floating suffixes or not
* Updated packages
* Other small updates

### Fixed

* Fixed a problem where the color picker generated numbers with floating suffixes in GLSL ES 100
* Fixed a bug that caused problems when used with translation extensions
* Fixed a code completion bug where local variables didn't hide global variables and user types didn't hide builtin types
* Fixed a bug where unnamed variables and structs broke code completion
* Fixed a bug where variable usage was considered as an unnamed variable declaration
* Other small fixes

## [1.3.5] - 2023.05.09.

### Improved
Expand Down
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -184,6 +184,7 @@ You can easily access several online documentations by commands.
* `webgl-glsl-editor.format.placeSpacesAroundBraces`: Places spaces around braces.
* `webgl-glsl-editor.format.placeSpaceBeforeOpeningBrackets`: Places a space before opening brackets.
* `webgl-glsl-editor.format.placeSpacesInsideBrackets`: Places spaces inside brackets.
* `webgl-glsl-editor.format.favorFloatingSuffix`: The formatter and the color picker favor the floating suffix when applicable.
* `webgl-glsl-editor.codeInjection`: Enables/disables code injection.
* `webgl-glsl-editor.codeInjectionSource`: The lines of the injected source code. Only works if Code Injection is enabled.

Expand All @@ -202,6 +203,11 @@ You can find the user-provided issues on [GitHub](https://github.com/racz16/WebG

For more information, see the [changelog](CHANGELOG.md).

### 1.3.6

* Added a new configuration to control if you like floating suffixes or not
* Other small changes and bugfixes

### 1.3.5

* Extending the syntax highlight to work in JavaScript and TypeScript strings
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -28,7 +28,7 @@
"color": "#990000",
"theme": "dark"
},
"version": "1.3.5",
"version": "1.3.6",
"engines": {
"vscode": "^1.65.0"
},
Expand Down Expand Up @@ -251,7 +251,7 @@
"webgl-glsl-editor.format.favorFloatingSuffix": {
"type": "boolean",
"default": true,
"markdownDescription": "The formatter and the color picker favors the floating suffix (`f`) when applicable.\n\n**Enabled**\n```glsl\nfloat value = 1.0f;\n```\n**Disabled:**\n```glsl\nfloat value = 1.0;\n```",
"markdownDescription": "The formatter and the color picker favor the floating suffix (`f`) when applicable.\n\n**Enabled**\n```glsl\nfloat value = 1.0f;\n```\n**Disabled:**\n```glsl\nfloat value = 1.0;\n```",
"order": 22
},
"webgl-glsl-editor.codeInjection": {
Expand Down

0 comments on commit f641e7b

Please sign in to comment.