From f8dfbbd6b922a7dd86d769d511441532362a132b 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: Fri, 20 Nov 2020 23:12:24 +0800
Subject: [PATCH] 1.1.0

---
 package.json              | 8 +-------
 package/build.lua         | 2 +-
 publish.lua               | 4 +---
 server                    | 2 +-
 setting/schema-zh-cn.json | 6 ------
 setting/schema.json       | 6 ------
 6 files changed, 4 insertions(+), 24 deletions(-)

diff --git a/package.json b/package.json
index 02166f1..b26f277 100644
--- a/package.json
+++ b/package.json
@@ -18,12 +18,6 @@
     "contributes": {
         "configuration": {
             "properties": {
-                "Lua.awakened.cat": {
-                    "default": true,
-                    "markdownDescription": "%config.awakened.cat%",
-                    "scope": "resource",
-                    "type": "boolean"
-                },
                 "Lua.color.mode": {
                     "default": "Semantic",
                     "enum": [
@@ -651,5 +645,5 @@
         "type": "git",
         "url": "https://github.com/sumneko/lua-language-server"
     },
-    "version": "1.0.6"
+    "version": "1.1.0"
 }
diff --git a/package/build.lua b/package/build.lua
index c704a98..1dbf9cf 100644
--- a/package/build.lua
+++ b/package/build.lua
@@ -1,6 +1,6 @@
 local json = require 'json-beautify'
 
-local VERSION = "1.0.6"
+local VERSION = "1.1.0"
 
 local package = require 'package.package'
 local fsu     = require 'fs-utility'
diff --git a/publish.lua b/publish.lua
index 14eda68..26e029e 100644
--- a/publish.lua
+++ b/publish.lua
@@ -3,7 +3,7 @@ local rootPath = currentPath:gsub('[^/\\]-$', '')
 if rootPath == '' then
     rootPath = './'
 end
-loadfile(rootPath .. 'server/platform.lua')('script-beta')
+loadfile(rootPath .. 'server/platform.lua')('script')
 require 'bee'
 local fs         = require 'bee.filesystem'
 local subprocess = require 'bee.subprocess'
@@ -156,9 +156,7 @@ local count = copyFiles(ROOT , out) {
         ['libs']              = true,
         ['locale']            = true,
         ['script']            = true,
-        ['script-beta']       = true,
         ['main.lua']          = true,
-        ['main-beta.lua']     = true,
         ['platform.lua']      = true,
         ['test']              = true,
         ['test.lua']          = true,
diff --git a/server b/server
index 4ca61ec..829dcb1 160000
--- a/server
+++ b/server
@@ -1 +1 @@
-Subproject commit 4ca61ec457822dd14966afa0752340ae8ce180a1
+Subproject commit 829dcb1964491f1e10afa73a4f8444cdbc487a9f
diff --git a/setting/schema-zh-cn.json b/setting/schema-zh-cn.json
index 24e920f..f5b2e08 100644
--- a/setting/schema-zh-cn.json
+++ b/setting/schema-zh-cn.json
@@ -2,12 +2,6 @@
     "$schema": "",
     "description": "Setting of sumneko.lua",
     "properties": {
-        "Lua.awakened.cat": {
-            "default": true,
-            "markdownDescription": "PLAY WITH ME >_<\n\n(这会启用还处于开发中的beta版,欢迎测试反馈!改变此选项需要重载窗口!)",
-            "scope": "resource",
-            "type": "boolean"
-        },
         "Lua.color.mode": {
             "default": "Semantic",
             "enum": [
diff --git a/setting/schema.json b/setting/schema.json
index 8b27f10..7bbff15 100644
--- a/setting/schema.json
+++ b/setting/schema.json
@@ -2,12 +2,6 @@
     "$schema": "",
     "description": "Setting of sumneko.lua",
     "properties": {
-        "Lua.awakened.cat": {
-            "default": true,
-            "markdownDescription": "PLAY WITH ME >_<\n\n(This will enable the beta version which is still in development. Feedback is welcome! Reload the window after changing this option!)",
-            "scope": "resource",
-            "type": "boolean"
-        },
         "Lua.color.mode": {
             "default": "Semantic",
             "enum": [
-- 
GitLab