Compare commits

..

3 Commits

4 changed files with 13 additions and 8 deletions

View File

@ -13,7 +13,7 @@
"Linux" "Linux"
], ],
"license": "GPLv3", "license": "GPLv3",
"version": "0.5.10", "version": "0.5.11",
"status": "draft", "status": "draft",
"is_pack": false, "is_pack": false,
"released_at": null, "released_at": null,
@ -55,18 +55,23 @@
}, },
{ {
"version": "0.5.8", "version": "0.5.8",
"is_latest": true, "is_latest": false,
"released_at": "2025-04-17T10:00:00Z" "released_at": "2025-04-17T10:00:00Z"
}, },
{ {
"version": "0.5.9", "version": "0.5.9",
"is_latest": true, "is_latest": false,
"released_at": "2025-04-21T10:00:00Z" "released_at": "2025-04-21T10:00:00Z"
}, },
{ {
"version": "0.5.10", "version": "0.5.10",
"is_latest": true, "is_latest": false,
"released_at": "2025-04-24T10:00:00Z" "released_at": "2025-04-24T10:00:00Z"
},
{
"version": "0.5.11",
"is_latest": true,
"released_at": "2025-04-24T21:00:00Z"
} }
], ],
"icon": "https://github.com/user-attachments/assets/dc336712-83cb-440d-8761-8d0a31de898d", "icon": "https://github.com/user-attachments/assets/dc336712-83cb-440d-8761-8d0a31de898d",

View File

@ -25,7 +25,7 @@ TextEdit {
readOnly: true readOnly: true
selectByMouse: true selectByMouse: true
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
textFormat: Text.StyledText textFormat: Text.MarkdownText
selectionColor: palette.highlight selectionColor: palette.highlight
color: palette.text color: palette.text
} }

View File

@ -1,7 +1,7 @@
{ {
"Id" : "qodeassist", "Id" : "qodeassist",
"Name" : "QodeAssist", "Name" : "QodeAssist",
"Version" : "0.5.10", "Version" : "0.5.11",
"Vendor" : "Petr Mironychev", "Vendor" : "Petr Mironychev",
"VendorId" : "petrmironychev", "VendorId" : "petrmironychev",
"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",

View File

@ -47,8 +47,8 @@ ChatAssistantSettings::ChatAssistantSettings()
chatTokensThreshold.setLabelText(Tr::tr("Chat history token limit:")); chatTokensThreshold.setLabelText(Tr::tr("Chat history token limit:"));
chatTokensThreshold.setToolTip(Tr::tr("Maximum number of tokens in chat history. When " chatTokensThreshold.setToolTip(Tr::tr("Maximum number of tokens in chat history. When "
"exceeded, oldest messages will be removed.")); "exceeded, oldest messages will be removed."));
chatTokensThreshold.setRange(1, std::numeric_limits<qint64>::max()); chatTokensThreshold.setRange(1, 99999999);
chatTokensThreshold.setDefaultValue(8000); chatTokensThreshold.setDefaultValue(20000);
linkOpenFiles.setSettingsKey(Constants::CA_LINK_OPEN_FILES); linkOpenFiles.setSettingsKey(Constants::CA_LINK_OPEN_FILES);
linkOpenFiles.setLabelText(Tr::tr("Sync open files with assistant by default")); linkOpenFiles.setLabelText(Tr::tr("Sync open files with assistant by default"));