mirror of
https://github.com/Strum355/mcshader-lsp.git
synced 2025-07-22 18:55:29 +00:00
release 0.9.8
This commit is contained in:
parent
941822c5c7
commit
d8d77ac600
7 changed files with 17 additions and 9 deletions
|
@ -4,6 +4,14 @@ 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.8]
|
||||
|
||||
### Fixed
|
||||
|
||||
- NVIDIA diagnostics line offset off-by-one due to confusion with erroneous (non-proper) GLSL files resulting in both -1 and -2 offsets appearing to be valid when only the former is.
|
||||
- Non-toplevel files being treated as toplevel files when they have .fsh/.vsh/etc and not imported into a valid toplevel file.
|
||||
- Fix issue in the depth-first-search iterator when a file is imported twice into another file with a different include in between.
|
||||
|
||||
## [0.9.7]
|
||||
|
||||
### Fixed
|
||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,11 +1,11 @@
|
|||
{
|
||||
"name": "vscode-mc-shader",
|
||||
"version": "0.9.7",
|
||||
"version": "0.9.8",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"version": "0.9.7",
|
||||
"version": "0.9.8",
|
||||
"hasInstallScript": true,
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
|
|
|
@ -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.7",
|
||||
"version": "0.9.8",
|
||||
"publisher": "Strum355",
|
||||
"author": "Noah Santschi-Cooney (Strum355)",
|
||||
"license": "MIT",
|
||||
|
|
6
server/Cargo.lock
generated
6
server/Cargo.lock
generated
|
@ -656,7 +656,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "logging"
|
||||
version = "0.9.7"
|
||||
version = "0.9.8"
|
||||
dependencies = [
|
||||
"lazy_static",
|
||||
"rand 0.8.5",
|
||||
|
@ -668,7 +668,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "logging_macro"
|
||||
version = "0.9.7"
|
||||
version = "0.9.8"
|
||||
dependencies = [
|
||||
"quote",
|
||||
"syn",
|
||||
|
@ -703,7 +703,7 @@ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
|
|||
|
||||
[[package]]
|
||||
name = "mcshader-lsp"
|
||||
version = "0.9.7"
|
||||
version = "0.9.8"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"fs_extra",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "logging"
|
||||
version = "0.9.7"
|
||||
version = "0.9.8"
|
||||
authors = ["Noah Santschi-Cooney <noah@santschi-cooney.ch>"]
|
||||
edition = "2021"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "logging_macro"
|
||||
version = "0.9.7"
|
||||
version = "0.9.8"
|
||||
authors = ["Noah Santschi-Cooney <noah@santschi-cooney.ch>"]
|
||||
edition = "2021"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "mcshader-lsp"
|
||||
version = "0.9.7"
|
||||
version = "0.9.8"
|
||||
authors = ["Noah Santschi-Cooney <noah@santschi-cooney.ch>"]
|
||||
edition = "2021"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue