Skip to content

Commit 9f16cd0

Browse files
committed
3.6.17
1 parent fd32150 commit 9f16cd0

File tree

12 files changed

+34
-11
lines changed

12 files changed

+34
-11
lines changed

changelog.md

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

3+
## 3.6.17
4+
`2023-3-9`
5+
* `CHG` export documents: export global variables
6+
* `FIX` [#1715]
7+
* `FIX` [#1753]
8+
* `FIX` [#1914]
9+
* `FIX` [#1922]
10+
* `FIX` [#1924]
11+
* `FIX` [#1928]
12+
* `FIX` [#1945]
13+
* `FIX` [#1955]
14+
* `FIX` [#1978]
15+
16+
[#1715]: https://github.com/LuaLS/lua-language-server/issues/1715
17+
[#1753]: https://github.com/LuaLS/lua-language-server/issues/1753
18+
[#1914]: https://github.com/LuaLS/lua-language-server/issues/1914
19+
[#1922]: https://github.com/LuaLS/lua-language-server/issues/1922
20+
[#1924]: https://github.com/LuaLS/lua-language-server/issues/1924
21+
[#1928]: https://github.com/LuaLS/lua-language-server/issues/1928
22+
[#1945]: https://github.com/LuaLS/lua-language-server/issues/1945
23+
[#1955]: https://github.com/LuaLS/lua-language-server/issues/1955
24+
[#1978]: https://github.com/LuaLS/lua-language-server/issues/1978
25+
326
## 3.6.13
427
`2023-3-2`
528
* `FIX` setting: `Lua.addonManager.enable` should be `true` by default

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3070,5 +3070,5 @@
30703070
"sponsor": {
30713071
"url": "https://github.com/LuaLS/lua-language-server/issues/484"
30723072
},
3073-
"version": "3.6.16"
3073+
"version": "3.6.17"
30743074
}

package.nls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"config.IntelliSense.traceFieldInject": "Please read [wiki](https://github.com/LuaLS/lua-language-server/wiki/IntelliSense-optional-features) to learn more.",
66
"config.IntelliSense.traceLocalSet": "Please read [wiki](https://github.com/LuaLS/lua-language-server/wiki/IntelliSense-optional-features) to learn more.",
77
"config.IntelliSense.traceReturn": "Please read [wiki](https://github.com/LuaLS/lua-language-server/wiki/IntelliSense-optional-features) to learn more.",
8-
"config.addonManager.enable": "",
8+
"config.addonManager.enable": "Whether the addon manager is enabled or not.",
99
"config.codeLens.enable": "Enable code lens.",
1010
"config.color.mode": "Color mode.",
1111
"config.color.mode.Grammar": "Grammar color.",

package.nls.pt-br.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"config.IntelliSense.traceFieldInject": "Please read [wiki](https://github.com/LuaLS/lua-language-server/wiki/IntelliSense-optional-features) to learn more.",
66
"config.IntelliSense.traceLocalSet": "Please read [wiki](https://github.com/LuaLS/lua-language-server/wiki/IntelliSense-optional-features) to learn more.",
77
"config.IntelliSense.traceReturn": "Please read [wiki](https://github.com/LuaLS/lua-language-server/wiki/IntelliSense-optional-features) to learn more.",
8-
"config.addonManager.enable": "",
8+
"config.addonManager.enable": "Whether the addon manager is enabled or not.",
99
"config.codeLens.enable": "Enable code lens.",
1010
"config.color.mode": "Color mode.",
1111
"config.color.mode.Grammar": "Grammar color.",

package.nls.zh-cn.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"config.IntelliSense.traceFieldInject": "请查阅[文档](https://github.com/LuaLS/lua-language-server/wiki/IntelliSense-optional-features)了解用法。",
66
"config.IntelliSense.traceLocalSet": "请查阅[文档](https://github.com/LuaLS/lua-language-server/wiki/IntelliSense-optional-features)了解用法。",
77
"config.IntelliSense.traceReturn": "请查阅[文档](https://github.com/LuaLS/lua-language-server/wiki/IntelliSense-optional-features)了解用法。",
8-
"config.addonManager.enable": "",
8+
"config.addonManager.enable": "Whether the addon manager is enabled or not.",
99
"config.codeLens.enable": "启用代码度量。",
1010
"config.color.mode": "着色模式。",
1111
"config.color.mode.Grammar": "语法着色。",

package.nls.zh-tw.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"config.IntelliSense.traceFieldInject": "請查閱[文件](https://github.com/LuaLS/lua-language-server/wiki/IntelliSense-optional-features)瞭解用法。",
66
"config.IntelliSense.traceLocalSet": "請查閱[文件](https://github.com/LuaLS/lua-language-server/wiki/IntelliSense-optional-features)瞭解用法。",
77
"config.IntelliSense.traceReturn": "請查閱[文件](https://github.com/LuaLS/lua-language-server/wiki/IntelliSense-optional-features)瞭解用法。",
8-
"config.addonManager.enable": "",
8+
"config.addonManager.enable": "Whether the addon manager is enabled or not.",
99
"config.codeLens.enable": "Enable code lens.",
1010
"config.color.mode": "著色模式。",
1111
"config.color.mode.Grammar": "語法著色。",

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 = "3.6.16"
3+
local VERSION = "3.6.17"
44

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

setting/schema-pt-br.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"addonManager.enable": {
1212
"default": true,
13-
"markdownDescription": "",
13+
"markdownDescription": "Whether the addon manager is enabled or not.",
1414
"scope": "resource",
1515
"type": "boolean"
1616
},

setting/schema-zh-cn.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"addonManager.enable": {
1212
"default": true,
13-
"markdownDescription": "",
13+
"markdownDescription": "Whether the addon manager is enabled or not.",
1414
"scope": "resource",
1515
"type": "boolean"
1616
},

0 commit comments

Comments
 (0)