mirror of
https://github.com/Strum355/mcshader-lsp.git
synced 2025-08-04 09:00:18 +00:00
v0.9.6
This commit is contained in:
parent
fecc41168a
commit
a7cbaa198b
8 changed files with 21 additions and 7 deletions
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -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
|
||||
|
|
BIN
logo-mini.png
BIN
logo-mini.png
Binary file not shown.
1
package-lock.json
generated
1
package-lock.json
generated
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"name": "vscode-mc-shader",
|
||||
"version": "0.9.6",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
|
|
|
@ -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
6
server/Cargo.lock
generated
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue