mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2025-06-04 01:28:58 -04:00
Fix typo in logs and settings
This commit is contained in:
parent
6bd6edf54d
commit
1201da6af3
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"Name" : "QodeAssist",
|
"Name" : "QodeAssist",
|
||||||
"Version" : "0.0.3",
|
"Version" : "0.0.4",
|
||||||
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
"Vendor" : "Petr Mironychev",
|
"Vendor" : "Petr Mironychev",
|
||||||
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} Petr Mironychev, (C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
"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:",
|
"Prerequisites:",
|
||||||
"- One of the supported LLM providers installed (e.g., Ollama or LM Studio)",
|
"- 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)"],
|
"- 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}
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@ -41,7 +41,7 @@ inline void logMessage(const QString &message, bool silent = true)
|
|||||||
if (!loggingEnabled())
|
if (!loggingEnabled())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
const QString prefixedMessage = QLatin1String("[QLLamaAssist] ") + message;
|
const QString prefixedMessage = QLatin1String("[Qode Assist] ") + message;
|
||||||
if (silent) {
|
if (silent) {
|
||||||
Core::MessageManager::writeSilently(prefixedMessage);
|
Core::MessageManager::writeSilently(prefixedMessage);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user