Skip to content

Commit 6e610f3

Browse files
committed
1.11.2
1 parent bd7a4ef commit 6e610f3

File tree

8 files changed

+12
-7
lines changed

8 files changed

+12
-7
lines changed

changelog.md

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

3+
## 1.11.2
4+
`2021-1-7`
5+
* `FIX` [#345](https://github.com/sumneko/lua-language-server/issues/345): not works with unexpect args
6+
* `FIX` [#346](https://github.com/sumneko/lua-language-server/issues/346): dont modify the cache
7+
38
## 1.11.1
49
`2021-1-5`
510
* `CHG` performance optimization

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1047,5 +1047,5 @@
10471047
"type": "git",
10481048
"url": "https://github.com/sumneko/lua-language-server"
10491049
},
1050-
"version": "1.11.1"
1050+
"version": "1.11.2"
10511051
}

package.nls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"config.awakened.cat": "PLAY WITH ME >_<\n\n(This will enable the beta version which is still in development. Feedback is welcome! Reload the window after changing this option!)",
33
"config.color.mode": "Color mode.",
44
"config.color.mode.Grammar": "Grammar color.",
5-
"config.color.mode.Semantic": "Semantic color (Testing. Your color theme must support semantic coloring to be effective.).",
5+
"config.color.mode.Semantic": "Semantic color. Your color theme must support semantic coloring to be effective.",
66
"config.completion.callSnippet": "Shows function call snippets.",
77
"config.completion.callSnippet.Both": "Shows `function name` and `call snippet`.",
88
"config.completion.callSnippet.Disable": "Only shows `function name`.",

package.nls.zh-cn.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"config.awakened.cat": "PLAY WITH ME >_<\n\n(这会启用还处于开发中的beta版,欢迎测试反馈!改变此选项需要重载窗口!)",
44
"config.color.mode": "着色模式。",
55
"config.color.mode.Grammar": "语法着色。",
6-
"config.color.mode.Semantic": "语义着色(测试中。你的颜色主题必须要支持语义着色才有效。)",
6+
"config.color.mode.Semantic": "语义着色。你的颜色主题必须要支持语义着色才有效。",
77
"config.completion.callSnippet": "显示函数调用片段。",
88
"config.completion.callSnippet.Both": "显示 `函数名` 与 `调用片段`。",
99
"config.completion.callSnippet.Disable": "只显示 `函数名`。",

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.11.1"
3+
local VERSION = "1.11.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
@@ -11,7 +11,7 @@
1111
"markdownDescription": "着色模式。",
1212
"markdownEnumDescriptions": [
1313
"语法着色。",
14-
"语义着色(测试中。你的颜色主题必须要支持语义着色才有效。)"
14+
"语义着色。你的颜色主题必须要支持语义着色才有效。"
1515
],
1616
"scope": "resource",
1717
"type": "string"

setting/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"markdownDescription": "Color mode.",
1212
"markdownEnumDescriptions": [
1313
"Grammar color.",
14-
"Semantic color (Testing. Your color theme must support semantic coloring to be effective.)."
14+
"Semantic color. Your color theme must support semantic coloring to be effective."
1515
],
1616
"scope": "resource",
1717
"type": "string"

0 commit comments

Comments
 (0)