Skip to content

Commit d53d05d

Browse files
committed
2.4.10
1 parent 619ea2d commit d53d05d

File tree

8 files changed

+17
-7
lines changed

8 files changed

+17
-7
lines changed

changelog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# changelog
22

3+
## 2.4.10
4+
`2021-11-23`
5+
* `FIX` [#790](https://github.com/sumneko/lua-language-server/issues/790)
6+
* `FIX` [#798](https://github.com/sumneko/lua-language-server/issues/798)
7+
* `FIX` [#804](https://github.com/sumneko/lua-language-server/issues/804)
8+
* `FIX` [#805](https://github.com/sumneko/lua-language-server/issues/805)
9+
* `FIX` [#806](https://github.com/sumneko/lua-language-server/issues/806)
10+
* `FIX` [#807](https://github.com/sumneko/lua-language-server/issues/807)
11+
* `FIX` [#809](https://github.com/sumneko/lua-language-server/issues/809)
12+
313
## 2.4.9
414
`2021-11-18`
515
* `CHG` for performance reasons, some of the features that are not cost-effective in IntelliSense have been disabled by default, and you can re-enable them through the following settings:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1519,5 +1519,5 @@
15191519
"type": "git",
15201520
"url": "https://github.com/sumneko/lua-language-server"
15211521
},
1522-
"version": "2.4.9"
1522+
"version": "2.4.10"
15231523
}

package.nls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"config.workspace.checkThirdParty": "Automatic detection and adaptation of third-party libraries, currently supported libraries are:\n\n* OpenResty\n* Cocos4.0\n* LÖVE\n* skynet\n* Jass\n",
7575
"config.workspace.ignoreDir": "Ignored files and directories (Use `.gitignore` grammar).\n",
7676
"config.workspace.ignoreSubmodules": "Ignore submodules.",
77-
"config.workspace.library": "In addition to the current workspace, which directories will load files from.",
77+
"config.workspace.library": "In addition to the current workspace, which directories will load files from. The files in these directories will be treated as externally provided code libraries, and some features (such as renaming fields) will not modify these files.",
7878
"config.workspace.maxPreload": "Max preloaded files.",
7979
"config.workspace.preloadFileSize": "Skip files larger than this value (KB) when preloading.",
8080
"config.workspace.useGitIgnore": "Ignore files list in `.gitignore` .",

package.nls.zh-cn.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"config.workspace.checkThirdParty": "自动检测与适配第三方库,目前支持的库为:\n\n* OpenResty\n* Cocos4.0\n* LÖVE\n* skynet\n* Jass\n",
7878
"config.workspace.ignoreDir": "忽略的文件与目录(使用 `.gitignore` 语法)。\n",
7979
"config.workspace.ignoreSubmodules": "忽略子模块。",
80-
"config.workspace.library": "除了当前工作区以外,还会从哪些目录中加载文件。",
80+
"config.workspace.library": "除了当前工作区以外,还会从哪些目录中加载文件。这些目录中的文件将被视作外部提供的代码库,部分操作(如重命名字段)不会修改这些文件。",
8181
"config.workspace.maxPreload": "最大预加载文件数。",
8282
"config.workspace.preloadFileSize": "预加载时跳过大小大于该值(KB)的文件。",
8383
"config.workspace.useGitIgnore": "忽略 `.gitignore` 中列举的文件。",

package/build.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
local json = require 'json-beautify'
22

3-
local VERSION = "2.4.9"
3+
local VERSION = "2.4.10"
44

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

server

setting/schema-zh-cn.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1590,7 +1590,7 @@
15901590
"items": {
15911591
"type": "string"
15921592
},
1593-
"markdownDescription": "除了当前工作区以外,还会从哪些目录中加载文件。",
1593+
"markdownDescription": "除了当前工作区以外,还会从哪些目录中加载文件。这些目录中的文件将被视作外部提供的代码库,部分操作(如重命名字段)不会修改这些文件。",
15941594
"scope": "window",
15951595
"type": "array"
15961596
},

setting/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1590,7 +1590,7 @@
15901590
"items": {
15911591
"type": "string"
15921592
},
1593-
"markdownDescription": "In addition to the current workspace, which directories will load files from.",
1593+
"markdownDescription": "In addition to the current workspace, which directories will load files from. The files in these directories will be treated as externally provided code libraries, and some features (such as renaming fields) will not modify these files.",
15941594
"scope": "window",
15951595
"type": "array"
15961596
},

0 commit comments

Comments
 (0)