Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/gui
AgeCommit message (Collapse)Author
2022-01-07Fix spaceClaudio Cambra
Signed-off-by: Claudio Cambra <claudio.cambra@gmail.com>
2022-01-07Make compiler required when option is on, removed unused defClaudio Cambra
Signed-off-by: Claudio Cambra <claudio.cambra@gmail.com>
2022-01-07Remove AUTORCCClaudio Cambra
Signed-off-by: Claudio Cambra <claudio.cambra@gmail.com>
2022-01-07Add option of enabling QtQuick compilerClaudio Cambra
Signed-off-by: Claudio Cambra <claudio.cambra@gmail.com>
2022-01-05Try to sign-in after being signed-out due to SslHandshakeFailedErroralex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-12-20Hide share button for deleted and ignored files in tray activityClaudio Cambra
Signed-off-by: Claudio Cambra <claudio.cambra@gmail.com>
2021-12-14Fix CMake error in ECMAddAppIcon for mac.alex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-12-14Save folder settings to config when force-switching VFS.alex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-12-14Enforce VFS. Disable 'Make always available locally'.alex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-12-07Use different icon for a sync folder on Windows depending on zoom level.alex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-12-03Always prefill username from Windows login name based on server versionalex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-11-24Pass username from Windows to login page.alex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-11-23Cleanup system bindings from Windows when removing a local sync folderalex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-11-22fix button that should be disabled when force VFSMatthieu Gallien
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2021-11-22add a network access factory to qml engineMatthieu Gallien
ensure network access made via qml are using our user agent Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2021-11-22Add WheelHandler to the Search result list tooCarl Schwan
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2021-11-22[tray] Makes scrolling with a touchpad in activiy list more naturalCarl Schwan
This basically use the same method that is used in Kirigami and Plasma Components3. Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2021-11-19properly query sync journal DB to know when to run fix for VFSMatthieu Gallien
the new method added to query the db is not working and so the fix for vfs is executed at each sync run the new method for bool was not really needed so let's just remove it (and that will make the usage of SqlQuery be correct Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2021-11-18Use QUrl::fromLocalFile to open local files in Unified Search results.alex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-11-17Correct virtual files placeholder files if neededFelix Weilbach
In the past not all files were converted to placeholder files when converting an existing sync folder to a virtual files folder. Because some files were not converted to placeholder files, the status would be wrong on the files. This code makes sure that every file in a virtual files folder is a placeholder file. It could be removed in the future. Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-11-16avoid adding icon data in a cache we never useMatthieu Gallien
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2021-11-16More fixes to the menu implementationCarl Schwan
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2021-11-16Fix focus indicatorCarl Schwan
This improve considerably the keyboard navigation in the SystemTray. But this is still not as good as the golden standard that is recommended by this article: https://www.sarasoueidan.com/blog/focus-indicators/ Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2021-11-15Check if the server has user status app enabledFelix Weilbach
According to https://docs.nextcloud.com/server/latest/developer_manual/client_apis/OCS/ocs-status-api.html#user-status-retrieve-statuses we should check the user status capability, not the the end points. Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-11-15CMake: fail if `Qt5::GuiPrivate` is not foundAlexander Batischev
`nextcloud` and `nextcloudCore` depend on three Qt5 components which aren't mentioned in `find_library`: `Xml`, `Network`, and `GuiPrivate`. The first two are omitted by mistake, apparently, so this commit just adds them. `GuiPrivate` is a special case: it doesn't have its own CMake config, so adding it to "required components" in `find_package` will always fail the build. Thus, we implement our own check instead. Signed-off-by: Alexander Batischev <eual.jp@gmail.com>
2021-11-10IconJob: Send request through the accounts NASFelix Weilbach
This helps tracking requests on the server Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-11-10Add profile pageFelix Weilbach
Fix: #3889 Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-11-05add an option to enforce use of virtual files sync folderMatthieu Gallien
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2021-11-04Fix review comments. Use QImage for QML and QPixmap for rest of code. Do not ↵alex-z
cache images for QML. Fix tests. Use signal in QML. Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-11-04Use SvgRenderer for Unified Search input icons. Refactor IconUtils. Extend ↵alex-z
unit tests. Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-11-04Clear Unified Search Input Field in a proper wayalex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-11-04Don't do a connection checks when using push notificationsFelix Weilbach
When using push notifications, it is not necessary to do regular connection checks because the push notifications will take care of it. Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-11-04on switch to VFS real plugin, convert existing files to placeholdersMatthieu Gallien
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2021-11-03ShareLinkWidget. Fix incorrect calendar mindate.alex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-11-03Implement expiration date for federated sharesalex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-11-02Replace deprecated QRegExp with QRegularExpression.alex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-10-28by default we produce debug logs because we need themMatthieu Gallien
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2021-10-28Refactor toggleButtonAnimation function.Camila
Signed-off-by: Camila <hello@camila.codes>
2021-10-28Fix display of deleted note.Camila
Even after removing note from share link, the previous text was being displayed. Signed-off-by: Camila <hello@camila.codes>
2021-10-28Refactor ShareLinkWidget show/hide widgets functions.Camila
- Remove unecessary call to setupUiOptions after saving share password. - Slot to create label: do not set it if nothing changed. - Refactor showPasswordOptions, toggle/PasswordOptions/ExpireDateOptions/NoteOptions. - Add const, auto and {} whenever possible. - Refactor slotToggleButtonAnimation => toggleButtonAnimation. Signed-off-by: Camila <hello@camila.codes>
2021-10-27Forbid trusting the untrusted certificate.alex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-10-27Request OCSP validation data from the server during the SSL handshake.alex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-10-26Update UnifiedSearchInputContainer.qmlrakekniven
Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
2021-10-26Changed triple dot to ellipsisrakekniven
Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
2021-10-25our source code files have lower case namesMatthieu Gallien
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2021-10-25Unified Search via Tray windowalex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>
2021-10-23Changed wording to suggestionrakekniven
Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
2021-10-23Changed wording of status messagerakekniven
The files themselves have no problem. The sync process has problems. Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
2021-10-20Also update sync state summary based on connectivityFelix Weilbach
Otherwise, with zero folders configured, the state will stay at offline. Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-10-19Windows. Remove CWD from DLL search paths.alex-z
Signed-off-by: alex-z <blackslayer4@gmail.com>