Skip to content

Commit

Permalink
0.6.14
Browse files Browse the repository at this point in the history
  • Loading branch information
CppCXY committed Apr 22, 2024
1 parent 86468b1 commit 917eb5c
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,24 @@

[English Change Log](CHANGELOG_EN.md)

# 0.6.14

`NEW` 增加inlayHint配置, 实现localHint和overrideHint

`NEW` 实现DocumentLink功能, 可以跳转到相关文件

`NEW` 实现字符串中的资源文件补全, 需要添加配置:
```json
{
"resource": {
"paths": [
"absolute path to resource folder"
],
}
}
```


# 0.6.13

`FIX` 修复右侧表达式为unknown时, 左侧类型会被强制转换为匿名类型的问题
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG_EN.md
@@ -1,5 +1,22 @@
# Change Log

# 0.6.14

`NEW` Added inlayHint configuration, implemented localHint and overrideHint

`NEW` Implemented DocumentLink feature, can jump to related files

`NEW` Implemented resource file completion in strings, requires adding configuration:
```json
{
"resource": {
"paths": [
"absolute path to resource folder"
],
}
}
```

# 0.6.13

`FIX` Fixed the issue where the left-hand type would be forcibly converted to an anonymous type when the right-hand expression is unknown.
Expand Down
2 changes: 1 addition & 1 deletion build/config.js
Expand Up @@ -3,6 +3,6 @@ exports.default = {
emmyDebuggerUrl: 'https://github.com/EmmyLua/EmmyLuaDebugger/releases/download',
lanServerVersion: "0.5.16",
lanServerUrl: 'https://github.com/EmmyLua/EmmyLua-LanguageServer/releases/download',
newLanguageServerVersion: "0.1.11",
newLanguageServerVersion: "0.1.12",
newLanguageServerUrl: "https://github.com/CppCXY/EmmyLuaAnalyzer/releases/download"
}
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "emmylua",
"displayName": "EmmyLua",
"description": "EmmyLua for vscode",
"version": "0.6.13",
"version": "0.6.14",
"icon": "res/icon.png",
"publisher": "tangzx",
"engines": {
Expand Down

0 comments on commit 917eb5c

Please sign in to comment.