From 0b046811313b2e6f35c257a7d5be4e113beeebde Mon Sep 17 00:00:00 2001 From: jdkato Date: Fri, 5 May 2023 00:42:26 -0700 Subject: [PATCH] Bump server and prep release --- LSP-vale-ls.sublime-settings | 10 +++++----- messages.json | 3 +++ messages/0.2.1.txt | 3 +++ plugin.py | 2 +- sublime-package.json | 8 ++++---- 5 files changed, 16 insertions(+), 10 deletions(-) create mode 100644 messages.json create mode 100644 messages/0.2.1.txt diff --git a/LSP-vale-ls.sublime-settings b/LSP-vale-ls.sublime-settings index 2ffddae..3d9390c 100644 --- a/LSP-vale-ls.sublime-settings +++ b/LSP-vale-ls.sublime-settings @@ -4,24 +4,24 @@ // // If false, the Vale executable must be installed and available on // your $PATH. - "vale-ls.installVale": true, + "installVale": true, // Runs `vale sync` upon starting the server. // // Also available as a command: "LSP-vale-ls: Sync Configuration". - "vale-ls.syncOnStartup": true, + "syncOnStartup": true, // An output filter to apply when calling Vale. // // Example: // - // "vale-ls.filter": ".Level in ['warning', 'error']" + // "filter": ".Level in ['warning', 'error']" // // See https://vale.sh/manual/filter/ for more information. - "vale-ls.filter": "", + "filter": "", // An absolute path to a Vale configuration file (`.vale.ini`). // // In general, you should leave this blank and rely on the default // search process instead. - "vale-ls.configPath": "" + "configPath": "" }, "selector": "source.ini | source.yaml | text.html.markdown | text.restructuredtext | text.asciidoc", "command": [ diff --git a/messages.json b/messages.json new file mode 100644 index 0000000..7030bed --- /dev/null +++ b/messages.json @@ -0,0 +1,3 @@ +{ + "0.2.1": "messages/0.2.1.txt" +} \ No newline at end of file diff --git a/messages/0.2.1.txt b/messages/0.2.1.txt new file mode 100644 index 0000000..c465813 --- /dev/null +++ b/messages/0.2.1.txt @@ -0,0 +1,3 @@ +# Sublundo v0.2.1 + +* Dropped `vale-ls` namespace from `initializationOptions`. \ No newline at end of file diff --git a/plugin.py b/plugin.py index f5f23a7..054e87c 100644 --- a/plugin.py +++ b/plugin.py @@ -14,7 +14,7 @@ # # After changing this tag, go through the server settings again to see if any # new server settings are added or old ones removed. -TAG = "v0.3.0" +TAG = "v0.3.1" URL = "https://github.com/errata-ai/vale-ls/releases/download/{tag}/vale-ls-{arch}-{platform}.zip" diff --git a/sublime-package.json b/sublime-package.json index 90a48eb..cb48562 100644 --- a/sublime-package.json +++ b/sublime-package.json @@ -20,22 +20,22 @@ "properties": { "initializationOptions": { "properties": { - "vale-ls.installVale": { + "installVale": { "default": true, "description": "Install and update Vale automatically.", "type": "boolean" }, - "vale-ls.syncOnStart": { + "syncOnStart": { "default": true, "description": "Runs `vale sync` upon starting the server.", "type": "boolean" }, - "vale-ls.filter": { + "filter": { "default": "", "description": "An output filter to apply when calling Vale.", "type": "string" }, - "vale-ls.configPath": { + "configPath": { "default": "", "description": "An absolute path to a .vale.ini file to be used as the default configuration.", "type": "string"