Skip to content

Commit 91dd086

Browse files
committed
2.3.2
1 parent 71085a0 commit 91dd086

File tree

9 files changed

+23
-7
lines changed

9 files changed

+23
-7
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ https://marketplace.visualstudio.com/items?itemName=sumneko.lua
1313
## Change Log
1414
https://github.com/sumneko/lua-language-server/blob/master/changelog.md
1515

16+
## Wiki
17+
https://github.com/sumneko/lua-language-server/wiki
18+
1619
## Feature
1720

1821
- [x] Goto Definition

changelog.md

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

3+
## 2.3.2
4+
`2021-7-21`
5+
* `NEW` `LuaDoc`: supports `['string']` as field:
6+
```lua
7+
---@class keyboard
8+
---@field ['!'] number
9+
---@field ['?'] number
10+
---@field ['#'] number
11+
```
12+
* `NEW` add supports of `love2d`
13+
* `FIX` gitignore pattern `\` broken initialization
14+
* `FIX` runtime errors
15+
316
## 2.3.1
417
`2021-7-19`
518
* `NEW` setting `Lua.workspace.userThirdParty`, add private user [third-parth](https://github.com/sumneko/lua-language-server/tree/master/meta/3rd) by this setting

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1419,5 +1419,5 @@
14191419
"type": "git",
14201420
"url": "https://github.com/sumneko/lua-language-server"
14211421
},
1422-
"version": "2.3.1"
1422+
"version": "2.3.2"
14231423
}

package.nls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"config.telemetry.enable": "Enable telemetry to send your editor information and error logs over the network. Read our privacy policy [here](https://github.com/sumneko/lua-language-server/wiki/Privacy-Policy).\n",
5353
"config.window.progressBar": "Show progress bar in status bar.",
5454
"config.window.statusBar": "Show extension status in status bar.",
55-
"config.workspace.checkThirdParty": "Automatic detection and adaptation of third-party libraries, currently supported libraries are:\n\n* OpenResty\n* Cocos4.0\n* Jass\n",
55+
"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* Jass\n",
5656
"config.workspace.ignoreDir": "Ignored files and directories (Use `.gitignore` grammar).\n",
5757
"config.workspace.ignoreSubmodules": "Ignore submodules.",
5858
"config.workspace.library": "The directory path of the external function library.\nThe language service will additionally load the lua files in these directories, even if they are not in the current workspace, for definition, completion and other features.\n",

package.nls.zh-cn.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"config.telemetry.enable": "启用遥测,通过网络发送你的编辑器信息与错误日志。在[此处](https://github.com/sumneko/lua-language-server/wiki/%E9%9A%90%E7%A7%81%E5%A3%B0%E6%98%8E)阅读我们的隐私声明。\n",
5656
"config.window.progressBar": "在状态栏显示进度条。",
5757
"config.window.statusBar": "在状态栏显示插件状态。",
58-
"config.workspace.checkThirdParty": "自动检测与适配第三方库,目前支持的库为:\n\n* OpenResty\n* Cocos4.0\n* Jass\n",
58+
"config.workspace.checkThirdParty": "自动检测与适配第三方库,目前支持的库为:\n\n* OpenResty\n* Cocos4.0\n* LÖVE\n* Jass\n",
5959
"config.workspace.ignoreDir": "忽略的文件与目录(使用 `.gitignore` 语法)。\n",
6060
"config.workspace.ignoreSubmodules": "忽略子模块。",
6161
"config.workspace.library": "外部函数库的目录路径。\n语言服务会额外加载这些目录中的lua文件,即使他们不在当前的工作目录中,用于函数定义、自动完成等功能。\n",

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.3.1"
3+
local VERSION = "2.3.2"
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
@@ -1272,7 +1272,7 @@
12721272
},
12731273
"Lua.workspace.checkThirdParty": {
12741274
"default": true,
1275-
"markdownDescription": "自动检测与适配第三方库,目前支持的库为:\n\n* OpenResty\n* Cocos4.0\n* Jass\n",
1275+
"markdownDescription": "自动检测与适配第三方库,目前支持的库为:\n\n* OpenResty\n* Cocos4.0\n* LÖVE\n* Jass\n",
12761276
"scope": "resource",
12771277
"type": "boolean"
12781278
},

setting/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1272,7 +1272,7 @@
12721272
},
12731273
"Lua.workspace.checkThirdParty": {
12741274
"default": true,
1275-
"markdownDescription": "Automatic detection and adaptation of third-party libraries, currently supported libraries are:\n\n* OpenResty\n* Cocos4.0\n* Jass\n",
1275+
"markdownDescription": "Automatic detection and adaptation of third-party libraries, currently supported libraries are:\n\n* OpenResty\n* Cocos4.0\n* LÖVE\n* Jass\n",
12761276
"scope": "resource",
12771277
"type": "boolean"
12781278
},

0 commit comments

Comments
 (0)