Skip to content

Commit 0aa7341

Browse files
committed
0.6.3
1 parent b284140 commit 0aa7341

File tree

5 files changed

+39
-9
lines changed

5 files changed

+39
-9
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
[English Change Log](CHANGELOG_EN.md)
44

5+
# 0.6.3
6+
7+
`NEW` 支持emmylua经典代码渲染
8+
9+
`FIX` 优化一点内存占用
10+
11+
`FIX` 暂时屏蔽控制流分析给出的错误诊断
12+
13+
`NEW` 修复索引表达式找不到引用的问题
14+
15+
`NEW` 支持读取配置, 但是目前没有作用
16+
17+
518
## 0.6.2
619

720
`FIX` 不索引大文件(超过200kb)

CHANGELOG_EN.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Change Log
22

3+
# 0.6.3
4+
5+
`NEW` Support classic code rendering for EmmyLua
6+
7+
`FIX` Optimize memory usage slightly
8+
9+
`FIX` Temporarily disable error diagnostics from control flow analysis
10+
11+
`NEW` Fix the issue of not finding references for index expressions
12+
13+
`NEW` Support reading configurations, but currently has no effect
14+
15+
16+
## 0.6.2
17+
18+
`FIX` Do not index large files (over 200kb)
19+
320
## 0.6.1
421

522
`FIX` Fixed type parsing error for types like { x:number }

build/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ exports.default = {
33
emmyDebuggerUrl: 'https://github.com/EmmyLua/EmmyLuaDebugger/releases/download',
44
lanServerVersion: "0.5.16",
55
lanServerUrl: 'https://github.com/EmmyLua/EmmyLua-LanguageServer/releases/download',
6-
newLanguageServerVersion: "0.1.2",
6+
newLanguageServerVersion: "0.1.3",
77
newLanguageServerUrl: "https://github.com/CppCXY/EmmyLuaAnalyzer/releases/download"
88
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "emmylua",
33
"displayName": "EmmyLua",
44
"description": "EmmyLua for vscode",
5-
"version": "0.6.2",
5+
"version": "0.6.3",
66
"icon": "res/icon.png",
77
"publisher": "tangzx",
88
"engines": {

src/extension.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ export function activate(context: vscode.ExtensionContext) {
3232
);
3333
if (!ctx.newLanguageServer) {
3434
javaExecutablePath = findJava();
35-
context.subscriptions.push(vscode.workspace.onDidChangeConfiguration(onDidChangeConfiguration, null, context.subscriptions));
36-
context.subscriptions.push(vscode.workspace.onDidChangeTextDocument(onDidChangeTextDocument, null, context.subscriptions));
37-
context.subscriptions.push(vscode.window.onDidChangeActiveTextEditor(onDidChangeActiveTextEditor, null, context.subscriptions));
38-
context.subscriptions.push(vscode.commands.registerCommand("emmy.restartServer", restartServer));
39-
context.subscriptions.push(vscode.commands.registerCommand("emmy.showReferences", showReferences));
40-
context.subscriptions.push(vscode.commands.registerCommand("emmy.insertEmmyDebugCode", insertEmmyDebugCode));
41-
context.subscriptions.push(vscode.commands.registerCommand("emmy.stopServer", stopServer));
4235
}
36+
context.subscriptions.push(vscode.workspace.onDidChangeConfiguration(onDidChangeConfiguration, null, context.subscriptions));
37+
context.subscriptions.push(vscode.workspace.onDidChangeTextDocument(onDidChangeTextDocument, null, context.subscriptions));
38+
context.subscriptions.push(vscode.window.onDidChangeActiveTextEditor(onDidChangeActiveTextEditor, null, context.subscriptions));
39+
context.subscriptions.push(vscode.commands.registerCommand("emmy.restartServer", restartServer));
40+
context.subscriptions.push(vscode.commands.registerCommand("emmy.showReferences", showReferences));
41+
context.subscriptions.push(vscode.commands.registerCommand("emmy.insertEmmyDebugCode", insertEmmyDebugCode));
42+
context.subscriptions.push(vscode.commands.registerCommand("emmy.stopServer", stopServer));
4343

4444
context.subscriptions.push(vscode.languages.setLanguageConfiguration("lua", new LuaLanguageConfiguration()));
4545

0 commit comments

Comments
 (0)