From d695d43fa8c59f67d5ee3b853f18752ad7417b90 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9C=80=E8=90=8C=E5=B0=8F=E6=B1=90?= <sumneko@hotmail.com>
Date: Thu, 2 Mar 2023 22:55:13 +0800
Subject: [PATCH] 3.6.13

---
 changelog.md              | 5 +++++
 client/webvue             | 2 +-
 package.json              | 4 ++--
 package/build.lua         | 2 +-
 server                    | 2 +-
 setting/schema-pt-br.json | 2 +-
 setting/schema-zh-cn.json | 2 +-
 setting/schema-zh-tw.json | 2 +-
 setting/schema.json       | 2 +-
 9 files changed, 14 insertions(+), 9 deletions(-)

diff --git a/changelog.md b/changelog.md
index d6fb4a4..83d2681 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 9acd37e..ed88270 160000
--- a/client/webvue
+++ b/client/webvue
@@ -1 +1 @@
-Subproject commit 9acd37eb492ab1f64a7c36f82a89b26eda9aa2ef
+Subproject commit ed8827092c9833b141fc2499a62ae2ce81337654
diff --git a/package.json b/package.json
index b9ac3b9..c0a8492 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 572e90f..46c0d2b 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 b518799..8da10a0 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 48e84bb..0668c65 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 2a50b8e..ff88eab 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 86c021d..17133a2 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 4bf7cf0..aa93909 100644
--- a/setting/schema.json
+++ b/setting/schema.json
@@ -9,7 +9,7 @@
             }
         },
         "addonManager.enable": {
-            "default": false,
+            "default": true,
             "markdownDescription": "",
             "scope": "resource",
             "type": "boolean"
-- 
GitLab