Skip to content

Commit d58ff90

Browse files
committed
fix: Fixed typo in the use of the project name
1 parent 7d06ab0 commit d58ff90

10 files changed

+15
-15
lines changed

LLMClientInterface.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ LLMClientInterface::LLMClientInterface(
6161

6262
Utils::FilePath LLMClientInterface::serverDeviceTemplate() const
6363
{
64-
return "Qode Assist";
64+
return "QodeAssist";
6565
}
6666

6767
void LLMClientInterface::startImpl()

QodeAssistClient.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright (C) 2023 The Qt Company Ltd.
33
* Copyright (C) 2024 Petr Mironychev
44
*
5-
* This file is part of Qode Assist.
5+
* This file is part of QodeAssist.
66
*
77
* The Qt Company portions:
88
* SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
@@ -48,7 +48,7 @@ QodeAssistClient::QodeAssistClient(LLMClientInterface *clientInterface)
4848
: LanguageClient::Client(clientInterface)
4949
, m_recentCharCount(0)
5050
{
51-
setName("Qode Assist");
51+
setName("QodeAssist");
5252
LanguageClient::LanguageFilter filter;
5353
filter.mimeTypes = QStringList() << "*";
5454
setSupportedLanguage(filter);

QodeAssistClient.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright (C) 2023 The Qt Company Ltd.
33
* Copyright (C) 2024 Petr Mironychev
44
*
5-
* This file is part of Qode Assist.
5+
* This file is part of QodeAssist.
66
*
77
* The Qt Company portions:
88
* SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ ollama run qwen2.5-coder:32b
174174
```
175175

176176
1. Open Qt Creator settings (Edit > Preferences on Linux/Windows, Qt Creator > Preferences on macOS)
177-
2. Navigate to the "Qode Assist" tab
177+
2. Navigate to the "QodeAssist" tab
178178
3. On the "General" page, verify:
179179
- Ollama is selected as your LLM provider
180180
- The URL is set to http://localhost:11434
@@ -281,7 +281,7 @@ If you need compatiblity with another os, you have to build manualy. our experim
281281

282282
If you're still experiencing issues with QodeAssist, you can try resetting the settings to their default values:
283283
1. Open Qt Creator settings
284-
2. Navigate to the "Qode Assist" tab
284+
2. Navigate to the "QodeAssist" tab
285285
3. Pick settings page for reset
286286
4. Click on the "Reset Page to Defaults" button
287287
- The API key will not reset

logger/Logger.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ void Logger::log(const QString &message, bool silent)
2828
if (!m_loggingEnabled)
2929
return;
3030

31-
const QString prefixedMessage = QLatin1String("[Qode Assist] ") + message;
31+
const QString prefixedMessage = QLatin1String("[QodeAssist] ") + message;
3232
if (silent) {
3333
Core::MessageManager::writeSilently(prefixedMessage);
3434
} else {
@@ -43,7 +43,7 @@ void Logger::logMessages(const QStringList &messages, bool silent)
4343

4444
QStringList prefixedMessages;
4545
for (const QString &message : messages) {
46-
prefixedMessages << (QLatin1String("[Qode Assist] ") + message);
46+
prefixedMessages << (QLatin1String("[QodeAssist] ") + message);
4747
}
4848

4949
if (silent) {

qodeassist.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ class QodeAssistPlugin final : public ExtensionSystem::IPlugin
100100

101101
ActionBuilder requestAction(this, Constants::QODE_ASSIST_REQUEST_SUGGESTION);
102102
requestAction.setToolTip(
103-
Tr::tr("Generate Qode Assist suggestion at the current cursor position."));
103+
Tr::tr("Generate QodeAssist suggestion at the current cursor position."));
104104
requestAction.setText(Tr::tr("Request QodeAssist Suggestion"));
105105
requestAction.setIcon(QCODEASSIST_ICON.icon());
106106
const QKeySequence defaultShortcut = QKeySequence(Qt::CTRL | Qt::ALT | Qt::Key_Q);
@@ -110,7 +110,7 @@ class QodeAssistPlugin final : public ExtensionSystem::IPlugin
110110
if (m_qodeAssistClient && m_qodeAssistClient->reachable()) {
111111
m_qodeAssistClient->requestCompletions(editor);
112112
} else
113-
qWarning() << "The Qode Assist is not ready. Please check your connection and "
113+
qWarning() << "The QodeAssist is not ready. Please check your connection and "
114114
"settings.";
115115
}
116116
});

settings/ProjectSettings.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ ProjectSettings::ProjectSettings(ProjectExplorer::Project *project)
3535
useGlobalSettings.setDefaultValue(true);
3636

3737
enableQodeAssist.setSettingsKey(Constants::QODE_ASSIST_ENABLE_IN_PROJECT);
38-
enableQodeAssist.setDisplayName(Tr::tr("Enable Qode Assist"));
39-
enableQodeAssist.setLabelText(Tr::tr("Enable Qode Assist"));
38+
enableQodeAssist.setDisplayName(Tr::tr("Enable QodeAssist"));
39+
enableQodeAssist.setLabelText(Tr::tr("Enable QodeAssist"));
4040
enableQodeAssist.setDefaultValue(false);
4141

4242
chatHistoryPath.setSettingsKey(Constants::QODE_ASSIST_CHAT_HISTORY_PATH);

settings/ProjectSettingsPanel.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class ProjectPanelFactory final : public ProjectExplorer::ProjectPanelFactory
8080
ProjectPanelFactory()
8181
{
8282
setPriority(1000);
83-
setDisplayName(Tr::tr("Qode Assist"));
83+
setDisplayName(Tr::tr("QodeAssist"));
8484
setCreateWidgetFunction(&createProjectPanel);
8585
}
8686
};

settings/SettingsConstants.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ const char QODE_ASSIST_CHAT_ASSISTANT_SETTINGS_PAGE_ID[]
8282
const char QODE_ASSIST_CUSTOM_PROMPT_SETTINGS_PAGE_ID[] = "QodeAssist.4CustomPromptSettingsPageId";
8383

8484
const char QODE_ASSIST_GENERAL_OPTIONS_CATEGORY[] = "QodeAssist.Category";
85-
const char QODE_ASSIST_GENERAL_OPTIONS_DISPLAY_CATEGORY[] = "Qode Assist";
85+
const char QODE_ASSIST_GENERAL_OPTIONS_DISPLAY_CATEGORY[] = "QodeAssist";
8686

8787
// Provider Settings Page ID
8888
const char QODE_ASSIST_PROVIDER_SETTINGS_PAGE_ID[] = "QodeAssist.5ProviderSettingsPageId";

settings/SettingsTr.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
namespace QodeAssist::Settings {
2525

2626
namespace TrConstants {
27-
inline const char *ENABLE_QODE_ASSIST = QT_TRANSLATE_NOOP("QtC::QodeAssist", "Enable Qode Assist");
27+
inline const char *ENABLE_QODE_ASSIST = QT_TRANSLATE_NOOP("QtC::QodeAssist", "Enable QodeAssist");
2828
inline const char *GENERAL = QT_TRANSLATE_NOOP("QtC::QodeAssist", "General");
2929
inline const char *RESET_TO_DEFAULTS
3030
= QT_TRANSLATE_NOOP("QtC::QodeAssist", "Reset Page to Defaults");

0 commit comments

Comments
 (0)