Skip to content

Commit c76da48

Browse files
committed
1.17.4
1 parent 2ce2c12 commit c76da48

File tree

7 files changed

+43
-39
lines changed

7 files changed

+43
-39
lines changed

changelog.md

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

3+
## 1.17.4
4+
`2021-3-4`
5+
* `FIX` [#437](https://github.com/sumneko/lua-language-server/issues/437) again
6+
* `FIX` [#438](https://github.com/sumneko/lua-language-server/issues/438)
7+
38
## 1.17.3
49
`2021-3-3`
510
* `CHG` intelli-scense: treat `V[]` as `table<integer, V>` in `pairs`
611
* `FIX` completion: `detail` disappears during continuous input
712
* `FIX` [#435](https://github.com/sumneko/lua-language-server/issues/435)
813
* `FIX` [#436](https://github.com/sumneko/lua-language-server/issues/436)
14+
* `FIX` [#437](https://github.com/sumneko/lua-language-server/issues/437)
915

1016
## 1.17.2
1117
`2021-3-2`

package.json

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -952,6 +952,16 @@
952952
"scope": "resource",
953953
"type": "integer"
954954
},
955+
"Lua.runtime.fileEncoding": {
956+
"default": "utf8",
957+
"enum": [
958+
"utf8",
959+
"ansi"
960+
],
961+
"markdownDescription": "%config.runtime.fileEncoding%",
962+
"scope": "resource",
963+
"type": "string"
964+
},
955965
"Lua.runtime.nonstandardSymbol": {
956966
"items": {
957967
"enum": [
@@ -1098,16 +1108,6 @@
10981108
"markdownDescription": "%config.workspace.useGitIgnore%",
10991109
"scope": "resource",
11001110
"type": "boolean"
1101-
},
1102-
"lua.runtime.fileEncoding": {
1103-
"default": "utf8",
1104-
"enum": [
1105-
"utf8",
1106-
"ansi"
1107-
],
1108-
"markdownDescription": "%config.runtime.fileEncoding%",
1109-
"scope": "resource",
1110-
"type": "string"
11111111
}
11121112
},
11131113
"title": "Lua",
@@ -1157,9 +1157,8 @@
11571157
"icon": "images/logo.png",
11581158
"keywords": [
11591159
"Lua",
1160-
"LSP",
1161-
"GoTo Definition",
1162-
"IntelliSense"
1160+
"IntelliSense",
1161+
"EmmyLua"
11631162
],
11641163
"license": "MIT",
11651164
"main": "./client/out/extension",
@@ -1169,5 +1168,5 @@
11691168
"type": "git",
11701169
"url": "https://github.com/sumneko/lua-language-server"
11711170
},
1172-
"version": "1.17.3"
1171+
"version": "1.17.4"
11731172
}

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 = "1.17.3"
3+
local VERSION = "1.17.4"
44

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

package/package.lua

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ return {
1717
},
1818
keywords = {
1919
"Lua",
20-
"LSP",
21-
"GoTo Definition",
22-
"IntelliSense"
20+
"IntelliSense",
21+
"EmmyLua",
2322
},
2423
engines = {
2524
vscode = "^1.23.0"

server

setting/schema-zh-cn.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -936,6 +936,16 @@
936936
"scope": "resource",
937937
"type": "integer"
938938
},
939+
"Lua.runtime.fileEncoding": {
940+
"default": "utf8",
941+
"enum": [
942+
"utf8",
943+
"ansi"
944+
],
945+
"markdownDescription": "文件编码,`ansi` 选项只在 `Windows` 平台下有效。",
946+
"scope": "resource",
947+
"type": "string"
948+
},
939949
"Lua.runtime.nonstandardSymbol": {
940950
"items": {
941951
"enum": [
@@ -1082,16 +1092,6 @@
10821092
"markdownDescription": "忽略 `.gitignore` 中列举的文件。",
10831093
"scope": "resource",
10841094
"type": "boolean"
1085-
},
1086-
"lua.runtime.fileEncoding": {
1087-
"default": "utf8",
1088-
"enum": [
1089-
"utf8",
1090-
"ansi"
1091-
],
1092-
"markdownDescription": "文件编码,`ansi` 选项只在 `Windows` 平台下有效。",
1093-
"scope": "resource",
1094-
"type": "string"
10951095
}
10961096
},
10971097
"title": "setting",

setting/schema.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -936,6 +936,16 @@
936936
"scope": "resource",
937937
"type": "integer"
938938
},
939+
"Lua.runtime.fileEncoding": {
940+
"default": "utf8",
941+
"enum": [
942+
"utf8",
943+
"ansi"
944+
],
945+
"markdownDescription": "File encoding. The `ansi` option is only available under the `Windows` platform.",
946+
"scope": "resource",
947+
"type": "string"
948+
},
939949
"Lua.runtime.nonstandardSymbol": {
940950
"items": {
941951
"enum": [
@@ -1082,16 +1092,6 @@
10821092
"markdownDescription": "Ignore files list in `.gitignore` .",
10831093
"scope": "resource",
10841094
"type": "boolean"
1085-
},
1086-
"lua.runtime.fileEncoding": {
1087-
"default": "utf8",
1088-
"enum": [
1089-
"utf8",
1090-
"ansi"
1091-
],
1092-
"markdownDescription": "File encoding. The `ansi` option is only available under the `Windows` platform.",
1093-
"scope": "resource",
1094-
"type": "string"
10951095
}
10961096
},
10971097
"title": "setting",

0 commit comments

Comments
 (0)