mirror of
https://github.com/Strum355/mcshader-lsp.git
synced 2025-08-04 09:00:18 +00:00
v0.9.4
This commit is contained in:
parent
22deb53ecd
commit
9a770f69a4
4 changed files with 55 additions and 4 deletions
53
CHANGELOG.md
53
CHANGELOG.md
|
@ -4,6 +4,57 @@ All notable changes to the "vscode-mc-shader" extension will be documented in th
|
|||
|
||||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
||||
|
||||
## [0.9.4]
|
||||
|
||||
### Fixed
|
||||
|
||||
- `#include` merging when project consists of files with both CRLF and LF files
|
||||
- Out-of-tree shader files are not linted or added to the dependency graph
|
||||
- Client no longer attempts to bootstrap server when `MCSHADER_DEBUG=true`
|
||||
|
||||
## [0.9.3]
|
||||
|
||||
### Fixed
|
||||
|
||||
- Language server download for windows
|
||||
|
||||
## [0.9.2]
|
||||
|
||||
### Changed
|
||||
|
||||
- VSCode extension activation predicate to only when `shaders` folder exists at top level
|
||||
|
||||
### Added
|
||||
|
||||
- Additional client-side logging
|
||||
|
||||
## [0.9.1]
|
||||
|
||||
### Fixed
|
||||
|
||||
- Windows support in client not adding `.exe` to language server path
|
||||
- Binary release CI
|
||||
|
||||
## [0.9.0]
|
||||
|
||||
### Changed
|
||||
|
||||
- Replaced in-process Typescript language server with Rust based language server
|
||||
|
||||
### Fixed
|
||||
|
||||
- Due to the above, `#include` directive handling is vastly improved
|
||||
|
||||
### Added
|
||||
|
||||
- Command to view read-only document representing a top-level file with all includes merged
|
||||
- Command to generate a DOT graph file of the entire project
|
||||
- Command to restart language server
|
||||
|
||||
### Removed
|
||||
|
||||
- `glslangValidatorPath` and `shaderpacksPath` config settings
|
||||
|
||||
## [0.8.5]
|
||||
|
||||
### Fixed
|
||||
|
@ -33,4 +84,4 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|||
- Support for #include directives
|
||||
- Basic linting with highlighting with error propogation to all known parents of an include.
|
||||
- Support for .fsh, .vsh, .glsl and .gsh files.
|
||||
- Incomplete completion items
|
||||
- Incomplete completion items
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "vscode-mc-shader",
|
||||
"displayName": "Minecraft GLSL Shaders",
|
||||
"description": "A Visual Studio Code extension for linting/etc Minecraft GLSL Shaders",
|
||||
"version": "0.9.3",
|
||||
"version": "0.9.4",
|
||||
"publisher": "Strum355",
|
||||
"author": "Noah Santschi-Cooney (Strum355)",
|
||||
"license": "MIT",
|
||||
|
|
2
server/Cargo.lock
generated
2
server/Cargo.lock
generated
|
@ -701,7 +701,7 @@ checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
|
|||
|
||||
[[package]]
|
||||
name = "mcshader-lsp"
|
||||
version = "0.9.2"
|
||||
version = "0.9.4"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"bit-set",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "mcshader-lsp"
|
||||
version = "0.9.2"
|
||||
version = "0.9.4"
|
||||
authors = ["Noah Santschi-Cooney <noah@santschi-cooney.ch>"]
|
||||
edition = "2018"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue