Skip to content

Commit

Permalink
0.6.17
Browse files Browse the repository at this point in the history
  • Loading branch information
CppCXY committed May 5, 2024
1 parent f164448 commit 29ff24b
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

[English Change Log](CHANGELOG_EN.md)

# 0.6.17

`NEW` 重构声明算法, 优化Hover时的提示, 现在hover时, 会展开alias的选项, 并且增加Go to 类型的跳转

`NEW` 兼容LuaLs的一些跨行联合语法

`NEW` 生成了schema.json文件, 用于支持json文件的补全

`NEW` 新增deprecated的渲染, 和一些私有字段的访问检查

`NEW` 新增配置用于设置autoRequire时的补全函数名以及文件命名法的转换

# 0.6.16

`NEW` 重构算法, 优化内存占用, 减少30%的内存占用
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG_EN.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

# 0.6.17

`NEW` Refactored the declaration algorithm, optimized the hover prompt. Now when hovering, alias options will be expanded, and a Go to type jump is added.

`NEW` Compatible with some of LuaLs's multiline union syntax.

`NEW` Generated a schema.json file to support completion in json files.

`NEW` Added rendering for deprecated, and some private field access checks.

`NEW` Added configuration for setting function names and file naming conventions for autoRequire completion.

# 0.6.16

`NEW` Refactored algorithm, optimized memory usage, reduced memory usage by 30%
Expand Down Expand Up @@ -49,10 +61,12 @@
---@generic T...
---@param a [T...]
---@return T...
```

# 0.6.10

`NEW` Now supports configuring the language service from the configuration file, you can create .emmyrc.json in the workspace, the specific format is currently:

```json
{
"completion": {
Expand Down
2 changes: 1 addition & 1 deletion build/config.js
Original file line number Diff line number Diff line change
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.14",
newLanguageServerVersion: "0.2.0",
newLanguageServerUrl: "https://github.com/CppCXY/EmmyLuaAnalyzer/releases/download"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "emmylua",
"displayName": "EmmyLua",
"description": "EmmyLua for vscode",
"version": "0.6.16",
"version": "0.6.17",
"icon": "res/icon.png",
"publisher": "tangzx",
"engines": {
Expand Down

0 comments on commit 29ff24b

Please sign in to comment.