Skip to content

Commit d695d43

Browse files
committed
3.6.13
1 parent 204d7ea commit d695d43

File tree

9 files changed

+14
-9
lines changed

9 files changed

+14
-9
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+
## 3.6.13
4+
`2023-3-2`
5+
* `FIX` setting: `Lua.addonManager.enable` should be `true` by default
6+
* `FIX` failed to publish to Windows
7+
38
## 3.6.12
49
`2023-3-2`
510
* `NEW` [Addon Manager](https://github.com/LuaLS/lua-language-server/discussions/1607), try it with command `lua.addon_manager.open`. Thanks to [carsakiller](https://github.com/carsakiller)!

client/webvue

Submodule webvue updated 1 file

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"configuration": {
3939
"properties": {
4040
"Lua.addonManager.enable": {
41-
"default": false,
41+
"default": true,
4242
"markdownDescription": "%config.addonManager.enable%",
4343
"scope": "resource",
4444
"type": "boolean"
@@ -3070,5 +3070,5 @@
30703070
"sponsor": {
30713071
"url": "https://github.com/LuaLS/lua-language-server/issues/484"
30723072
},
3073-
"version": "3.6.12"
3073+
"version": "3.6.13"
30743074
}

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 = "3.6.12"
3+
local VERSION = "3.6.13"
44

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

server

setting/schema-pt-br.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010
},
1111
"addonManager.enable": {
12-
"default": false,
12+
"default": true,
1313
"markdownDescription": "",
1414
"scope": "resource",
1515
"type": "boolean"

setting/schema-zh-cn.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010
},
1111
"addonManager.enable": {
12-
"default": false,
12+
"default": true,
1313
"markdownDescription": "",
1414
"scope": "resource",
1515
"type": "boolean"

setting/schema-zh-tw.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010
},
1111
"addonManager.enable": {
12-
"default": false,
12+
"default": true,
1313
"markdownDescription": "",
1414
"scope": "resource",
1515
"type": "boolean"

setting/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010
},
1111
"addonManager.enable": {
12-
"default": false,
12+
"default": true,
1313
"markdownDescription": "",
1414
"scope": "resource",
1515
"type": "boolean"

0 commit comments

Comments
 (0)