Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 1.4.0 Pre-release #10

Merged
merged 1 commit into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Change Log

## [1.3.0] - 2024.02.14.
## [1.4.0 Pre-release] - 2024.03.22.

### Added

- Code formatting (normal, range, ranges)

## [1.3.0] - 2024.03.14.

### Added

Expand Down Expand Up @@ -32,7 +38,7 @@
- Using the cleaned content of DSHL macros for expansion instead of the original to get rid of comments
- Fixing a bug in HLSL macro expansion, where positions were wrong positions were computed

## [1.2.0] - 2024.01.15.
## [1.2.0] - 2024.02.15.

### Added

Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@ If you have any problems or feature request for the extension, feel free to crea

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

### 1.4.0 Pre-release

- Code formatting

### 1.3.0

- Code completion (for DSHL variables, shaders, and block statements)
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Dagor Shader Language Support",
"description": "Language support extension for the Dagor Shader Language.",
"publisher": "gaijin",
"version": "1.3.0",
"version": "1.4.0",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
Expand Down Expand Up @@ -116,10 +116,10 @@
"build-production": "webpack --mode production",
"build": "webpack",
"watch": "webpack --watch",
"package-universal": "vsce package --ignoreFile vscodeignore/universal.vscodeignore",
"package-windows-x64": "vsce package --target win32-x64 --ignoreFile vscodeignore/windows.vscodeignore",
"package-macos-x64": "vsce package --target darwin-x64 --ignoreFile vscodeignore/macos.vscodeignore",
"package-linux-x64": "vsce package --target linux-x64 --ignoreFile vscodeignore/linux.vscodeignore",
"package-universal": "vsce package --ignoreFile vscodeignore/universal.vscodeignore --pre-release",
"package-windows-x64": "vsce package --target win32-x64 --ignoreFile vscodeignore/windows.vscodeignore --pre-release",
"package-macos-x64": "vsce package --target darwin-x64 --ignoreFile vscodeignore/macos.vscodeignore --pre-release",
"package-linux-x64": "vsce package --target linux-x64 --ignoreFile vscodeignore/linux.vscodeignore --pre-release",
"package-all": "start npm run package-universal & start npm run package-windows-x64 & start npm run package-macos-x64 & start npm run package-linux-x64",
"build-tests": "tsc -p ./tsconfig.test.json",
"watch-tests": "tsc -w -p ./tsconfig.test.json",
Expand Down