Skip to content

Commit ab0c90d

Browse files
committed
1.13.0
1 parent 116a5b3 commit ab0c90d

8 files changed

+50
-3
lines changed

changelog.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# changelog
22

3+
## 1.13.0
4+
`2021-1-28`
5+
* `NEW` VSCode: status bar
6+
* `NEW` options in some window
7+
* `CHG` performance optimization
8+
* `FIX` endless loop
9+
310
## 1.12.2
411
`2021-1-27`
512
* `CHG` performance optimization

package.json

+13-1
Original file line numberDiff line numberDiff line change
@@ -947,6 +947,18 @@
947947
"scope": "resource",
948948
"type": "boolean"
949949
},
950+
"Lua.window.progress": {
951+
"default": true,
952+
"markdownDescription": "%config.window.progress",
953+
"scope": "resource",
954+
"type": "boolean"
955+
},
956+
"Lua.window.statusBar": {
957+
"default": true,
958+
"markdownDescription": "%config.window.statusBar",
959+
"scope": "resource",
960+
"type": "boolean"
961+
},
950962
"Lua.workspace.ignoreDir": {
951963
"default": [
952964
".vscode"
@@ -1047,5 +1059,5 @@
10471059
"type": "git",
10481060
"url": "https://github.com/sumneko/lua-language-server"
10491061
},
1050-
"version": "1.12.2"
1062+
"version": "1.13.0"
10511063
}

package.nls.json

+2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@
4040
"config.runtime.version": "Lua runtime version.",
4141
"config.signatureHelp.enable": "Enable signature help.",
4242
"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",
43+
"config.window.progressBar": "Show progress bar in status bar.",
44+
"config.window.statusBar": "Show extension status in status bar.",
4345
"config.workspace.ignoreDir": "Ignored directories (Use `.gitignore` grammar).\n",
4446
"config.workspace.ignoreSubmodules": "Ignore submodules.",
4547
"config.workspace.library": "Load external library.\nThis feature can load external Lua files, which can be used for definition, automatic completion and other functions. Note that the language server does not monitor changes in external files and needs to restart if the external files are modified.\n",

package.nls.zh-cn.json

+2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@
4343
"config.runtime.version": "Lua运行版本。",
4444
"config.signatureHelp.enable": "启用参数提示。",
4545
"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",
46+
"config.window.progressBar": "在状态栏显示进度条。",
47+
"config.window.statusBar": "在状态栏显示插件状态。",
4648
"config.workspace.ignoreDir": "忽略的目录(使用 `.gitignore` 语法)。\n",
4749
"config.workspace.ignoreSubmodules": "忽略子模块。",
4850
"config.workspace.library": "加载外部函数库。\n该功能可以加载外部的Lua文件,用于函数定义、自动完成等功能。注意,语言服务不会监视外部文件的变化,如果修改了外部文件需要重启。\n",

package/build.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
local json = require 'json-beautify'
22

3-
local VERSION = "1.12.2"
3+
local VERSION = "1.13.0"
44

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

server

setting/schema-zh-cn.json

+12
Original file line numberDiff line numberDiff line change
@@ -931,6 +931,18 @@
931931
"scope": "resource",
932932
"type": "boolean"
933933
},
934+
"Lua.window.progress": {
935+
"default": true,
936+
"markdownDescription": "%config.window.progress",
937+
"scope": "resource",
938+
"type": "boolean"
939+
},
940+
"Lua.window.statusBar": {
941+
"default": true,
942+
"markdownDescription": "%config.window.statusBar",
943+
"scope": "resource",
944+
"type": "boolean"
945+
},
934946
"Lua.workspace.ignoreDir": {
935947
"default": [
936948
".vscode"

setting/schema.json

+12
Original file line numberDiff line numberDiff line change
@@ -931,6 +931,18 @@
931931
"scope": "resource",
932932
"type": "boolean"
933933
},
934+
"Lua.window.progress": {
935+
"default": true,
936+
"markdownDescription": "%config.window.progress",
937+
"scope": "resource",
938+
"type": "boolean"
939+
},
940+
"Lua.window.statusBar": {
941+
"default": true,
942+
"markdownDescription": "%config.window.statusBar",
943+
"scope": "resource",
944+
"type": "boolean"
945+
},
934946
"Lua.workspace.ignoreDir": {
935947
"default": [
936948
".vscode"

0 commit comments

Comments
 (0)