This commit is contained in:
Noah Santschi-Cooney 2022-04-23 22:33:21 +01:00
parent fecc41168a
commit a7cbaa198b
No known key found for this signature in database
GPG key ID: 3B22282472C8AE48
8 changed files with 21 additions and 7 deletions

View file

@ -4,6 +4,19 @@ 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.6]
### Added
- MacOS M1 binary releases
- AMD OpenGL driver diagnostics output support. AMD linting is a-go 🚀
- Tree-sitter based go-to-definition/find-references/document symbols. Currently disabled until stabilized
### Fixed
- Another `#include` merging bug when a file is imported twice into another file at different lines
## [0.9.5]
### Added

Binary file not shown.

1
package-lock.json generated
View file

@ -1,5 +1,6 @@
{
"name": "vscode-mc-shader",
"version": "0.9.6",
"lockfileVersion": 2,
"requires": true,
"packages": {

View file

@ -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.5",
"version": "0.9.6",
"publisher": "Strum355",
"author": "Noah Santschi-Cooney (Strum355)",
"license": "MIT",

6
server/Cargo.lock generated
View file

@ -656,7 +656,7 @@ dependencies = [
[[package]]
name = "logging"
version = "0.9.5"
version = "0.9.6"
dependencies = [
"lazy_static",
"rand 0.8.5",
@ -668,7 +668,7 @@ dependencies = [
[[package]]
name = "logging_macro"
version = "0.9.5"
version = "0.9.6"
dependencies = [
"quote",
"syn",
@ -703,7 +703,7 @@ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
[[package]]
name = "mcshader-lsp"
version = "0.9.5"
version = "0.9.6"
dependencies = [
"anyhow",
"fs_extra",

View file

@ -1,6 +1,6 @@
[package]
name = "logging"
version = "0.9.5"
version = "0.9.6"
authors = ["Noah Santschi-Cooney <noah@santschi-cooney.ch>"]
edition = "2021"

View file

@ -1,6 +1,6 @@
[package]
name = "logging_macro"
version = "0.9.5"
version = "0.9.6"
authors = ["Noah Santschi-Cooney <noah@santschi-cooney.ch>"]
edition = "2021"

View file

@ -1,6 +1,6 @@
[package]
name = "mcshader-lsp"
version = "0.9.5"
version = "0.9.6"
authors = ["Noah Santschi-Cooney <noah@santschi-cooney.ch>"]
edition = "2021"