Skip to content

Commit 52f1959

Browse files
committed
1.7.1
1 parent a807ac3 commit 52f1959

8 files changed

+14
-7
lines changed

changelog.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# changelog
22

3+
## 1.7.1
4+
`2020-12-16`
5+
* `NEW` setting: `diagnostics.neededFileStatus`
6+
* `FIX` scan workspace may fails
7+
* `FIX` quickfix: `newline-call` failed
8+
* `FIX` a lot of other runtime errors
9+
310
## 1.7.0
411
`2020-12-16`
512
* `NEW` diagnostic: `undefined-field`

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -969,5 +969,5 @@
969969
"type": "git",
970970
"url": "https://github.com/sumneko/lua-language-server"
971971
},
972-
"version": "1.7.0"
972+
"version": "1.7.1"
973973
}

package.nls.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"config.diagnostics.disable": "Disabled diagnostic (Use code in hover brackets).\n",
2020
"config.diagnostics.enable": "Enable diagnostics.",
2121
"config.diagnostics.globals": "Defined global variables.\n",
22-
"config.diagnostics.neededFileStatus": "Modified neededFileStatus.\n",
22+
"config.diagnostics.neededFileStatus": "If you want to check only opened files, choice Opened; else choice Any.\n",
2323
"config.diagnostics.severity": "Modified diagnostic severity.\n",
2424
"config.diagnostics.workspaceDelay": "Latency (milliseconds) for workspace diagnostics. When you start the workspace, or edit any file, the entire workspace will be re-diagnosed in the background. Set to negative to disable workspace diagnostics.",
2525
"config.diagnostics.workspaceRate": "Workspace diagnostics run rate (%). Decreasing this value reduces CPU usage, but also reduces the speed of workspace diagnostics. The diagnosis of the file you are currently editing is always done at full speed and is not affected by this setting.",

package.nls.zh-cn.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"config.diagnostics.disable": "禁用的诊断(使用浮框括号内的代码)。\n",
2121
"config.diagnostics.enable": "启用诊断。",
2222
"config.diagnostics.globals": "已定义的全局变量。\n",
23-
"config.diagnostics.neededFileStatus": "修改诊断分析针对打开的文件还是全项目\n",
23+
"config.diagnostics.neededFileStatus": "如果你只想诊断打开的文件,选Opened;否则,选Any\n",
2424
"config.diagnostics.severity": "修改诊断等级。\n",
2525
"config.diagnostics.unused-function": "未使用的函数",
2626
"config.diagnostics.unused-local": "未使用的局部变量",

package/build.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
local json = require 'json-beautify'
22

3-
local VERSION = "1.7.0"
3+
local VERSION = "1.7.1"
44

55
local package = require 'package.package'
66
local fsu = require 'fs-utility'

server

setting/schema-zh-cn.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
"type": "array"
102102
},
103103
"Lua.diagnostics.neededFileStatus": {
104-
"markdownDescription": "修改诊断分析针对打开的文件还是全项目\n",
104+
"markdownDescription": "如果你只想诊断打开的文件,选Opened;否则,选Any\n",
105105
"properties": {
106106
"ambiguity-1": {
107107
"default": "Any",

setting/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
"type": "array"
102102
},
103103
"Lua.diagnostics.neededFileStatus": {
104-
"markdownDescription": "Modified neededFileStatus.\n",
104+
"markdownDescription": "If you want to check only opened files, choice Opened; else choice Any.\n",
105105
"properties": {
106106
"ambiguity-1": {
107107
"default": "Any",

0 commit comments

Comments
 (0)