Skip to content

Commit c6d6980

Browse files
committed
version 1.3.3
1 parent 92d4c7e commit c6d6980

4 files changed

Lines changed: 43 additions & 13 deletions

File tree

BUILD.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,15 @@
3535

3636
### Package the extension (optional)
3737

38-
12. Install the VSCE CLI
38+
12. Package the extension
3939

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

42-
13. Package the extension
42+
npm run package
4343

44-
vsce package
44+
If you only want to create the Windows-specific package
45+
46+
npm run package-win32-x64
4547

4648
## Linux
4749

@@ -90,10 +92,12 @@
9092

9193
### Package the extension (optional)
9294

93-
12. Install the VSCE CLI
95+
12. Package the extension
96+
97+
If you want to create all 11 platform-specific packages (will open 11 terminals)
9498

95-
sudo npm install -g vsce
99+
npm run package
96100

97-
13. Package the extension
101+
If you only want to create the Linux-specific package
98102

99-
vsce package
103+
npm run package-linux-x64

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@
44

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

7+
## [1.3.3] - 2022.09.18.
8+
9+
### Improved
10+
11+
* Enabled almost all desktop features to the web extension (exceptions are: diagnostics, preprocessed code generation, offline documentation)
12+
* Reduced package size
13+
* Updated packages
14+
* Other small updates
15+
16+
### Fixed
17+
18+
* Removing the configuration to enable or disable Inlay Hints (VS Code already has builtin configuration for this)
19+
* Other small fixes
20+
21+
## [1.3.2]
22+
23+
* I made a mistake when I published, don't use this version!
24+
725
## [1.3.1] - 2022.06.25.
826

927
### Improved

README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ The extension colorizes types, builtin types, variables, builtin variables, func
1919

2020
### Diagnostic
2121

22-
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.
22+
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.
2323

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

2626
### Offline documentation
2727

28-
The extension uses [docs.gl](http://docs.gl) to provide the offline documentation for builtin variables and builtin functions.
28+
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.
2929

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

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

134134
### Generating preprocessed GLSL source code
135135

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

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

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

185185
## Notes
186186

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

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

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

200+
### 1.3.3
201+
202+
* Enabled almost all desktop features to the web extension
203+
* Other small changes and bugfixes
204+
205+
### 1.3.2
206+
207+
* I made a mistake when I published, don't use this version!
208+
201209
### 1.3.1
202210

203211
* Added diagnostic support for compound file extensions (thanks RAX7)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"color": "#990000",
2929
"theme": "dark"
3030
},
31-
"version": "1.3.1",
31+
"version": "1.3.3",
3232
"engines": {
3333
"vscode": "^1.65.0"
3434
},

0 commit comments

Comments
 (0)