diff --git a/changelog.md b/changelog.md index d6fb4a4fee8665f0c65b619682c648fcaa7ad195..83d2681e9907a85b2b6a1ef4c9b6ff846383fa7b 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # changelog +## 3.6.13 +`2023-3-2` +* `FIX` setting: `Lua.addonManager.enable` should be `true` by default +* `FIX` failed to publish to Windows + ## 3.6.12 `2023-3-2` * `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)! diff --git a/client/webvue b/client/webvue index 9acd37eb492ab1f64a7c36f82a89b26eda9aa2ef..ed8827092c9833b141fc2499a62ae2ce81337654 160000 --- a/client/webvue +++ b/client/webvue @@ -1 +1 @@ -Subproject commit 9acd37eb492ab1f64a7c36f82a89b26eda9aa2ef +Subproject commit ed8827092c9833b141fc2499a62ae2ce81337654 diff --git a/package.json b/package.json index b9ac3b92a52ca50c03ac799ea93ddddf1a7315f1..c0a84928efc99b4630c532d3840dc801cde74d99 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "configuration": { "properties": { "Lua.addonManager.enable": { - "default": false, + "default": true, "markdownDescription": "%config.addonManager.enable%", "scope": "resource", "type": "boolean" @@ -3070,5 +3070,5 @@ "sponsor": { "url": "https://github.com/LuaLS/lua-language-server/issues/484" }, - "version": "3.6.12" + "version": "3.6.13" } diff --git a/package/build.lua b/package/build.lua index 572e90fae08b2aac65c53da4ce553c73dd50f5ea..46c0d2bc7a20075713c4c3d87c7499df9253e69d 100644 --- a/package/build.lua +++ b/package/build.lua @@ -1,6 +1,6 @@ local json = require 'json-beautify' -local VERSION = "3.6.12" +local VERSION = "3.6.13" local package = require 'package.package' local fsu = require 'fs-utility' diff --git a/server b/server index b5187993b553d11b89c9dca70f509cd45a4b7f72..8da10a0819f11dfcfb9b4e00fecedb475b696e6d 160000 --- a/server +++ b/server @@ -1 +1 @@ -Subproject commit b5187993b553d11b89c9dca70f509cd45a4b7f72 +Subproject commit 8da10a0819f11dfcfb9b4e00fecedb475b696e6d diff --git a/setting/schema-pt-br.json b/setting/schema-pt-br.json index 48e84bbc20162cbf70964cd3dac6954e232bfa3f..0668c652a1be414284d3bb7f22e89cc4ad56973d 100644 --- a/setting/schema-pt-br.json +++ b/setting/schema-pt-br.json @@ -9,7 +9,7 @@ } }, "addonManager.enable": { - "default": false, + "default": true, "markdownDescription": "", "scope": "resource", "type": "boolean" diff --git a/setting/schema-zh-cn.json b/setting/schema-zh-cn.json index 2a50b8e6048be3e19c3d68afb914ea96cd0ace27..ff88eab0f4cf9d9e8be9362c086ca180c379ce22 100644 --- a/setting/schema-zh-cn.json +++ b/setting/schema-zh-cn.json @@ -9,7 +9,7 @@ } }, "addonManager.enable": { - "default": false, + "default": true, "markdownDescription": "", "scope": "resource", "type": "boolean" diff --git a/setting/schema-zh-tw.json b/setting/schema-zh-tw.json index 86c021d2e69fc366ec65d087c3551b7365b7511d..17133a2c2770ed98edd4b4f22958f7524f407092 100644 --- a/setting/schema-zh-tw.json +++ b/setting/schema-zh-tw.json @@ -9,7 +9,7 @@ } }, "addonManager.enable": { - "default": false, + "default": true, "markdownDescription": "", "scope": "resource", "type": "boolean" diff --git a/setting/schema.json b/setting/schema.json index 4bf7cf03729384781ca02ac3c6de6ef673334428..aa9390924535ec9289ce850bf1ef4e0fe1e4a952 100644 --- a/setting/schema.json +++ b/setting/schema.json @@ -9,7 +9,7 @@ } }, "addonManager.enable": { - "default": false, + "default": true, "markdownDescription": "", "scope": "resource", "type": "boolean"