From dffe71cbb05dedb2d75201dec8d8714ee7282561 Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Mon, 8 Jun 2026 09:34:20 +0200 Subject: [PATCH 1/2] Do not require a project Let it handle any text/plain files, it works fine without a project. Task-number: QTCREATORBUG-34587 --- ValeLS/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ValeLS/init.lua b/ValeLS/init.lua index 2850e5c..e449efe 100644 --- a/ValeLS/init.lua +++ b/ValeLS/init.lua @@ -217,11 +217,11 @@ local function setupClient() transport = 'stdio', showInSettings = false, languageFilter = { - patterns = { '*' }, + mimeTypes = { 'text/plain' }, }, initializationOptions = createInitOptions, settings = Settings, - startBehavior = "RequiresProject", + startBehavior = "RequiresFile", onStartFailed = function() a.sync(function() if IsTryingToInstall == true then From 5edf946c020e374c4f63e62a6c83c7785595d18c Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Mon, 8 Jun 2026 09:35:30 +0200 Subject: [PATCH 2/2] Bump version to 1.0.4 --- ValeLS/ValeLS.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ValeLS/ValeLS.lua b/ValeLS/ValeLS.lua index a9c5bcd..32e1bd9 100644 --- a/ValeLS/ValeLS.lua +++ b/ValeLS/ValeLS.lua @@ -1,8 +1,8 @@ return { Id = "vale", Name = "Vale Language Server", - Version = "1.0.3", - CompatVersion = "1.0.3", + Version = "1.0.4", + CompatVersion = "1.0.4", VendorId = "theqtcompany", Vendor = "The Qt Company", Copyright = "(C) The Qt Company 2024",