mirror of
https://github.com/Strum355/mcshader-lsp.git
synced 2025-07-23 19:25:51 +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/)
|
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]
|
## [0.9.7]
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "vscode-mc-shader",
|
"name": "vscode-mc-shader",
|
||||||
"version": "0.9.7",
|
"version": "0.9.8",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"version": "0.9.7",
|
"version": "0.9.8",
|
||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "vscode-mc-shader",
|
"name": "vscode-mc-shader",
|
||||||
"displayName": "Minecraft GLSL Shaders",
|
"displayName": "Minecraft GLSL Shaders",
|
||||||
"description": "A Visual Studio Code extension for linting/etc 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",
|
"publisher": "Strum355",
|
||||||
"author": "Noah Santschi-Cooney (Strum355)",
|
"author": "Noah Santschi-Cooney (Strum355)",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|
6
server/Cargo.lock
generated
6
server/Cargo.lock
generated
|
@ -656,7 +656,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "logging"
|
name = "logging"
|
||||||
version = "0.9.7"
|
version = "0.9.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"lazy_static",
|
"lazy_static",
|
||||||
"rand 0.8.5",
|
"rand 0.8.5",
|
||||||
|
@ -668,7 +668,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "logging_macro"
|
name = "logging_macro"
|
||||||
version = "0.9.7"
|
version = "0.9.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"quote",
|
"quote",
|
||||||
"syn",
|
"syn",
|
||||||
|
@ -703,7 +703,7 @@ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mcshader-lsp"
|
name = "mcshader-lsp"
|
||||||
version = "0.9.7"
|
version = "0.9.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"fs_extra",
|
"fs_extra",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "logging"
|
name = "logging"
|
||||||
version = "0.9.7"
|
version = "0.9.8"
|
||||||
authors = ["Noah Santschi-Cooney <noah@santschi-cooney.ch>"]
|
authors = ["Noah Santschi-Cooney <noah@santschi-cooney.ch>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "logging_macro"
|
name = "logging_macro"
|
||||||
version = "0.9.7"
|
version = "0.9.8"
|
||||||
authors = ["Noah Santschi-Cooney <noah@santschi-cooney.ch>"]
|
authors = ["Noah Santschi-Cooney <noah@santschi-cooney.ch>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "mcshader-lsp"
|
name = "mcshader-lsp"
|
||||||
version = "0.9.7"
|
version = "0.9.8"
|
||||||
authors = ["Noah Santschi-Cooney <noah@santschi-cooney.ch>"]
|
authors = ["Noah Santschi-Cooney <noah@santschi-cooney.ch>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue