Fix typo in logs and settings

This commit is contained in:
Petr Mironychev 2024-08-29 09:27:50 +02:00
parent 6bd6edf54d
commit 1201da6af3
2 changed files with 3 additions and 3 deletions

View File

@ -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}
}

View File

@ -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 {