Skip to content

Commit f6ea15d

Browse files
committed
1.8.1
1 parent eb68831 commit f6ea15d

File tree

6 files changed

+8
-4
lines changed

6 files changed

+8
-4
lines changed

changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# changelog
22

3+
## 1.8.1
4+
* `FIX` telemetry: connect failed caused not working
5+
36
## 1.8.0
47
`2020-12-23`
58
* `NEW` runtime: support nonstandard symbol

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1013,5 +1013,5 @@
10131013
"type": "git",
10141014
"url": "https://github.com/sumneko/lua-language-server"
10151015
},
1016-
"version": "1.8.0"
1016+
"version": "1.8.1"
10171017
}

package.nls.json

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"config.hover.viewStringMax": "The maximum length of a hover to view the contents of a string.",
3232
"config.intelliSense.fastGlobal": "In the global variable completion, and view `_G` suspension prompt. This will slightly reduce the accuracy of type speculation, but it will have a significant performance improvement for projects that use a lot of global variables.",
3333
"config.intelliSense.searchDepth": "Set the search depth for IntelliSense. Increasing this value increases accuracy, but decreases performance. Different workspace have different tolerance for this setting. Please adjust it to the appropriate value.",
34+
"config.runtime.nonstandardSymbol": "Supports non-standard symbols. Make sure that your runtime environment supports these symbols.",
3435
"config.runtime.path": "`package.path`",
3536
"config.runtime.special": "The custom global variables are regarded as some special built-in variables, and the language server will provide special support\nThe following example shows that 'include' is treated as' require '.\n```json\n\"Lua.runtime.special\" : {\n \"include\" : \"require\"\n}\n```\n",
3637
"config.runtime.unicodeName": "Allows Unicode characters in name.",

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

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

server

setting/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -826,7 +826,7 @@
826826
],
827827
"type": "string"
828828
},
829-
"markdownDescription": "%config.runtime.nonstandardSymbol%",
829+
"markdownDescription": "Supports non-standard symbols. Make sure that your runtime environment supports these symbols.",
830830
"scope": "resource",
831831
"type": "array"
832832
},

0 commit comments

Comments
 (0)