Skip to content

Commit

Permalink
version 1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
racz16 committed Sep 18, 2022
1 parent 92d4c7e commit c6d6980
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 13 deletions.
20 changes: 12 additions & 8 deletions BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,15 @@

### Package the extension (optional)

12. Install the VSCE CLI
12. Package the extension

npm install -g vsce
If you want to create all 11 platform-specific packages (will open 11 terminals)

13. Package the extension
npm run package

vsce package
If you only want to create the Windows-specific package

npm run package-win32-x64

## Linux

Expand Down Expand Up @@ -90,10 +92,12 @@

### Package the extension (optional)

12. Install the VSCE CLI
12. Package the extension

If you want to create all 11 platform-specific packages (will open 11 terminals)

sudo npm install -g vsce
npm run package

13. Package the extension
If you only want to create the Linux-specific package

vsce package
npm run package-linux-x64
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@

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

## [1.3.3] - 2022.09.18.

### Improved

* Enabled almost all desktop features to the web extension (exceptions are: diagnostics, preprocessed code generation, offline documentation)
* Reduced package size
* Updated packages
* Other small updates

### Fixed

* Removing the configuration to enable or disable Inlay Hints (VS Code already has builtin configuration for this)
* Other small fixes

## [1.3.2]

* I made a mistake when I published, don't use this version!

## [1.3.1] - 2022.06.25.

### Improved
Expand Down
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ The extension colorizes types, builtin types, variables, builtin variables, func

### Diagnostic

The extension uses [glslang](https://github.com/KhronosGroup/glslang), the Khronos Group's reference GLSL compiler to provide diagnostic informations (errors and warnings). It also grays out the unused functions, types and variables.
The extension uses [glslang](https://github.com/KhronosGroup/glslang), the Khronos Group's reference GLSL compiler to provide diagnostic informations (errors and warnings). It also grays out the unused functions, types and variables. Only available in the desktop version.

![diagnostic](res/gif/diagnostic.gif)

### Offline documentation

The extension uses [docs.gl](http://docs.gl) to provide the offline documentation for builtin variables and builtin functions.
The extension uses [docs.gl](http://docs.gl) to provide the offline documentation for builtin variables and builtin functions. Only available in the desktop version.

![offline documentation](res/gif/documentation.gif)

Expand Down Expand Up @@ -133,7 +133,7 @@ You can find (go to / find all / peek) the references of a type, a variable, a f

### Generating preprocessed GLSL source code

You can generate preprocessed GLSL source code by running a command.
You can generate preprocessed GLSL source code by running a command. Only available in the desktop version.

![before the preprocessor](res/gif/generate-preprocessed-glsl.gif)

Expand Down Expand Up @@ -184,7 +184,6 @@ You can easily access several online documentations by commands.

## Notes

* If you use this extension as a web extension, only the syntax highlight, limited indentation and the features listed as "Other features" will work
* If you open GLSL code embedded in HTML, only the syntax highlight and limited indentation will work

## Known Issues
Expand All @@ -198,6 +197,15 @@ You can find the user provided issues on [GitHub](https://github.com/racz16/WebG

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

### 1.3.3

* Enabled almost all desktop features to the web extension
* Other small changes and bugfixes

### 1.3.2

* I made a mistake when I published, don't use this version!

### 1.3.1

* Added diagnostic support for compound file extensions (thanks RAX7)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"color": "#990000",
"theme": "dark"
},
"version": "1.3.1",
"version": "1.3.3",
"engines": {
"vscode": "^1.65.0"
},
Expand Down

0 comments on commit c6d6980

Please sign in to comment.