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 {