From 1201da6af399a7f05df6b333929f283461cd085b Mon Sep 17 00:00:00 2001 From: Petr Mironychev <9195189+Palm1r@users.noreply.github.com> Date: Thu, 29 Aug 2024 09:27:50 +0200 Subject: [PATCH] Fix typo in logs and settings --- QodeAssist.json.in | 4 ++-- QodeAssistUtils.hpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/QodeAssist.json.in b/QodeAssist.json.in index ae7fa42..0f31cc6 100644 --- a/QodeAssist.json.in +++ b/QodeAssist.json.in @@ -1,6 +1,6 @@ { "Name" : "QodeAssist", - "Version" : "0.0.3", + "Version" : "0.0.4", "CompatVersion" : "${IDE_VERSION_COMPAT}", "Vendor" : "Petr Mironychev", "Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} Petr Mironychev, (C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd", @@ -11,6 +11,6 @@ Alternatively, this file may be used under the terms of the GNU General Public L "Prerequisites:", "- One of the supported LLM providers installed (e.g., Ollama or LM Studio)", "- A compatible large language model downloaded for your chosen provider (e.g., CodeLlama, StarCoder2)"], - "Url" : "https://github.com/Palm1r", + "Url" : "https://github.com/Palm1r/QodeAssist", ${IDE_PLUGIN_DEPENDENCIES} } diff --git a/QodeAssistUtils.hpp b/QodeAssistUtils.hpp index 2ce2570..4ad1267 100644 --- a/QodeAssistUtils.hpp +++ b/QodeAssistUtils.hpp @@ -41,7 +41,7 @@ inline void logMessage(const QString &message, bool silent = true) if (!loggingEnabled()) return; - const QString prefixedMessage = QLatin1String("[QLLamaAssist] ") + message; + const QString prefixedMessage = QLatin1String("[Qode Assist] ") + message; if (silent) { Core::MessageManager::writeSilently(prefixedMessage); } else {