Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
463c424
feat: add assistant tray prompt
Rello Jan 30, 2026
7660ea0
fix: align connection settings background
Rello Jan 20, 2026
086dc95
chore: fix compilation for missing string literals
mgallien Feb 3, 2026
2d965f6
fix: use taskprocessing OCS API to submit prompt to AI
mgallien Feb 3, 2026
6783051
fix: send assistant chat history
Rello Feb 4, 2026
96eae7b
fix: avoid overriding assistant loader implicit height
Rello Feb 4, 2026
f5cd942
fix: include assistant system prompt
Rello Feb 4, 2026
7d00ee2
fix: always send assistant history
Rello Feb 4, 2026
31854b1
fix: send assistant history as json list
Rello Feb 4, 2026
f5feecd
chore: properly handle completed tasks (success or error)
mgallien Feb 4, 2026
6b6a40f
make the role in normal coloring
Rello Feb 4, 2026
e2cdbfe
Assistant conversation bubble
Rello Feb 5, 2026
7d64385
Assistant UI to icon
Rello Feb 5, 2026
ee7ef21
Add signal for featured app button click
Rello Feb 5, 2026
2b7b39a
Remove NcAssistant feature check from user model
Rello Feb 5, 2026
ca93b2d
Refactor history handling in ocsassistantconnector
Rello Feb 5, 2026
1114403
Re-add AI input field
Rello Feb 5, 2026
a1498d4
Refactor clearAssistantResponse for better clarity
Rello Feb 5, 2026
0e78c80
Restore MainWindow.qml file with original content
Rello Feb 5, 2026
8ff3126
Restore original MainWindow.qml content
Rello Feb 6, 2026
95e72ae
Merge branch 'master' into feature/AiIntegration
Rello Feb 6, 2026
14321c3
Featured icon will become AI-only icon
Rello Feb 6, 2026
c21fa1e
featured icon will become AI only icon
Rello Feb 6, 2026
835e434
scrollbar adjustment
Rello Feb 6, 2026
26602c6
no auto scrolling required
Rello Feb 6, 2026
c928fa5
hide other warnings when AI is active
Rello Feb 6, 2026
b5581a2
Merge branch 'master' into feature/AiIntegration
Rello Feb 6, 2026
feb6e55
Refactor MainWindow.qml for improved structure
Rello Feb 6, 2026
ebe6e7b
make AI Text select-able by mouse
Rello Feb 8, 2026
428ef43
align scrollbar
Rello Feb 8, 2026
07326bc
Merge branch 'master' into feature/AiIntegration
Rello Feb 8, 2026
b3a866e
Layout fix
Rello Feb 8, 2026
7baf57e
fix: Fixing selectable message bubbles.
Aiiaiiio Feb 9, 2026
aa3e251
feature: more conventional chat window
Aiiaiiio Feb 9, 2026
f7f6d4d
Merge pull request #9439 from nextcloud/feature/AiIntegration_tamas-spin
Aiiaiiio Feb 10, 2026
180564c
Add files via upload
Rello Feb 10, 2026
cc0ed7b
add send button
Rello Feb 10, 2026
d466b5d
better reset dialog
Rello Feb 11, 2026
9d1fd47
fix: Fixing the new conversation confirmation dialog geometry and style
Aiiaiiio Feb 11, 2026
07c17cb
fix: Removing dim effect from modal Dialog
Aiiaiiio Feb 12, 2026
e75c791
fix: fixing dialog background color + re-add dimming
Aiiaiiio Feb 12, 2026
4c63c3c
fix: Removing header background color from dialog
Aiiaiiio Feb 13, 2026
f3a0312
Merge branch 'fix/AiIntegration-stylefix'
Aiiaiiio Feb 13, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/gui/networksettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#include <QNetworkProxy>
#include <QString>
#include <QList>
#include <QPalette>
#include <type_traits>

namespace OCC {
Expand All @@ -27,6 +28,14 @@ NetworkSettings::NetworkSettings(const AccountPtr &account, QWidget *parent)
, _account(account)
{
_ui->setupUi(this);
setAutoFillBackground(true);
setBackgroundRole(QPalette::AlternateBase);
_ui->proxyGroupBox->setAutoFillBackground(true);
_ui->proxyGroupBox->setBackgroundRole(QPalette::AlternateBase);
_ui->downloadBox->setAutoFillBackground(true);
_ui->downloadBox->setBackgroundRole(QPalette::AlternateBase);
_ui->uploadBox->setAutoFillBackground(true);
_ui->uploadBox->setBackgroundRole(QPalette::AlternateBase);

_ui->manualSettings->setVisible(_ui->manualProxyRadioButton->isChecked());

Expand Down
Loading