Skip to content

Commit 6e381e7

Browse files
committed
1.20.0
1 parent 815af8e commit 6e381e7

File tree

9 files changed

+17
-7
lines changed

9 files changed

+17
-7
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,3 +130,8 @@ Please [help me][en-US] improve the quality of `en-US`.
130130
* [uhziel](https://github.com/uhziel)
131131
* [火凌之](https://github.com/PhoenixZeng)
132132
* [CppCXY](https://github.com/CppCXY)
133+
* [Ketho](https://github.com/Ketho)
134+
135+
## Telemetry
136+
137+
This language server collects usage data and sends it to the development team to help improve the extension. Read our [privacy policy](https://github.com/sumneko/lua-language-server/wiki/Privacy-Policy) to learn more and how to disable any telemetry.

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.20.0
4+
`2021-3-27`
5+
* `CHG` telemetry: change to opt-in, see [#462](https://github.com/sumneko/lua-language-server/issues/462) and [Privacy-Policy](https://github.com/sumneko/lua-language-server/wiki/Privacy-Policy)
6+
* `FIX` [#467](https://github.com/sumneko/lua-language-server/issues/467)
7+
38
## 1.19.1
49
`2021-3-22`
510
* `CHG` improve performance

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1381,5 +1381,5 @@
13811381
"type": "git",
13821382
"url": "https://github.com/sumneko/lua-language-server"
13831383
},
1384-
"version": "1.19.1"
1384+
"version": "1.20.0"
13851385
}

package.nls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"config.runtime.unicodeName": "Allows Unicode characters in name.",
4747
"config.runtime.version": "Lua runtime version.",
4848
"config.signatureHelp.enable": "Enable signature help.",
49-
"config.telemetry.enable": "Enable telemetry to send your editor information and error logs over the network\n* [What data will be sent](https://github.com/sumneko/lua-language-server/blob/master/script/service/telemetry.lua)\n* [How to use this data](https://github.com/sumneko/lua-telemetry-server/tree/master/method)\n",
49+
"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",
5050
"config.window.progressBar": "Show progress bar in status bar.",
5151
"config.window.statusBar": "Show extension status in status bar.",
5252
"config.workspace.ignoreDir": "Ignored files and directories (Use `.gitignore` grammar).\n",

package.nls.zh-cn.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"config.runtime.unicodeName": "允许在名字中使用 Unicode 字符。",
5050
"config.runtime.version": "Lua运行版本。",
5151
"config.signatureHelp.enable": "启用参数提示。",
52-
"config.telemetry.enable": "启用遥测,通过网络发送你的编辑器信息与错误日志\n* [会发送哪些数据](https://github.com/sumneko/lua-language-server/blob/master/script/service/telemetry.lua)\n* [如何使用这些数据](https://github.com/sumneko/lua-telemetry-server/tree/master/method)\n",
52+
"config.telemetry.enable": "启用遥测,通过网络发送你的编辑器信息与错误日志。在[此处](https://github.com/sumneko/lua-language-server/wiki/%E9%9A%90%E7%A7%81%E5%A3%B0%E6%98%8E)阅读我们的隐私声明。\n",
5353
"config.window.progressBar": "在状态栏显示进度条。",
5454
"config.window.statusBar": "在状态栏显示插件状态。",
5555
"config.workspace.ignoreDir": "忽略的文件与目录(使用 `.gitignore` 语法)。\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 = "1.19.1"
3+
local VERSION = "1.20.0"
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
@@ -1238,7 +1238,7 @@
12381238
},
12391239
"Lua.telemetry.enable": {
12401240
"default": null,
1241-
"markdownDescription": "启用遥测,通过网络发送你的编辑器信息与错误日志\n* [会发送哪些数据](https://github.com/sumneko/lua-language-server/blob/master/script/service/telemetry.lua)\n* [如何使用这些数据](https://github.com/sumneko/lua-telemetry-server/tree/master/method)\n",
1241+
"markdownDescription": "启用遥测,通过网络发送你的编辑器信息与错误日志。在[此处](https://github.com/sumneko/lua-language-server/wiki/%E9%9A%90%E7%A7%81%E5%A3%B0%E6%98%8E)阅读我们的隐私声明。\n",
12421242
"scope": "resource",
12431243
"type": [
12441244
"boolean",

setting/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1238,7 +1238,7 @@
12381238
},
12391239
"Lua.telemetry.enable": {
12401240
"default": null,
1241-
"markdownDescription": "Enable telemetry to send your editor information and error logs over the network\n* [What data will be sent](https://github.com/sumneko/lua-language-server/blob/master/script/service/telemetry.lua)\n* [How to use this data](https://github.com/sumneko/lua-telemetry-server/tree/master/method)\n",
1241+
"markdownDescription": "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",
12421242
"scope": "resource",
12431243
"type": [
12441244
"boolean",

0 commit comments

Comments
 (0)