Skip to content

Commit 5e79aeb

Browse files
committed
3.6.8
1 parent 39c821e commit 5e79aeb

File tree

4 files changed

+21
-16
lines changed

4 files changed

+21
-16
lines changed

changelog.md

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

3+
## 3.6.8
4+
`2023-1-31`
5+
* `NEW` command `lua.exportDocument` . VSCode will display this command in the right-click menu
6+
* `CHG` setting `Lua.workspace.supportScheme` has been removed. All schemes are supported if the language id is `lua`
7+
* `FIX` [#1831]
8+
* `FIX` [#1838]
9+
* `FIX` [#1841]
10+
* `FIX` [#1851]
11+
* `FIX` [#1855]
12+
* `FIX` [#1857]
13+
14+
[#1831]: https://github.com/sumneko/lua-language-server/issues/1831
15+
[#1838]: https://github.com/sumneko/lua-language-server/issues/1838
16+
[#1841]: https://github.com/sumneko/lua-language-server/issues/1841
17+
[#1851]: https://github.com/sumneko/lua-language-server/issues/1851
18+
[#1855]: https://github.com/sumneko/lua-language-server/issues/1855
19+
[#1857]: https://github.com/sumneko/lua-language-server/issues/1857
20+
321
## 3.6.7
422
`2023-1-20`
523
* `FIX` [#1810]

package.json

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2854,19 +2854,6 @@
28542854
"scope": "resource",
28552855
"type": "integer"
28562856
},
2857-
"Lua.workspace.supportScheme": {
2858-
"default": [
2859-
"file",
2860-
"untitled",
2861-
"git"
2862-
],
2863-
"items": {
2864-
"type": "string"
2865-
},
2866-
"markdownDescription": "%config.workspace.supportScheme%",
2867-
"scope": "resource",
2868-
"type": "array"
2869-
},
28702857
"Lua.workspace.useGitIgnore": {
28712858
"default": true,
28722859
"markdownDescription": "%config.workspace.useGitIgnore%",
@@ -3067,5 +3054,5 @@
30673054
"sponsor": {
30683055
"url": "https://github.com/sumneko/lua-language-server/issues/484"
30693056
},
3070-
"version": "3.6.7"
3057+
"version": "3.6.8"
30713058
}

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.7"
3+
local VERSION = "3.6.8"
44

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

server

0 commit comments

Comments
 (0)